Skip to content

Instantly share code, notes, and snippets.

@aptxx
Created May 21, 2022 18:31
Show Gist options
  • Save aptxx/9476bca6b8083a0eee84dfc4af572b4b to your computer and use it in GitHub Desktop.
Save aptxx/9476bca6b8083a0eee84dfc4af572b4b to your computer and use it in GitHub Desktop.
redis operations
# delete keys
redis-cli --scan --pattern users:* | xargs redis-cli unlink
# expire keys after 600 seconds
redis-cli --scan --pattern users:* | xargs -L1 -I{} redis-cli expire {} 600
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment