[DRAFT]This page is not published. Only visible in development mode.

Views

Views are derived datasets that stay in sync with their source tables. ReifyDB supports deferred views (eventually consistent) and transactional views (updated within the same transaction as the source data).

Deferred View

$ Deferred View
$ ctrl+enter to run

Deferred views are incrementally maintained. They define their own schema and a query that produces it.

Transactional View

$ Transactional View
$ ctrl+enter to run

Transactional views update atomically with the source data. When you insert a row, the view reflects it immediately.