redis的发布订阅功能


本文摘自PHP中文网,作者藏色散人,侵删。

redis提供了简单的发布订阅功能,对于一些合适的场景(比如不要求消费者不在线时也能收到离线消息),比起专业的MQ来说,用起来更简单些。本文主要是记录下怎么在SpringBoot里头使用redis的发布订阅功能

定义生产者

配置

1

2

3

4

5

6

7

8

@Bean

    MyPublisher redisPublisher(RedisConnectionFactory factory) {

        return new MyPublisher( redisTemplate(factory), topic() );

    }

    @Bean

    ChannelTopic topic() {

        return new ChannelTopic( "pubsub:queue" );

    }

生产者实例

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

public class MyPublisher {

    private final RedisTemplate< String, Object > template;

    private final ChannelTopic topic;

    private final AtomicLong counter = new AtomicLong( 0 );

    public MyPublisher( final RedisTemplate< String, Object > template,

                               final ChannelTopic topic ) {

        this.template = template;

        this.topic = topic;

    }

    @Scheduled( fixedDelay = 100 )

    public void publish() {

        template.convertAndSend( topic.getTopic(), "Message " + counter.incrementAndGet() +

                ", " + Thread.currentThread().getName() );

    }

}

定义消费者

配置

1

2

3

4

5

6

7

8

9

10

11

12

//subscribe

    @Bean

    MessageListenerAdapter messageListener() {

        return new MessageListenerAdapter( new MyMessageListener() );

    }

    @Bean

    RedisMessageListenerContainer redisContainer(RedisConnectionFactory factory) {

        final RedisMessageListenerContainer container = new RedisMessageListenerContainer();

        container.setConnectionFactory(factory);

        container.addMessageListener(messageListener(), topic());

        return container;

    }

消费者实例

1

2

3

4

5

6

public class MyMessageListener implements MessageListener {

    @Override

    public void onMessage( final Message message, final byte[] pattern ) {

        System.out.println( "Message received: " + message.toString() );

    }

}

运行

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

  .   ____          _            __ _ _

 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \

( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \

 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )

  '  |____| .__|_| |_|_| |_\__, | / / / /

 =========|_|==============|___/=/_/_/_/

 :: Spring Boot ::        (v1.3.2.RELEASE)

2016-02-16 00:14:08.190  INFO 1481 --- [           main] com.codecraft.RedisdemoApplication      : Starting RedisdemoApplication on Jupiter.local with PID 1481 (/Users/codecraft/workspace/redisdemo/target/classes started by codecraft in /Users/codecraft/workspace/redisdemo)

2016-02-16 00:14:08.193  INFO 1481 --- [           main] com.codecraft.RedisdemoApplication      : No active profile set, falling back to default profiles: default

2016-02-16 00:14:08.242  INFO 1481 --- [           main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@140e5a13: startup date [Tue Feb 16 00:14:08 CST 2016]; root of context hierarchy

2016-02-16 00:14:09.756  INFO 1481 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup

2016-02-16 00:14:09.763  INFO 1481 --- [           main] o.s.c.support.DefaultLifecycleProcessor  : Starting beans in phase 0

2016-02-16 00:14:09.807  INFO 1481 --- [           main] o.s.c.support.DefaultLifecycleProcessor  : Starting beans in phase 2147483647

2016-02-16 00:14:09.897  INFO 1481 --- [           main] com.codecraft.RedisdemoApplication      : Started RedisdemoApplication in 2.215 seconds (JVM running for 2.589)

Message received: "Message 1, pool-1-thread-1"

Message received: "Message 2, pool-1-thread-1"

Message received: "Message 3, pool-1-thread-1"

Message received: "Message 4, pool-1-thread-1"

Message received: "Message 5, pool-1-thread-1"

Message received: "Message 6, pool-1-thread-1"

Message received: "Message 7, pool-1-thread-1"

Message received: "Message 8, pool-1-thread-1"

Message received: "Message 9, pool-1-thread-1"

Message received: "Message 10, pool-1-thread-1"

以上就是redis的发布订阅功能的详细内容,更多文章请关注木庄网络博客

相关阅读 >>

Redis怎么设置密码

解决Redis容器使用Redis.conf启动失败

Redis怎么下载

Redis的rdb和aof之间有什么区别?

linux如何启动Redis

Redis作用有哪些

黑马云课堂nosql之Redis技术视频源码课件分享

关于Redis数据库数量配置、切换及指定数据库

Redis宕机数据如何恢复

Redis雪崩和穿透如何解决

更多相关阅读请进入《Redis》频道 >>


数据库系统概念 第6版
书籍

数据库系统概念 第6版

机械工业出版社

本书主要讲述了数据模型、基于对象的数据库和XML、数据存储和查询、事务管理、体系结构等方面的内容。



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...