FLQL - Flinch Query Language

Rust

FLQL - Flinch Query Language is a lightweight query language designed to retrieve data from an in-memory database called Flinch. Flinch is a real-time unstructured document database that is capable of storing and retrieving documents in JSON format.

FLQL was created to simplify the querying process in Flinch and make it easier for developers to retrieve data from the database. It is a simple, intuitive, and expressive language that is easy to learn and use.

Features:

Getting Started:

To use FLQL, you will need to have Flinch installed and running on your system. Once Flinch is up and running, you can start querying your data using FLQL.

Create collection
new({});

Drop collection
drop('');

Check if pointer exists in collection
exists('').into('');

Length of collection
length('');

Update or Insert into collection
upsert({}).into('');

Conditional Update or Insert into collection
upsert({}).when(:includes(array_filter('e.f$.g'),2):).into('');

Update or Insert into collection to a Pointer
upsert({}).pointer('').into('');

Get from collection
get.from('');

Conditional Get from collection
get.when(:includes(array_filter('e.f$.g'),2):).from('');

Get Pointer from collection
get.pointer('').from('');

Get View from collection
get.view('').from('');

Get Clip from collection
get.clip('').from('');

Delete from collection
delete.from('');

Conditional Delete from collection
delete.when(:includes(array_filter('e.f$.g'),2):).from('');

Delete Pointer from collection
delete.pointer('').from('');

Delete View from collection
delete.view('').from('');

Delete Clip from collection
delete.clip('').from('');