diff options
| author | alex <[email protected]> | 2026-07-08 21:11:52 +0200 |
|---|---|---|
| committer | alex <[email protected]> | 2026-07-08 21:11:52 +0200 |
| commit | 917b08a98cb310d05170d2ef3de9847419e3990e (patch) | |
| tree | d2c797c86ea23beb8e6926239070ff2391d6edd4 /main.go | |
| parent | aac1dd50b61090461cefc0263f065140be4bf50b (diff) | |
| download | redis-clone-917b08a98cb310d05170d2ef3de9847419e3990e.tar.xz redis-clone-917b08a98cb310d05170d2ef3de9847419e3990e.zip | |
fixed bug regarding DEL
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ type handlerFunc func(net.Conn, []string) var commandRegistry = map[string]handlerFunc{ "GET": handleGet, "SET": handleSet, -// "DEL": handleDel, + "DEL": handleDel, "EXISTS": handleExists, /* "INCR": handleIncr, "DECR": handleDecr, |
