• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

redisruby客户端学习(四)

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

redis是一个快速、稳定的发布/订阅的信息系统。

这里有相关的介绍

可以用这个发布订阅系统,实现聊天功能。

1,假设有两个用户,分别是user1和user2,各创建一个redis连接。

u1 = Redis.new
u2 = Redis.new

2,u1订阅一个频道channel1

u1.subscribe "channel1" do |on|
    on.subscribe do |channel, subscriptions|
        puts "Subscribed to ##{channel} (#{subscriptions} subscriptions)"
    end

    on.message do |channel, msg|
        puts "#{channel}: #{msg}"
    end
end

 u1进入监听等待状态

#Subscribed to #channel1 (1 subscriptions)

3,u2发布一条消息

u2.publish 'channel1', 'hello'

4,u1收到新的消息,并打印出来

#Subscribed to #channel1 (1 subscriptions)
#channel1: hello

5,block块中,有三种回调类型,已经看到的前2种,subscribe和message,第三种是unsubscribe。

redis.subscribe(:one, :two) do |on|
    #channel:当前的频道,subscriptions: 第几个频道
    on.subscribe do |channel, subscriptions|
      puts "Subscribed to ##{channel} (#{subscriptions} subscriptions)"
    end
    #channel:当前的频道,message: 消息内容
    on.message do |channel, message|
      puts "##{channel}: #{message}"
      redis.unsubscribe if message == "exit"
    end
    #
    on.unsubscribe do |channel, subscriptions|
      puts "Unsubscribed from ##{channel} (#{subscriptions} subscriptions)"
    end
  end

ps:代码来自https://github.com/redis/redis-rb/blob/master/examples/pubsub.rb

可以在消息定义各种规则,来实现频道的管理。

6,下面介绍一下发布和订阅相关的一些方法。

psubscribe。订阅给定的模式。

redis.psubscribe('c*') do |on|
    on.psubscribe do |channel, subscriptions|
      puts "Subscribed to ##{channel} (#{subscriptions} subscriptions)"
    end

    on.pmessage do |pattern, channel, message|
      puts "##{channel}: #{message}"
      redis.unsubscribe if message == "exit"
    end

    on.punsubscribe do |channel, subscriptions|
      puts "Unsubscribed from ##{channel} (#{subscriptions} subscriptions)"
    end
  end

和subscribe的区别是参数是匹配的模式,block中的三个方法也对应的变化了。

 

 小结:这个主要介绍了redis中的发布和订阅相关的使用例子。一个用户可以订阅多个频道,也可以向多个频道发布消息。

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
macos安裝RubyMacOSX安装Ruby发布时间:2022-07-14
下一篇:
ruby首字母大写发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap