diff options
| author | alex <[email protected]> | 2026-07-12 13:48:32 +0200 |
|---|---|---|
| committer | alex <[email protected]> | 2026-07-12 13:48:32 +0200 |
| commit | 89b3019a3ab77a3e72720342fc0e5bea996fa4f2 (patch) | |
| tree | ed9482c87ff2eaa52ba8359654e0e923a4732e30 /pkg/commands/hkeys.go | |
| parent | 80100f574d8cf6c231217678356324d8ffa7140f (diff) | |
| download | redis-clone-89b3019a3ab77a3e72720342fc0e5bea996fa4f2.tar.xz redis-clone-89b3019a3ab77a3e72720342fc0e5bea996fa4f2.zip | |
refactored all functions to use the command registry
Diffstat (limited to 'pkg/commands/hkeys.go')
| -rw-r--r-- | pkg/commands/hkeys.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pkg/commands/hkeys.go b/pkg/commands/hkeys.go new file mode 100644 index 0000000..09a5d97 --- /dev/null +++ b/pkg/commands/hkeys.go @@ -0,0 +1,24 @@ +package commands + +import ( + "errors" + "redisClone/pkg/core" +) + +func Hkeys(args []string, getShard func(k string) *core.Shard) interface{} { + key := args[1] + s := getShard(key) + item, exists := s.Data[key] + if !exists { + return nil + } + hash, ok := item.Value.(map[string]string) + if !ok { + return errors.New("WRONGTYPE Operation against a key holding the wrong kind of value") + } + keys := make([]string, 0, len(hash)) + for k := range hash { + keys = append(keys, k) + } + return keys +} |
