An open API service indexing awesome lists of open source software.

https://github.com/archetype-dynamics/ostrichlite

A somehow more lightweight version of the already lightweight OstrichDB engine!
https://github.com/archetype-dynamics/ostrichlite

all-in-one all-in-one-backend database-engine dbms odin odin-lang ostrichdb ostrichlite wasm

Last synced: 5 months ago
JSON representation

A somehow more lightweight version of the already lightweight OstrichDB engine!

Awesome Lists containing this project

README

          

# OstrichLite
A somehow more lightweight version of the already lightweight OstrichDB engine!

collections: A database file ending with .ostrichdb extension.
cluster: a JSON-like data structure that contains recordss.
records: a key-value pair like structure that contains the data.must have a name, type and value

Example:
```
//myCoolDb.ostrichdb

{
cluster_name :identifier: JOHN_DOE,
cluster_id :identifier: 1234567890,

username :STRING: "John Doe",
age :INTEGER: 20,
is_admin :BOOLEAN: true,
friends :[]STRING: ["Jane Doe", "John Smith", "John Doe"],

}
```