Crates.io | kyoto |
lib.rs | kyoto |
version | 0.0.1 |
source | src |
created_at | 2021-02-27 03:54:41.185365 |
updated_at | 2021-02-27 03:54:41.185365 |
description | Modularized cache system |
homepage | https://github.com/JeepYiheihou/kyoto |
repository | https://github.com/JeepYiheihou/kyoto |
max_upload_size | |
id | 361200 |
size | 40,616 |
A modular designed high performance cache
A key-value cache prototype.
Serves HTTP protocol. Client commands has to comply with HTTP request format, and the command information should be json in request body.
For example:
{ "command": "GET", "key": "foo" }
or:
{ "command": "SET", "key": "foo", value: "bar" }
Modularize.
This project aim to test whether a database can be decoupled into essential modules: Network part, Machine part and Data Structure part.