#database-server #redis #server #database

bin+lib paggo

A small, fast, and safe in-memory database

2 releases

0.1.1 May 23, 2023
0.1.0 May 23, 2023

#1313 in Asynchronous

23 downloads per month

MIT license

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

MIT


lib.rs:

Paggo

This crate exports [Paggo], allowing the creation custom instances for it and integrating it on existing services.

Dependencies

~4–14MB
~149K SLoC