#cache #disk #applications #string #db #numbers

microdb

A very small in-program database with cache, disk storage, etc

13 releases

0.3.5 Jul 25, 2023
0.3.4 Jun 24, 2023
0.2.0 Jun 20, 2023
0.1.5 Jun 20, 2023

#582 in Database interfaces

Download history 3/week @ 2024-02-22 1/week @ 2024-02-29 54/week @ 2024-03-28 27/week @ 2024-04-04

81 downloads per month

MIT license

53KB
1K SLoC

MicroDB

A microsized database for use in programs with too much data for the RAM.

Completed features

  • Disk storage
  • Getting, setting, allocation, deallocation
  • Caching
  • Automatic recovery on error
  • Serialization for basic types (numbers, strings, vecs, options, results)
  • Easy-to-implement serialization
  • Derivable serialization
  • (maybe) Multi-client support over TCP
  • (maybe) Mirroring operations to backup server (needs TCP)

How to use it

MicroDB runs where your application does: Saving, cache synchronization, etc all happen simply in another thread of your application.

To get started, create a DB:

let db = MicroDB::create(
    "example_db.data.mdb",
    "example_db.meta.mdb",
    MicroDB::sensible_cache_period(
        /*requests of unique objects per second*/10.0, 
        /*max ram usage*/0.1, 
        /*average object size in mb*/0.01, 
        /*safety (how important staying within ram spec is)*/1.0),
    MicroDB::sensible_block_size(
        /*object amount*/500.0, 
        /*average object size in bytes*/10_0000.0, 
        /*object size fluctuation in bytes*/0.0, 
        /*storage tightness*/1.0
    ),
)

Or load one using ::new and leave out the block_size arg.

And now you're good to go!

Is it any fast?

Here's a test showing the speed with amount of requests to one value:

Setting test --raw--> true
Reading test 10000 times.
Done! Took 1ms: 0.0001ms per read.

Here's a test showing the speed with one request per value at 10000 values:

Setting horizontal_test/{0..10000} --raw--> true
Reading back all values...
Done! Write took 5570ms: 0.557ms per write; Read took 143ms: 0.0143ms per read.

As you can see, the speed is quite negigible, and it actually happens to be a lot faster than SQL databases like Postgres for these kinds of dataset sizes. This DB is not made to be used on datasets of giant sizes, but it works exceptionally well for smaller datasets.

Currently, the DB scales approximately at O(log n) for reading, but is slower for writing (not sure how much though).

Dependencies