Skip to content
This repository has been archived by the owner on Apr 20, 2021. It is now read-only.

Latest commit

 

History

History
53 lines (37 loc) · 1.58 KB

README.md

File metadata and controls

53 lines (37 loc) · 1.58 KB

Learn RethinkDB

A RethinkDB workshopper: learn how to use RethinkDB with the Javascript Driver.

[insert menu image here]

Install

npm install -g learnyourethinkdb

How to use

After installing the workshop run this command:

learnyourethinkdb

You will be presented with a menu: start from the top and move on to the next exercises until you finish. Each exercise will print instructions on how to complete it.

What is RethinkDB?

RethinkDB is the first open-source, scalable JSON database built from the ground up for the realtime web. It inverts the traditional database architecture by exposing an exciting new access model – instead of polling for changes, the developer can tell RethinkDB to continuously push updated query results to applications in realtime. RethinkDB’s realtime push architecture dramatically reduces the time and effort necessary to build scalable realtime apps.

from Frequently Asked Questions

It has out of the box this cool features:

  • Changefeeds for a table, a single document or a specific query
  • Natural and intuitive query language (ReQL) that is composable
  • Automatically parallelized queries
  • Table joins and aggregations including map-reduce
  • Nice atomic operations
  • Simple administration

Contributors