Skip to content

Instantly share code, notes, and snippets.

@ivanrvpereira
Forked from patrickhulce/findkeys.sh
Created March 20, 2018 17:42
Show Gist options
  • Save ivanrvpereira/eeaace3b553dcbf553d8d36f0f65cb23 to your computer and use it in GitHub Desktop.
Save ivanrvpereira/eeaace3b553dcbf553d8d36f0f65cb23 to your computer and use it in GitHub Desktop.
Find all keys without a TTL in Redis
#!/bin/sh
redis-cli keys "*" | head -n $1 > keys.txt
cat keys.txt | xargs -n 1 -L 1 redis-cli ttl > ttl.txt
paste -d " " keys.txt ttl.txt | grep .*-1$ | cut -d " " -f 1 | redis-cli del
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment