Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 534 Bytes

related-projects.md

File metadata and controls

26 lines (18 loc) · 534 Bytes
description
Related projects which make use of Antidote or extend it

PotionDB

Antidote Query Language (AQL)

A SQL-like interface for the AntidoteDB data store.

See the repository for more information.

Example:

CREATE UPDATE-WINS TABLE Student (
	StudentID INT PRIMARY KEY,
	Name VARCHAR,
	Age INT DEFAULT 18,
	YearsLeft COUNTER_INT CHECK (YearsLeft > 0),
	Passport_id INTEGER FOREIGN KEY UPDATE-WINS REFERENCES Passport(id)
) PARTITION ON (Age);

EdgeAnt