Sha256: eb35c34e6b132dc0d0b07c70163b235334227f5d1c1874b24f5f81dd470ea9be
Contents?: true
Size: 1.84 KB
Versions: 1
Compression:
Stored size: 1.84 KB
Contents
# cql_model cql_model provides an ActiveModel implementation on top of the cql-rb gem. It is intended to provide the functionality needed to utilize Cassandra as an ActiveModel compatible data store. ## Installation Add this line to your application's Gemfile: gem 'cql_model' And then execute: $ bundle Or install it yourself as: $ gem install cql_model ## Usage require 'cql_model' Cql::Base.establish_connection(host: '127.0.0.1') class Person < Cql::Model primary_key :id column :first_name column :last_name column :dob end ### Schema Definition While Cassandra doesn't get super picky about schemas you should understand how you're storing your data. To help with this you should define the primary key and the columns you care about within your model. #### Primary Key Defining the primary key determines which column the id-oriented finders will work with. The default primary key is `id`. primary_key :id primary_key 'card_number' #### Columns You define columns by supplying the attribute name and an optional set of options. column :first_name column :birth_date column :birth_date, column_name: :dob The supported options for columns are as follows: * `column_name`: actual column name for storing the attribute. * `ready_only`: flags the attribute as read-only, blocking creation of a setter method. #### Consistency You can set any consistency value for your models that is supported by cql-rb and it will be passed whenever a query is executed. The default consistency level is `quorum`. consistency :three ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cql_model-0.0.5 | README.md |