views:

215

answers:

1

Is there a stable Cassandra library for Erlang? I can't seem to find one

+2  A: 

Apache Cassandra uses Thrift. So all you need to do is to generate the thrift binding for Erlang (thrift --gen erl interface/cassandra.thrift)

From the Apache Thrift wiki:

Thrift has generators for C++, C#, Erlang, Haskell, Java, Objective C/Cocoa, OCaml, Perl, PHP, Python, Ruby, and Squeak

(If you are looking for a more "high level client" library then I dont know.)

Schildmeijer
From what I've read noone has manageed to get the Erlang thrift driver working in a stable manner yet? I could be wrong if you know any links I would be very grateful
Zubair
Finally got this working. It is one of the worse documented APIs I have ever seen though.
Zubair
http://wiki.apache.org/cassandra/API is pretty good imho
Schildmeijer