sudo apt install redis-server
sudo vim /etc/redis/redis.conf
# If you run Redis from upstart or systemd, Redis can interact with your
# supervision tree. Options:
# supervised no - no supervision interaction
# supervised upstart - signal upstart by putting Redis into SIGSTOP mode
# supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
# supervised auto - detect upstart or systemd method based on
# UPSTART_JOB or NOTIFY_SOCKET environment variables
# Note: these supervision methods only signal "process is ready."
# They do not enable continuous liveness pings back to your supervisor.
supervised systemd
sudo mkdir /var/run/redis
sudo chown -R redis:redis /var/run/redis
sudo systemctl restart redis-server
sudo systemctl status redis-server
###################<OR>###################
sudo vim /etc/systemd/system/redis.service
[Service]
Type=forking
ExecStart=/usr/bin/redis-server /etc/redis/redis.conf
ExecStop=/bin/kill -s TERM $MAINPID
ExecStartPost=/bin/sh -c "echo $MAINPID > /var/run/redis/redis.pid"
PIDFile=/run/redis/redis-server.pid
# docker-compose.yml
version: "3.9"
services:
redis:
image: redis:latest
container_name: redis
ports:
- 127.20.22.10:6379:6379
networks:
redis:
aliases:
- redis.dev.chorke.org
redis-commander:
image: rediscommander/redis-commander:latest
container_name: redis-commander
depends_on:
- redis
environment:
- REDIS_HOSTS=redis:redis
ports:
- 127.20.22.10:8081:8081
networks:
redis:
aliases:
- cli.redis.dev.chorke.org
networks:
redis:
name: redis
redis-cli
:'
SET expiryNameKey Academia EX 5
TTL expiryNameKey
GET expiryNameKey
SET expiryNameKey Academia
EXPIRE expiryNameKey 5
TTL expiryNameKey
GET expiryNameKey
EXPIREAT expiryNameKey 1665396610
TTL expiryNameKey
GET expiryNameKey
PERSIST expiryNameKey
TTL expiryNameKey
GET expiryNameKey
'
package org.chorke.academia.beans.redis;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import java.util.Date;
import java.util.UUID;
import java.util.concurrent.TimeUnit;
@Component
public class ExpireKeyImpl {
private static final Logger LOG = LoggerFactory.getLogger(ExpireKeyImpl.class);
@Autowired
private RedisTemplate<String, Object> redisTemplate;
private String hashKey = new UUID(new Date().getTime(), 0).toString();
private String key = "name";
@Scheduled(fixedRate = 20000)
public void expireKeyValueWrite() {
String value = "CoverPlus";
redisTemplate.opsForHash().put(key, hashKey, value);
redisTemplate.expire(key, 15, TimeUnit.SECONDS);
LOG.info("Expiry-> PUT: Key: {}, Hash: {} Value: {}", key, hashKey, value);
}
@Scheduled(fixedRate = 5000)
public void expiryKeyValueRead() {
Object value = redisTemplate.opsForHash().get(key, hashKey);
LOG.info("Expiry-> GET: Key: {}, Hash: {} Value: {}", key, hashKey, value);
}
}
package org.chorke.academia.beans.redis;
import org.chorke.academia.dto.SiteQueryDto;
import org.chorke.academia.utility.UUIDUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.ReactiveRedisTemplate;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import reactor.core.publisher.Mono;
import javax.annotation.PostConstruct;
import java.time.Duration;
@Component
public class ReactiveExpireKeyImpl {
private static final Logger LOG = LoggerFactory.getLogger(ReactiveExpireKeyImpl.class);
@Autowired
private ReactiveRedisTemplate<String, Object> reactiveRedisTemplate;
private SiteQueryDto siteQueryDto;
private String hashKey;
private String key;
@PostConstruct
private void init() {
siteQueryDto = SiteQueryDto.builder().code("1000").name("Academia").url("https://chorke.org/academia").build();
hashKey = UUIDUtil.uuid().toString();
key = "name";
}
@Scheduled(fixedRate = 20000)
public void expireKeyValueWrite() {
reactiveRedisTemplate.opsForHash().put(key, hashKey, siteQueryDto).subscribe();
reactiveRedisTemplate.expire(key, Duration.ofSeconds(15)).subscribe();
LOG.info("Expiry-> PUT: Key: {}, Hash: {} Value: {}", key, hashKey, siteQueryDto);
}
@Scheduled(fixedRate = 5000)
public void expiryKeyValueRead() {
Mono<Object> value = reactiveRedisTemplate.opsForHash().get(key, hashKey);
LOG.info("Expiry-> GET: Key: {}, Hash: {} Value: {}", key, hashKey, value.block());
}
}
public interface RedisSubscriber {
String SPRING_REDIS_SUBSCRIBE_URI = "spring-redis://{{spring.redis.host}}:{{spring.redis.port}}?serializer=#redisSerializer&command=SUBSCRIBE&channels=/redis/topic/pub";
// String SPRING_REDIS_SUBSCRIBE_URI = "spring-redis://?connectionFactory=#redisConnectionFactory&serializer=#redisSerializer&command=SUBSCRIBE&channels=/redis/topic/pub";
}
public interface RedisPublisher {
String SPRING_REDIS_PUBLISH_URI = "spring-redis://{{spring.redis.host}}:{{spring.redis.port}}?redisTemplate=#redisTemplate&command=PUBLISH";
// String SPRING_REDIS_PUBLISH_URI = "spring-redis://?connectionFactory=#redisConnectionFactory&redisTemplate=#redisTemplate&command=PUBLISH";
}