Hello
A friend of mine is running a site that has about 1,000 concurrent
users when it's really busy. Until now, he kept data in sessions
(including output from SELECT fetched from a remote MySQL server), but
since most data is the same across users, he tried MemCacheD... but
performance is worse than calling MySQL again and again and using a
lot of RAM to keep this into sessions.
Do you know of other ways to share data across users? What about
shared memory?
Thanks for any tip.
A friend of mine is running a site that has about 1,000 concurrent
users when it's really busy. Until now, he kept data in sessions
(including output from SELECT fetched from a remote MySQL server), but
since most data is the same across users, he tried MemCacheD... but
performance is worse than calling MySQL again and again and using a
lot of RAM to keep this into sessions.
Do you know of other ways to share data across users? What about
shared memory?
Thanks for any tip.
Comment