I use Redis extensively for several applications. On one of our servers, with data that can do with slower loading times, I'd want to use the API I have developed, but I do not want everything in memory (as that is getting too expensive). Rather I want everything written to the disk. I do not want to rewrite my entire API.
Is that possible? Is there, for instance, a bridge that allows me to use Redis commands to query mongodb?
I know about optimising memory usage in Redis.
I know about http://redis.io/topics/virtual-memory, but in my case the keys can be written to the filesystem as well.