Spring Redis Delete does not delete key - Stack Overflow
alueOperations does NOT have delete method. So the following won't work:
redisTemplate.opsForValue().delete(key);
Try
redisTemplate.delete(key);
Read full article from Spring Redis Delete does not delete key - Stack Overflow
No comments:
Post a Comment