您好,登錄后才能下訂單哦!
本篇內容介紹了“怎么用redis實現延遲通知功能”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
業務中有類似等待一定時間之后執行某種行為的需求 , 比如 30 分鐘之后關閉訂單 . 網上有很多使用 Redis 過期監聽的 Demo
redis配置
把notify-keyspace-events Ex 這一行的注釋打開
項目結構如下圖
maven依賴
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>kim-redis</artifactId> <groupId>com.kim</groupId> <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>kim-redis-expiration-notice</artifactId> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> </dependency> </dependencies> </project>
配置文件
server: port: 20103 spring: redis: #數據庫索引 database: 0 host: 127.0.0.1 port: 6379 password: 123456 lettuce: pool: #最大連接數 max-active: 8 #最大阻塞等待時間(負數表示沒限制) max-wait: -1 #最大空閑 max-idle: 8 #最小空閑 min-idle: 0 #連接超時時間 timeout: 10000
啟動類
/** * @Project: kim-redis * @PackageName: com.kim.redis.expiration.notice * @FileName: NoticeApplication.java * @Description: The NoticeApplication is... * @Author: kimwu * @Time: 2020-12-19 14:01:56 */ @SpringBootApplication public class NoticeApplication { public static void main(String[] args) { SpringApplication.run(NoticeApplication.class, args); } }
配置類
@Configuration public class RedisTimeoutConfiguration { @Autowired private RedisConnectionFactory redisConnectionFactory; @Bean public RedisMessageListenerContainer redisMessageListenerContainer() { RedisMessageListenerContainer redisMessageListenerContainer = new RedisMessageListenerContainer(); redisMessageListenerContainer.setConnectionFactory(redisConnectionFactory); return redisMessageListenerContainer; } @Bean public KeyExpiredListener keyExpiredListener() { return new KeyExpiredListener(this.redisMessageListenerContainer()); } }
監聽類
@Slf4j public class KeyExpiredListener extends KeyExpirationEventMessageListener { public KeyExpiredListener(RedisMessageListenerContainer listenerContainer) { super(listenerContainer); } @Override public void onMessage(Message message, byte[] pattern) { String channel = new String(message.getChannel(), StandardCharsets.UTF_8); //過期的key String key = new String(message.getBody(), StandardCharsets.UTF_8); log.info("redis key 過期:pattern={},channel={},key={}", new String(pattern), channel, key); } }
當key過期時,項目宕機了
①寫入redis的key
②手動關停服務,等待redis的key過期
③確認redis的key過期后,重啟服務。服務不會收到通知
當key過期時,redis服務宕機了
①寫入redis的key
②關停redis服務,等待redis的key過期
③啟動redis服務,發現redis的過期key已經不存在了,服務沒有收到通知
redis的鍵過期本身不可靠,并不像rabbitmq一樣保證了可靠性。
當服務本身宕機或者redis宕機時,將無法保證過期的key能夠被消費。
當使用場景對數據完整性不那么精確時,可以使用redis的鍵過期策略。否則不太建議使用redis的鍵過期策略。
“怎么用redis實現延遲通知功能”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。