2 releases
0.1.1 | May 23, 2023 |
---|---|
0.1.0 | May 23, 2023 |
#1539 in Asynchronous
28 downloads per month
9KB
121 lines
paggo
A small, fast, and safe in-memory database.
Installation
git clone https://github.com/devhsoj/paggo.git
cargo build --release
Example Usage
# ./path/to/paggo [listen address] [max key size] [max value size]
# listens on 127.0.0.1:9055, max key size: 32 b, max value size: 1 kb
./path/to/paggo
# listens on 0.0.0.0:3333, max key size: 256 b, max value size: 1 mb
./path/to/paggo 0.0.0.0:3333 256 1000000
License
lib.rs
:
Paggo
This crate exports [Paggo], allowing the creation custom instances for it and integrating it on existing services.
Dependencies
~4–13MB
~125K SLoC