当前位置:   article > 正文

redis 过期键监听 demo_redis监控过期时间demo

redis监控过期时间demo
  • redis监听器容器:
package com.dgis.tis.master.util.redis;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.listener.RedisMessageListenerContainer;

/**
 * @description: redis监听器容器
 * @create: 2022/07/08
 */
@Configuration
public class RedisListenerConfig {
    @Bean
    @Primary
    public RedisMessageListenerContainer container(RedisConnectionFactory connectionFactory) {
        RedisMessageListenerContainer container = new RedisMessageListenerContainer();
        container.setConnectionFactory(connectionFactory);
        return container;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • key 过期监听器:
package com.dgis.tis.master.util.redis;

import lombok.extern.slf4j.Slf4j;
import org.springframework.data.redis.connection.Message;
import org.springframework.data.redis.listener.KeyExpirationEventMessageListener;
import org.springframework.data.redis.listener.RedisMessageListenerContainer;
import org.springframework.stereotype.Component;


/**
 * @description: key 过期监听器
 * @create: 2022/07/08
 */
@Component
@Slf4j
public class RedisKeyExpirationListener extends KeyExpirationEventMessageListener {

    private final RedisUtil redisUtil;
    public RedisKeyExpirationListener(RedisMessageListenerContainer listenerContainer, RedisUtil redisUtil) {
        super(listenerContainer);
        this.redisUtil = redisUtil;
    }

    @Override
    public void onMessage(Message message, byte[] pattern) {
//        String key = new String(message.getBody());
        String expiredKey = message.toString();
        log.info("expiredKey:{}", expiredKey);
        if(expiredKey.startsWith("wxToken")){
            log.info("wxToken已过期");
            // 删除该key
            redisUtil.removeValue("wxToken");
        }
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36

redis 配置修改conf:

notify-keyspace-events Ex
  • 1

注:只能获取到失效的 key 而获取不到 value,在设计 key 的时候可以考虑把 value 一并放到 key,然后根据规则取出 value

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小桥流水78/article/detail/925186
推荐阅读
相关标签
  

闽ICP备14008679号