Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mmncit/rucasrar

Simple Rails application using Cassandra NoSQL database
https://github.com/mmncit/rucasrar

cassandra cassandra-database cequel rails5 rails5-app

Last synced: 13 days ago
JSON representation

Simple Rails application using Cassandra NoSQL database

Awesome Lists containing this project

README

        

# rucasrar

A simple rails app for a post-management system using the Cassandra database

## Requirements:

- Ruby ~> 2.5.7
- Rails ~> 5.2.4
- Cassandra ~> 3.11.5

## Setup instructions:

* Initialize Cassandra keyspace (database)

```
$ rake cequel:keyspace:create
```

* Synchronize your Rails model schemas with Cassandra keyspace

```
$ rake cequel:migrate
```

* Start the Rails server

```
$ rails s
```

* Check the application

```
$ open http://localhost:3000
```

## References:

- [Apache Cassandra](http://cassandra.apache.org)

- [Cequel](https://github.com/cequel/cequel)

- [conradwt/cassandra-example-using-rails](https://github.com/conradwt/cassandra-example-using-rails)

- [Altoros/simple-rails-app-with-cassandra](https://github.com/Altoros/simple-rails-app-with-cassandra)

## License:

This repository is released under the [MIT License](http://www.opensource.org/licenses/MIT).