You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Redis DB
Could someone please help me understand in depth, memory management in
Redis?
I've read that Redis needs RAM that is sufficient to fit the entire
data set. Does this mean that both keys and values for all documents
are stored in memory?
If that is the case, is persistence to disk only for sake of
maintaining the data across restarts? Does this mean that after a
restart, the entire dataset is loaded from disk to memory?
Thanks!
Tim Lossen
unread,
Jun 7, 2012, 5:15:11 PM6/7/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to redi...@googlegroups.com
yes, and yes. both keys and values have to fit into memory,
and on restart, the entire dataset is loaded again.