6 ms·
Very useful and damn fast!
by sgruhier 16y ago
Very useful and damn fast!
- thibaut_barrere 16y agoAs quite a few have asked via the comment form: it's a nginx + passenger + ruby 1.9.2 stack, with solr for indexing, mongodb for data back-end, rails fragment caching in redis, and a warmup script to fill the caches.
- rapind 16y agoThat's a great stack. Any reason you went with Redis for the caching instead of memcached?
- thibaut_barrere 16y agoWell I'm more used to Redis, as I've used more than a couple of times with Resque (job processing in Ruby). I started the crawler behind HackerBooks with Resque and Redis, but ended up saving some RAM by going back to a simple daemon. I reused Redis to provide the caching. So well: I mostly used what I was used too.
- rapind 16y agoDefinitely makes sense if you're already using Redis for something else.