Can I use redis as the only DB to power a small/medium social site with user profiles? Is it possible?...Would it be a good idea?
Is it possible to search for occurrences of a specific value in redis? 开发者_如何学Go It\'s easy enough to do the same for keys
The redis documentation for ZADD states the operation is O(log N). However,开发者_如何学JAVA does anyone know if ZADD is better than O(log N) when the inserted element is at the beginning or end of t
I have an application that serves artifacts from files (pages from PDF files as images), the original PDF files live on S3 and they are downloaded to the servers that generate the images when a client
I am building a website where I will have two kind of users - X and Y. X will be few (hundreds) and Y will be many (millions). Basically for each X, there will be some set of Ys. Y will add friends in
I\'m using Redis To Go on Heroku, and I\'d like to use it to store some data alongside Resque jobs, much like I can store DelayedJobs in the same Postgres database as the rest of my model data.
I have some initialization code in Ruby that initializes a Redis database with some values. Where is the best place to put this code in the Rails application? I wa开发者_如何学Cnt this code to run rig
I\'m trying to store an object in redis, and when I get the object it doesn\'t seem to work. I tried: u = User.new
So I have Resque and redis to go set up on Heroku and this is what my resque.rake file looks like: require \'resque/tasks\'
New to node coming over from asp.net so was curious about the best modules/frameworks to implement caching in node.js.I would like to cache some expensive db queries so looking for an easy way to cach