53 releases (3 major breaking)

3.0.0 Oct 12, 2024
2.0.0 Oct 7, 2024
1.0.2 Sep 26, 2024
1.0.1 Jun 28, 2024
0.11.6 Dec 25, 2021

#30 in #leveldb

Download history 63/week @ 2024-07-15 26/week @ 2024-07-22 144/week @ 2024-07-29 75/week @ 2024-08-05 62/week @ 2024-08-12 38/week @ 2024-08-19 72/week @ 2024-08-26 48/week @ 2024-09-02 34/week @ 2024-09-09 55/week @ 2024-09-16 317/week @ 2024-09-23 150/week @ 2024-09-30 542/week @ 2024-10-07 354/week @ 2024-10-14 150/week @ 2024-10-21 198/week @ 2024-10-28

1,266 downloads per month
Used in 8 crates (6 directly)

GPL-3.0 license

225KB
6.5K SLoC

GitHub top language Rust Latest Version Rust Documentation Minimum rustc version

vsdb

vsdb is a 'std-collection-like' database.

This is a simplified version of the original vsdb, retaining only the most practical and stable parts.

To view the change log check here.

Highlights

  • Most APIs is similar as the coresponding data structures in the standard library
    • Use Vecx just like Vec
    • Use Mapx just like HashMap
    • Use MapxOrd just like BTreeMap
  • ...

Compilation features

  • rocks_backend, use rocksdb as the backend database
    • Stable ?
    • C++ implementation, difficult to be compiled into a static binary
  • [ DEFAULT ] parity_backend, use parity-db as the backend database
    • Experimental ?
    • Pure rust implementation, can be easily compiled into a static binary
  • msgpack_codec, use rmp-serde as the codec
    • Faster running speed than json
  • json_codec, use serde_json as the codec
    • Better generality and compatibility
  • compress, enable compression in the backend database

NOTE

  • The serialized result of a vsdb instance can not be used as the basis for distributed consensus
    • The serialized result only contains some meta-information(storage paths, etc.)
    • These meta-information are likely to be different in different environments
    • The correct way is to read what you need from it, and then process the real content

Dependencies

~2–12MB
~143K SLoC