vote up 1 vote down star

Is it possible to use two session types simultaneously in Rails? Memcached for speed on reads and say SQL for persistence?

I hate the idea of losing all sessions on reboots.

MemcacheDB as mentioned below looks promising, but the idea would be to make all writes to disk, and all reads come from memory if possible.

flag

54% accept rate

2 Answers

vote up 2 vote down

Take a look at MongoDB. It uses memory mapped files, so is incredibly fast and should perform at a comparative level to MemCached, but will also persistently store your data.

MongoDB is a schema-less database that should support everything you're looking for and proved the flexibility to do whatever you like with this data.

link|flag
vote up 2 vote down

For persistence you could use MemcacheDB rather then SQL.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.