diff options
| author | alex <[email protected]> | 2026-07-10 20:28:47 +0200 |
|---|---|---|
| committer | alex <[email protected]> | 2026-07-10 20:28:47 +0200 |
| commit | f18210c30e67de4bede7c6080d85629f7086676c (patch) | |
| tree | c9aedf21ed9f905424f8ab6fdb633254e127fbc6 /pkg/commands/del.go | |
| parent | 36d70e64340033f1e5b928524436c0b2f44c831e (diff) | |
| download | redis-clone-f18210c30e67de4bede7c6080d85629f7086676c.tar.xz redis-clone-f18210c30e67de4bede7c6080d85629f7086676c.zip | |
separated commands into their own files TODO: refactor all commands to work like this
Diffstat (limited to 'pkg/commands/del.go')
| -rw-r--r-- | pkg/commands/del.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/commands/del.go b/pkg/commands/del.go new file mode 100644 index 0000000..bc7d3f9 --- /dev/null +++ b/pkg/commands/del.go @@ -0,0 +1,15 @@ +package commands + +import "redisClone/pkg/core" + +func Del(args []string, getShard func(k string) *core.Shard) interface{} { + count := 0 + for _, key := range args[1:] { + shard := getShard(key) + if _, exists := shard.Data[key]; exists { + delete(shard.Data, key) + count++ + } + } + return count + }
\ No newline at end of file |
