mntns/rethink
A client for RethinkDB written in Elixir.
{ "createdAt": "2015-02-19T16:56:59Z", "defaultBranch": "master", "description": "A client for RethinkDB written in Elixir.", "fullName": "mntns/rethink", "homepage": null, "language": "Elixir", "name": "rethink", "pushedAt": "2015-03-08T20:33:06Z", "stargazersCount": 1, "topics": [], "updatedAt": "2015-07-04T06:54:00Z", "url": "https://github.com/mntns/rethink"}rethink
Section titled “rethink”Tested with RethinkDB v1.16.2
Rethink is a client driver for RethinkDB. It is written in pure Elixir.
Add Rethink as a dependency in your mix.exs file.
def deps do [{:rethink, github: "EddyShure/rethink"}]endiex> {:ok, pid} = Rethink.Connection.start_link(hostname: "localhost", port: 28015, database: "test"){:ok, #PID<0.42.0>}Using Rethink in your OTP application
Section titled “Using Rethink in your OTP application”TODO
Resources
Section titled “Resources”- Official driver spec: http://rethinkdb.com/docs/driver-spec/
- Official Ruby client driver doc: http://rethinkdb.com/api/ruby/
- Official protocol specification: https://github.com/rethinkdb/rethinkdb/blob/v1.16.x/src/rdb_protocol/ql2.proto
