This is an automated email from the ASF dual-hosted git repository.
hulk pushed a change to branch function-listlib
in repository https://gitbox.apache.org/repos/asf/kvrocks.git
from 84b9e3a1 Add LISTLIB subcommand as an extension to FUNCTION
add f9728192 Add the support of the namespace replication (#1776)
add 421665f2 Merge branch 'unstable' into function-listlib
No new revisions were added by this update.
Summary of changes:
kvrocks.conf | 9 ++
src/cluster/replication.cc | 5 +
src/commands/cmd_server.cc | 35 ++---
src/config/config.cc | 128 +++---------------
src/config/config.h | 15 ++-
src/server/namespace.cc | 182 ++++++++++++++++++++++++++
src/server/namespace.h | 50 +++++++
src/server/server.cc | 12 +-
src/server/server.h | 5 +
src/storage/storage.h | 2 +-
tests/cppunit/config_test.cc | 142 +-------------------
tests/cppunit/namespace_test.cc | 71 ++++++++++
tests/cppunit/test_base.h | 9 +-
tests/gocase/unit/namespace/namespace_test.go | 144 +++++++++++++++++++-
14 files changed, 527 insertions(+), 282 deletions(-)
create mode 100644 src/server/namespace.cc
create mode 100644 src/server/namespace.h
create mode 100644 tests/cppunit/namespace_test.cc