Reputation: 483
I am trying to delete keys from redis sentinel.
I keep seeing this error :
Command 'UNLINK' is not a registered Redis command.
Upvotes: 0
Views: 86
Reputation: 4332
UNLINK was introduced with Redis 4.0. I can think of two ways you would get this error:
If you can't change the Redis version you are using, you can use the DEL command instead which was part of Redis 1.0.
Hope this helps and best of luck!
Upvotes: 0