1
0
Fork 0
mirror of https://github.com/dragonflydb/dragonfly.git synced 2024-12-14 11:58:02 +00:00
A modern replacement for Redis and Memcached
Find a file
2021-11-29 21:50:08 +02:00
helio@29e247c00c Rename async to helio 2021-11-18 17:14:05 +02:00
server Add prometheus-like metric support and allow connection affinity according to INCOMING_CPU 2021-11-29 21:50:08 +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 Rename async to helio 2021-11-18 17:14:05 +02:00
LICENSE Add APACHE-2.0 license. Fix file headers everywhere 2021-11-28 09:29:26 +02:00
README.md Add APACHE-2.0 license. Fix file headers everywhere 2021-11-28 09:29:26 +02:00

mini-redis

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 to millions of QPS on a single node.
  2. TLS support
  3. Pipelining mode that allows reaching order of magnitude higher QPS i.e. 30M qps and higher on a single node.