Go to file
Roman Gershman 1b52488ee9 Add github ci workflow 2021-12-21 10:50:46 +02:00
.github/workflows Add github ci workflow 2021-12-21 10:50:46 +02:00
core Introduce TxQueue and IntentLock for VLL algo 2021-12-20 22:46:51 +02:00
helio@dab0fc7684 Fix reply batching. 2021-11-30 21:01:09 +02:00
server Introduce TxQueue and IntentLock for VLL algo 2021-12-20 22:46:51 +02:00
.clang-format Add redis parser + test 2021-11-17 16:32:14 +02:00
.gitignore Add async library to the project 2021-11-16 09:59:13 +02:00
.gitmodules Rename async to helio 2021-11-18 17:14:05 +02:00
CMakeLists.txt Introduce TxQueue and IntentLock for VLL algo 2021-12-20 22:46:51 +02:00
LICENSE Adding expiry functionality. 2021-12-20 11:42:55 +02:00
README.md Adding expiry functionality. 2021-12-20 11:42:55 +02:00

README.md

Dragonfly

A toy memory store that supports basic commands like SET and GET for both memcached and redis protocols. In addition, it supports redis PING command.

Demo features include:

  1. High throughput reaching millions of QPS on a single node.
  2. TLS support.
  3. Pipelining mode.

Building from source

I've tested the build on Ubuntu 21.04+.

git clone --recursive https://github.com/romange/dragonfly
cd dragonfly && ./helio/blaze.sh -release
cd build-opt && ninja dragonfly

Running

./dragonfly --logtostderr

for more options, run ./dragonfly --help