This is an automated email from the ASF dual-hosted git repository.
twice pushed a change to branch unstable
in repository https://gitbox.apache.org/repos/asf/kvrocks.git
from a9397f2b Split functions in main.cc to multiple headers (#1787)
add 548d5f56 Implement FUNCTION commands like redis (#1788)
No new revisions were added by this update.
Summary of changes:
src/commands/cmd_function.cc | 100 ++++++++
src/server/server.cc | 35 ++-
src/server/server.h | 5 +
src/storage/redis_db.h | 24 +-
src/storage/scripting.cc | 341 ++++++++++++++++++++++++++-
src/storage/scripting.h | 18 +-
src/storage/storage.cc | 2 +-
src/storage/storage.h | 4 +-
tests/gocase/unit/scripting/function_test.go | 147 ++++++++++++
tests/gocase/unit/scripting/mylib1.lua | 29 +++
tests/gocase/unit/scripting/mylib2.lua | 29 +++
11 files changed, 708 insertions(+), 26 deletions(-)
create mode 100644 src/commands/cmd_function.cc
create mode 100644 tests/gocase/unit/scripting/function_test.go
create mode 100644 tests/gocase/unit/scripting/mylib1.lua
create mode 100644 tests/gocase/unit/scripting/mylib2.lua