Hacker News new | ask | show | jobs
by igorgue 5558 days ago
I really loved the "TL;DR: Redis is fucking awesome."

I started using Redis for a project with Node, and I loved the node_redis library because it's non-blocking :-)

2 comments

I'm working on bringing em-hiredis up to spec. If you want a similarly non-blocking ruby alternative. https://github.com/koudelka/em-hiredis
Redis is absolutely beautiful for async networking; the protocol is extremely straightforward. It has completely solved my problem of persisting data from EventMachine programs in Ruby, too.

A couple hundred lines of ObjC got a generic Redis client and a special-purpose blpop client working for my Cocoa apps (I keep libevent in a thread there).