skip to Main Content

Deleting Multiple Keys in Redis

In my redis database, I'm trying to delete a series of keys that start with: EPOCH_vgsOwnedVehs_ I have tried the following: redis-cli -h 127.0.0.1 -p myport -a mypassword --scan --pattern EPOCH_vgsOwnedVehs_* | xargs redis-cli unlink and redis-cli -h 127.0.0.1 -p…

VIEW QUESTION
Back To Top
Search