Re: [Rails] Redis persistent values missing

2011-06-21 Thread John Feminella
Redis is an in-memory datastore. That means that whatever isn't persisted to memory is discarded if the memory goes away (as it would if you rebooted), so you need to persist the store to disk periodically (either by configuring Redis to do that or manually). If the data is gone, it's probably gone

[Rails] Redis persistent values missing

2011-06-21 Thread David
Hi, I am using redis to store high scores for my users. I restarted it for the first time in a month and now I am missing all the stored values. Anyone have an idea why this happend? Is there any way to get them back?? -- You received this message because you are subscribed to the Google Group