RobertoLopes Posted November 20, 2018 Posted November 20, 2018 Hello Guys. We are a company making contact center software for over 20 years now and just started using Unigui and we are loving it. We came from Intraweb because found so many stability problems with it. We have to share some data among all sessions (read only data) and I'm wondering if I'll have problems putting this data on the ServerModule (with mutexes and protection). It is the appropriate place to do or not? Thanks a lot in advance Quote
Sherzod Posted November 20, 2018 Posted November 20, 2018 Hello, http://www.unigui.com/doc/online_help/handling-concurrency.htm Quote
RobertoLopes Posted November 20, 2018 Author Posted November 20, 2018 I got it but. I have some really big classes that contains lists, maps and other structures that are commom for all sessions. Do you think that it's better maintain this data on the database then ? Quote
Mohammed Nasman Posted November 20, 2018 Posted November 20, 2018 28 minutes ago, RobertoLopes said: I got it but. I have some really big classes that contains lists, maps and other structures that are commom for all sessions. Do you think that it's better maintain this data on the database then ? I was going to suggest using database if you have large objects, or maybe better maintain these objects into caching server like https://memcached.org/. Quote
Stemon63 Posted November 20, 2018 Posted November 20, 2018 I have one project that have this configuration: All data is on regular DB; but some important data shared between all sessions are in a SQLLite db that is a memory database (readonly) e that is create at startup. It works well :-) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.