skip to Main Content

How to build Redis 6 with TLS on Mac

I want to use TLS with Redis on Mac (macOS 10.15.4, kernel: Darwin 19.4.0). This is what I tried according to Documentation: export BUILD_TLS=yes mkdir redis && cd redis curl -O http://download.redis.io/redis-stable.tar.gz tar xzvf redis-stable.tar.gz cd redis-stable make BUILD_TLS=yes make…

VIEW QUESTION

Spring data redis key expiration

In spring data redis we have two variables. RedisTemplate<Key, Value> redisTemplate; HashOperations<Key, HashKey, HashValue> hashOperations; There is a method expireAt(String key, Date date) inside RedisTemplate. So if I want to set an expiry for a particular hash key I can…

VIEW QUESTION
Back To Top
Search