Skip to content

Instantly share code, notes, and snippets.

@AseemWangoo
Created October 19, 2022 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AseemWangoo/7bd3be28d2308394690a577976bce643 to your computer and use it in GitHub Desktop.
Save AseemWangoo/7bd3be28d2308394690a577976bce643 to your computer and use it in GitHub Desktop.
redis cli commands
% docker exec -it redis redis-cli
127.0.0.1:6379> set key value
OK
127.0.0.1:6379> get key
"value"
127.0.0.1:6379> del key
(integer) 1
127.0.0.1:6379>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment