aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authoralex <[email protected]>2026-07-07 19:26:42 +0200
committeralex <[email protected]>2026-07-07 19:26:42 +0200
commit162077efd25e286f7a0fd0fd214be6d1e7de337e (patch)
treeea8da36909370fb5077c4d4a4e4285c5526a85bf /main.go
parent0c6fb165243ae087143dfab6f357437bbeb2c529 (diff)
downloadredis-clone-162077efd25e286f7a0fd0fd214be6d1e7de337e.tar.xz
redis-clone-162077efd25e286f7a0fd0fd214be6d1e7de337e.zip
added DBSIZE command
Diffstat (limited to 'main.go')
-rw-r--r--main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.go b/main.go
index 82c3542..a2adbf7 100644
--- a/main.go
+++ b/main.go
@@ -36,6 +36,7 @@ var commandRegistry = map[string]handlerFunc{
"HKEYS": handleHkeys,
"HVALUES": handleHvalues,
"TYPE": handleType,
+ "DBSIZE": handleDbsize,
}
func main() {