mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2024-12-14 11:58:02 +00:00
A modern replacement for Redis and Memcached
cachecppdatabasefibersin-memoryin-memory-databasekey-valuekeydbmemcachedmessage-brokermulti-threadingnosqlredisvalkeyvector-search
ac2eb7d45c
1. Major refactoring 2. LICENSE is updated with commons clause. 3. Server is built as "dragonfly" |
||
---|---|---|
helio@dab0fc7684 | ||
server | ||
.clang-format | ||
.gitignore | ||
.gitmodules | ||
CMakeLists.txt | ||
LICENSE | ||
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:
- High throughput reaching millions of QPS on a single node.
- TLS support.
- 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