jylis-rb
An idiomatic library for connecting a Ruby project to a Jylis CRDT database.
Jylis is a distributed in-memory database for Conflict-free Replicated Data Types (CRDTs), built for speed, scalability, availability, and ease of use.
Installation
Install this library from the Ruby package manager with the following command:
$ gem install jylis-rb
Add the following require
to your project:
require 'jylis-rb'
The library is now ready for use.
Installing From Source
If you choose not to use a version of the gem provided by the package manager, you may alternatively install this library from the source code. This section can be skipped if you have already installed the gem from the package manager.
Ensure bundler
and rake
are installed:
$ gem install bundler
$ gem install rake
Clone the repository and navigate inside the project directory:
$ git clone git@github.com:amclain/jylis-rb.git
$ cd jylis-rb
Install the dependencies:
$ bundle install
Ensure the tests pass:
$ bundle exec rake
Install the gem from the working source code:
$ rake install
Database Connection
The connection URI must be specified in the format: schema://host:port
, where
the schema is jylis
. The host
can be a host name, IP address, or domain name
of the database host to connect to. The port
is optional and defaults to
6379
unless otherwise specified.
Jylis.connect("jylis://host:port")
Queries
This library aims to be idiomatic with both Ruby and Jylis. Therefore, the syntax of the queries closely match the Jylis documentation and ideally it should feel so natural to you, a Ruby programmer, that you don't need to read the documentation for this library (although this library is thoroughly documented in the case that you do).
For example, take the case of a Jylis query to set a value for a
UJSON
key:
UJSON SET fruit apple properties '{"color": "red", "ripe": true}'
Using this library, the query looks like this:
Jylis.ujson.set "fruit", "apple", "properties", {color: "red", ripe: true}
The format for a query is:
Jylis.<data_type>.<function> key(s), [value], [timestamp]
However, be sure to consult the API documentation or the Jylis documentation for the exact format of your particular query.
TREG
Timestamped Register [link]
Jylis.treg.set "lamp_brightness", 80, 1528082143
result = Jylis.treg.get "lamp_brightness"
# => #<Jylis::DataType::TREG::Result:0x00005598dd3941c8 @timestamp=1528082143, @value="80">
result.value
# => "80"
result.timestamp
# => 1528082143
TLOG
Timestamped Log [link]
Jylis.tlog.ins "temperature", 68.8, 1528082150
Jylis.tlog.ins "temperature", 70.1, 1528082160
Jylis.tlog.ins "temperature", 73.6, 1528082170
Jylis.tlog.size "temperature"
# => 3
result = Jylis.tlog.get "temperature"
# => #<Jylis::DataType::TLOG::Result:0x00005598dd345d20
# @rows=
# [#<Jylis::DataType::TLOG::Row:0x00005598dd345d98 @timestamp=1528082170, @value="73.6">,
# #<Jylis::DataType::TLOG::Row:0x00005598dd345d70 @timestamp=1528082160, @value="70.1">,
# #<Jylis::DataType::TLOG::Row:0x00005598dd345d48 @timestamp=1528082150, @value="68.8">]>
result.first.value
# => "73.6"
result.first.timestamp
# => 1528082170
Jylis.tlog.trim "temperature", 1
Jylis.tlog.get "temperature"
# => #<Jylis::DataType::TLOG::Result:0x00005598dd2faac8
# @rows=[#<Jylis::DataType::TLOG::Row:0x00005598dd2faaf0 @timestamp=1528082170, @value="73.6">]>
Jylis.tlog.cutoff "temperature"
# => 1528082170
GCOUNT
Grow-Only Counter [link]
Jylis.gcount.inc "mileage", 10
Jylis.gcount.inc "mileage", 5
Jylis.gcount.get "mileage"
# => 15
PNCOUNT
Positive/Negative Counter [link]
Jylis.pncount.inc "subscribers", 3
Jylis.pncount.dec "subscribers", 1
Jylis.pncount.get "subscribers"
# => 2
MVREG
Multi-Value Register [link]
Jylis.mvreg.set "thermostat", 68
Jylis.mvreg.get "thermostat"
# => ["68"]
UJSON
Unordered JSON [link]
Jylis.ujson.set "users", "alice", {admin: false}
Jylis.ujson.set "users", "brett", {admin: false}
Jylis.ujson.set "users", "carol", {admin: true}
Jylis.ujson.get "users"
# => {"brett"=>{"admin"=>false}, "carol"=>{"admin"=>true}, "alice"=>{"admin"=>false}}
Jylis.ujson.ins "users", "brett", "banned", true
Jylis.ujson.clr "users", "alice"
Jylis.ujson.get "users"
# => {"brett"=>{"banned"=>true, "admin"=>false}, "carol"=>{"admin"=>true}}
Raw Query
If this library doesn't contain a method for the query you would like to
perform, you can construct the query yourself by calling Jylis.query
.
However, be aware that this method is non-idiomatic and may require you to
do your own pre/post processing on the data.
Jylis.query "TLOG", "INS", "temperature", 72.6, 5
# => "OK"
Jylis.query "TLOG", "GET", "temperature"
# => [["72.6", 5]]
Timestamps
In addition to supporting integer timestamps as defined by the Jylis spec, this
library also has helpers to convert the Jylis Timestamped
data types to/from
ISO 8601. Functions that have a timestamp
parameter will automatically convert
an ISO 8601 string to a Unix timestamp.
Jylis.treg.set "volume", 64, "2018-06-06T01:42:57Z"
result = Jylis.treg.get "volume"
# => #<Jylis::DataType::TREG::Result:0x00005609aa767f00 @timestamp=1528249377, @value="64">
result.timestamp
# => 1528249377
result.time
# => 2018-06-05 18:42:57 -0700
result.timestamp_iso8601
# => "2018-06-06T01:42:57Z"