Skip to content

kevinsegal/louiseDB

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LouiseDB

LouiseDB is an in-memory database that uses JS data structures to store data, there are no DB schemas. Reads and writes are done via JS function calls (getters and setters), there is no query language. The database can only be used as a library, embedded into your software. To use it as a server, you can wrap it into your own server, or use LouiseDB-server (coming soon to a github near you).

Current features:

  • In-memory database
  • No Schema/No query language
  • Read/write using JS functions
  • Use database as a library (no CLI nor server)
  • Support for transactions. All setters exhibit the ACID properties.
  • Immutability
  • Persist/Restore database to disk.
  • Hot reload of JS setters and getters without restarting the data store and losing database state

Current Limitations:

  • DB size is limited to maximum amount of memory that your node.js process can allocate

Desired features for MVP:

  • Distribute read/write across replicas for performance

Desired features for second milestone:

  • Allow REST access to getters and setters
  • Introduce LouiseDB-server which runs LouiseDB in its own process and offers a REST API

Desired features if time and implementation allow:

  • Support for large datasets by distributing database across several systems

About

In-memory database running on Node.js, storing data in JS data structures accessed by JS functions

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%