diff options
| author | alex <[email protected]> | 2026-07-07 19:19:14 +0200 |
|---|---|---|
| committer | alex <[email protected]> | 2026-07-07 19:19:14 +0200 |
| commit | 0c6fb165243ae087143dfab6f357437bbeb2c529 (patch) | |
| tree | fd9a8bb814edf76af9d15c698bcd8fa47e360614 /main.go | |
| parent | 46ed94f273930ec2842ca4e5c37624c1da584fc4 (diff) | |
| download | redis-clone-0c6fb165243ae087143dfab6f357437bbeb2c529.tar.xz redis-clone-0c6fb165243ae087143dfab6f357437bbeb2c529.zip | |
added LPUSH command
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -25,6 +25,7 @@ var commandRegistry = map[string]handlerFunc{ "PING": handlePing, "FLUSHALL": handleFlushall, "RPUSH": handleRpush, + "LPUSH": handleLpush, "LRANGE": handleLrange, "LPOP": handleLpop, "RPOP": handleRpop, |
