view examples/kvserver/README.md @ 637:2e83675d5c47

Add more comment about Mojang's implementation
author kaiyohugo <41114603+KAIYOHUGO@users.noreply.github.com>
date Wed, 15 May 2024 20:09:53 +0800
parents c819897ec8fc
children
line wrap: on
line source

# kvserver

A simplistic Key/Value HTTP server using rusty-leveldb.

It is not multi-threaded, and achieves around 13'000 ops per second (both
fetching and storing keys) on my somewhat old `Intel(R) Xeon(R) CPU E5-1650 v2 @
3.50GHz` using `ab`.

For comparison, writing of random keys directly (in-process) usually happens at
300'000 keys per second.