datastax_rails
datastax_rails copied to clipboard
A Ruby-on-Rails interface to Datastax Enterprise. Replaces the majority of ActiveRecord functionality.
Please add support for the datatype Decimal, which (as far as I can find) is supported in Cassandra (http://docs.datastax.com/en/cql/3.0/cql/cql_reference/cql_data_types_c.html) but not in DatastaxRails.
Cassandra can be protected with a username and password, and the CassandaDriver supports this too (http://datastax.github.io/ruby-driver/api/#methods). Please add support for this.
In Cassandra it is possible to define a partition key (the first part of a compound key) of multiple columns. As far as I can find, DatastaxRails only allows one...
Hi guys! I have trouble when trying to save object: ``` 2.1.5 :001 > user = User.new(bio: 'test') => # 2.1.5 :002 > user.save! fatal: No live threads left. Deadlock?...
Hi, when attempting to use Float's inside Maps, I'm getting the following error: `undefined method 'encode' for 2.107:Float` Are maps not intended to store floats or is this a bug?...
It would be really great if there were a way to have the params yielded to the developer to let them modify as desired.
Hi jasonmk, I'd like to be able to search over models using specific fields, although I noticed that in your documentation for the class the `:fields` option is not yet...