Creating an application using rails 2.3.5 and cassandra database

Pls help me build a rails application using rails 2.3.5 and the cassandra database as rails 2.3.5 supports mysql, sqllite etc.

I typed on the command line like this

$ rails -d cassandra myapp

Databases supported for preconfiguration: mysql, oracle, postgresql, sqlite2, sqlite3, frontbase, ibm_db

So help me in this regard

+3
source share
1 answer

Cassandra is not supported by Rails. This is not a relational database and does not quite fit into the Active Record pattern used by Rails models.

, , Ruby/Rails:

+1

Source: https://habr.com/ru/post/1745267/


All Articles