+
+

Persistent Key-Value Store with Memcached Protocol

+

Fast, reliable, and easy to use. Built with Rust for performance and safety.

+ +
+ +
+

Features

+
+
+ +

Disk Persistence

+

Data is safely stored on disk with write-ahead logging for durability.

+
+
+ +

LSM-tree Architecture

+

Efficient write performance with log-structured merge-tree storage.

+
+
+ +

Memcached Compatible

+

Drop-in replacement for Memcached with persistent storage.

+
+
+
+ +
+

Server Dashboard

+
+
+
Memory Usage
+
--
+
+
+
Disk Usage
+
--
+
+
+
Total Keys
+
--
+
+
+
Connections
+
--
+
+
+
+

Configuration

+
+
+ Listen Addr + -- +
+
+ Work Dir + -- +
+
+ Max Level + -- +
+
+ SST Max Size + -- +
+
+
+
+ +
+

Try It Out

+
+
+

SET Operation

+
+ + +
+
+ + +
+ +
+
+

GET Operation

+
+ + +
+ +
+
+

DELETE Operation

+
+ + +
+ +
+
+
+
+ +
+

Memcached Protocol Reference

+
+
+ SET key flags exptime bytes [noreply] +

Store a key-value pair

+
+
+ GET key [key2 key3 ...] +

Retrieve one or more values

+
+
+ DELETE key [noreply] +

Remove a key from storage

+
+
+
+