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.