Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge "Redis API in Scylla"
Merged patch series from Peng Jian, adding optionally-enabled Redis API support to Scylla. This feature is experimental, and partial - the extent of this support is detailed in docs/redis/redis.md. Patches: Document: add docs/redis/redis.md redis: Redis API in Scylla Redis API: graft redis module to Scylla redis-test: add test cases for Redis API
- Loading branch information
Showing
with
3,293 additions
and 1 deletion.
- +41 −1 configure.py
- +15 −0 db/config.cc
- +8 −0 db/config.hh
- +362 −0 docs/redis/redis.md
- +16 −0 main.cc
- +14 −0 redis-test/README.md
- +103 −0 redis-test/test_strings.py
- +31 −0 redis-test/util.py
- +26 −0 redis/abstract_command.cc
- +58 −0 redis/abstract_command.hh
- +55 −0 redis/command_factory.cc
- +42 −0 redis/command_factory.hh
- +53 −0 redis/commands/del.cc
- +44 −0 redis/commands/del.hh
- +57 −0 redis/commands/get.cc
- +44 −0 redis/commands/get.hh
- +47 −0 redis/commands/ping.cc
- +49 −0 redis/commands/ping.hh
- +62 −0 redis/commands/select.cc
- +52 −0 redis/commands/select.hh
- +53 −0 redis/commands/set.cc
- +52 −0 redis/commands/set.hh
- +56 −0 redis/commands/unknown.cc
- +62 −0 redis/commands/unknown.hh
- +51 −0 redis/exceptions.hh
- +210 −0 redis/keyspace_utils.cc
- +41 −0 redis/keyspace_utils.hh
- +93 −0 redis/mutation_utils.cc
- +39 −0 redis/mutation_utils.hh
- +41 −0 redis/options.cc
- +98 −0 redis/options.hh
- +141 −0 redis/protocol_parser.rl
- +62 −0 redis/query_processor.cc
- +70 −0 redis/query_processor.hh
- +91 −0 redis/query_utils.cc
- +50 −0 redis/query_utils.hh
- +105 −0 redis/reply.hh
- +50 −0 redis/request.hh
- +272 −0 redis/server.cc
- +148 −0 redis/server.hh
- +148 −0 redis/service.cc
- +62 −0 redis/service.hh
- +57 −0 redis/stats.cc
- +62 −0 redis/stats.hh
Oops, something went wrong.