this question may have been asked many times, but could not find any suitable answer. Is there any ORM on Rails3 for Cassandra.

I have searched google and found following.

Please help me out in deciding which one I should go with.

Thanks

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

First, you can put anything not updated in 2011 on the "don't bother" list. 0.7 was released in January 2011 and has some API incompatiblities with earlier clients.

Of the ones left, fauna/cassandra is a lower-level client (I suspect most of the others use it as a starting point), which leaves a very short list left to evaluate. Based purely on commit activity I suspect active_column is your best bet.

For 0.8.1 (it won't be ready in time to ship with 0.8.0) we're working on a CQL driver that we hope will provide Rails compatibility out of the box. That will be in the Cassandra source tree under drivers/ when it's ready.

link|improve this answer
Thanks jbellis. I also came to same conclusion that i should go with active_column, but there are some problems - like I am not able to use active_column with Devise. so there are 2 options - first would be to go with 2 databases (MySQL and cassandra) which I personally don't like to and second would be to change the authentication plugin from Devise to something else which supports cassandra. anyways thanks for the help – sumit Jun 1 '11 at 7:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.