You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we store quite a big data (UserSession) in a server memory, for 10K online users we could consume a lot of memory (5K10K users=50M bytes, 5K100K users=500M), probably? we should move it in a DataStorage (for Redis yes, for files no).
For Redis this keys must have TTL and must be destroyed by Redis itself, for 100K users 500M is OK, but in future we should consider this issue
The text was updated successfully, but these errors were encountered:
Currently we store quite a big data (
UserSession
) in a server memory, for10K
online users we could consume a lot of memory (5K10K users=50M bytes, 5K100K users=500M), probably? we should move it in a DataStorage (forRedis
yes, for files no).For
Redis
this keys must haveTTL
and must be destroyed byRedis
itself, for 100K users 500M is OK, but in future we should consider this issueThe text was updated successfully, but these errors were encountered: