aboutsummaryrefslogtreecommitdiff
path: root/pkg/commands/type.go
diff options
context:
space:
mode:
authoralex <[email protected]>2026-07-12 13:48:32 +0200
committeralex <[email protected]>2026-07-12 13:48:32 +0200
commit89b3019a3ab77a3e72720342fc0e5bea996fa4f2 (patch)
treeed9482c87ff2eaa52ba8359654e0e923a4732e30 /pkg/commands/type.go
parent80100f574d8cf6c231217678356324d8ffa7140f (diff)
downloadredis-clone-89b3019a3ab77a3e72720342fc0e5bea996fa4f2.tar.xz
redis-clone-89b3019a3ab77a3e72720342fc0e5bea996fa4f2.zip
refactored all functions to use the command registry
Diffstat (limited to 'pkg/commands/type.go')
-rw-r--r--pkg/commands/type.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkg/commands/type.go b/pkg/commands/type.go
new file mode 100644
index 0000000..2a7ef95
--- /dev/null
+++ b/pkg/commands/type.go
@@ -0,0 +1,24 @@
+package commands
+
+import (
+ "redisClone/pkg/core"
+)
+
+func Type(args []string, getShard func(k string) *core.Shard) interface{} {
+ key := args[1]
+ s := getShard(key)
+ item, exists := s.Data[key]
+ if !exists {
+ return core.SimpleString("none")
+ }
+ switch item.Value.(type) {
+ case string:
+ return core.SimpleString("string")
+ case []string:
+ return core.SimpleString("list")
+ case map[string]string:
+ return core.SimpleString("hash")
+ default:
+ return core.SimpleString("unknown")
+ }
+}