redis的发布订阅功能实现刷新本地缓存

一般来说,消息队列有两种场景,一种是发布者订阅者模式,一种是生产者消费者模式。利用redis这两种场景的消息队列都能够实现。

定义:
 生产者消费者模式:生产者生产消息放到队列里,多个消费者同时监听队列,谁先抢到消息谁就会从队列中取走消息;即对于每个消息只能被最多一个消费者拥有。(pop操作)
 发布者订阅者模式:发布者生产消息放到队列里,多个监听队列的消费者都会收到同一份消息;即正常情况下每个消费者收到的消息应该都是一样的。

在分布式服务环境下,需要更新各服务的本地缓存使用发布订阅模式。

springboot使用redis的发布订阅模式

引入pom

<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>
        <!-- 对象池,使用redis时必须引入 -->
<dependency>
	<groupId>org.apache.commons</groupId>
	<artifactId>commons-pool2</artifactId>
</dependency>

设置redis监听

@Configuration
public class RedisListenerConfig {
    @Bean
    RedisMessageListenerContainer container(RedisConnectionFactory connectionFactory,
                                            MessageListenerAdapter listenerMsgAdapter,
                                            MessageListenerAdapter listenerNameAdapter) {

        RedisMessageListenerContainer container = new RedisMessageListenerContainer();
        container.setConnectionFactory(connectionFactory);
        // 可以添加多个 messageListener,配置不同的交换机
        container.addMessageListener(listenerMsgAdapter, new PatternTopic("blackWordsMsg:update"));
        container.addMessageListener(listenerNameAdapter, new PatternTopic("blackWordsName:update"));
        return container;
    }

    /**
     * 绑定消息监听者和接收监听的方法,可配置多个
     * @param receiver
     * @return
     */
    @Bean
    MessageListenerAdapter listenerMsgAdapter(SensitiveWordServiceImpl receiver) {
        return new MessageListenerAdapter(receiver, "updateMsgBlackWords");
    }
    /**
     * 绑定消息监听者和接收监听的方法,可配置多个
     * @param receiver
     * @return
     */
    @Bean
    MessageListenerAdapter listenerNameAdapter(SensitiveWordServiceImpl receiver) {
        return new MessageListenerAdapter(receiver, "updateNameBlackWords");
    }

    @Bean
    StringRedisTemplate template(RedisConnectionFactory connectionFactory) {
        return new StringRedisTemplate(connectionFactory);
    }
}

reids广播发送

 redisTemplate.convertAndSend(channel, message);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值