OSC – 2013 in Review

Subredis

We’ve been using Redis extensively for Quepid, our search relevancy collaboration canvas.

Redis is a convenient and efficient way to interact with in-memory data structures. In fact, we’ve been using it as our primary database.

One thing that’s stuck out as problematic for us is isolating and segmenting parts of our application within Redis. I want to give each part of Quepid’s backend a safe and reliable Redis sandbox, without running 10 instances of Redis on my box. For example, if the user database does a flushdb, I want it to be only resetting the set of users. Similarly, I don’t want to worry that keys within the user database will clash with keys with the query-ratings database. Isolation is a good thing!

So that's why we created Subredis.


Check out Subredis »

Read the Blog post »