Command | Syntax | Example | Output |
---|---|---|---|
SET | SET key value | SET myKey "Hello" |
"OK" |
GET | GET key | GET myKey |
"Hello" |
DEL | DEL key[...key] | DEL myKey |
1 |
INCR | INCR key | INCR myLikes |
n+1 |
MGET | MGET key[...key] | GET myKey myLikes invalidKey |
"Hello" 1 nil |
INCRBY | INCRBY key number | INCRBY myLikes -1 |
n-1 |
INCRBYFLOAT | INCRBYFLOAT key float | INCRBYFLOAT myLikes 0.01 |
n+0.01 |
-
Notifications
You must be signed in to change notification settings - Fork 0
Redis clone made in go to learn the language inspired by @antunesleo
License
githiago-f/redis-mini
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Redis clone made in go to learn the language inspired by @antunesleo
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published