webscaledb
v0.1.6
Published
WebScaleDB - The new database that is ACID compliant, web scale and asynchronous!
Downloads
9
Readme
WebScaleDB
WebScaleDB - The new database that is ACID compliant(1), web scale(2) and asynchronous(3)!
1. not actually ACID compliant
2. probably not web scale
3. completely synchronous, except for when it's not
import * as db from 'webscaledb';
db.restore('db.json', () => { /* ... */ });
db.backup('db.json', () => { /* ... */ });
db.set('key', 'value');
db.get('key'); // 'value'