README.md 555 字节
Newer Older
B
baotiao 已提交
1
Pika
Z
Zongzhi Chen 已提交
2 3
====

B
baotiao 已提交
4 5 6 7 8 9 10
Pika is redis like database.
Pika used Nemo as storage engine, Nemo is developed base on rocksdb.
Nemo support multi data structure by using rocksdb's kv port. Such as list,
hash, zst
Because rocksdb is using disk, so Nemo don't have capacity limitation.
The protocol used to contact with Pika is redis protocol, so you don't need to
change your code to migrate to Pika
B
baotiao 已提交
11 12 13 14 15 16

### Thread Model
Pika used multi threads model. The main thread accept the request and then send
the request to the work threads.

Pika written all in C++
Z
Zongzhi Chen 已提交
17 18

Just for fun ^-^