Quick Start

From zero to your first query in about five minutes.

Start ReifyDB

Start the ReifyDB server:

bash
reifydb serve

By default, ReifyDB listens on port 5432. Use --port to change it.

Your First Query

RQL lets you query data inline, no tables required. Click Run to try it:

$ Your First Query
$ ctrl+enter to run

This queries inline records directly. Great for prototyping and testing ideas.

Filtering Data

Use filter to keep only the rows you care about:

$ Filtering Data
$ ctrl+enter to run

Creating a Table

When you are ready to persist data, create a table:

$ Creating a Table
$ ctrl+enter to run

Inserting Data

Add some records:

$ Inserting Data
$ ctrl+enter to run

Querying Tables

Query your table the same way you queried inline data:

$ Querying Tables
$ ctrl+enter to run
Next Steps
You have the basics. Dive deeper in RQL Basics.