Tapping into Distributed Erlang from Rails
nabewise.posterous.com
Tapping into Distributed Erlang from Rails
1–5 of 5 posts
Re: Tapping into Distributed Erlang from Rails
#2I'm a big fan of http://github.com/mattsta/er (probably because it's mine).
Re: Tapping into Distributed Erlang from Rails
#3What are you using in Erlang to talk to Redis? I'm a big fan of http://github.com/mattsta/er (probably because it's mine).
Re: Tapping into Distributed Erlang from Rails
#4What are you using in Erlang to talk to Redis? I'm a big fan of http://github.com/mattsta/er (probably because it's mine).
We're using http://github.com/cstar/erldis . It's a very thin wrapper over the raw commands and does what I want well (well after we hunted down a weird bug in response handling under load, but that's a separate story)
I've been using my redis client in production for a few months with no problems. If you find yourself getting stuck with erldis, give it a try.
Re: Tapping into Distributed Erlang from Rails
#5Earlier quoted context omitted.
We're using http://github.com/cstar/erldis . It's a very thin wrapper over the raw commands and does what I want well (well after we hunted down a weird bug in response handling under load, but that's a separate story)
I started out there too, but it felt like there was always just one more bug to fix and then everything would be okay. After half a dozen "one more" bugs, I scraped it and started over. I've been using my redis client in production for a few months with no problems. If you find yourself getting stuck with erldis, give it a try.