redis发布订阅命令
阅读数:86 评论数:0
跳转到新版页面分类
应用软件
正文
psubscribe pattern [pattern] 与subscribe一样,只是可以使用*匹配符匹配多个channel
psubscribe it.* news.* con.*
pubsub channels 查看订阅与发布系统状态
publish channel message 将信息message 发送到 channel
publish it. '111'
punsubscribe [pattern [pattern ]] 退订所有给定模式的频道
subscribe channel [channel] 订阅给定的一个工多个频道信息
subscribe news it
unsubscribe [channel [channel]] 退订给定的频道
相关推荐
一、redis-cli
redis-cli,这个命令将打开redis终端。输入ping命令,如果有pong响应,说明正常启动。
用法:redis-cli [OPTIONS] [cmd [arg [ar
protected-mode是为了禁止公网访问redis,加强redis安全的。它启用的条件,有两个:
(1)没有bind IP
(2)没有设置访问密码。
<
一、单机模式
1、优点
(1)部署简单
(2)成本低
(3)高性能,因为不需要同步数据
2、缺点
(1)可靠性差
二、主从复制模式
主从模式配置很简单,只需要在从节点配置主节点的ip和端口号即可。
在集群模式下,redis在接收到键任何命令时会先计算该键所在的槽,如果改键所在的槽位于当前节点,则直接执行命令,如果改键位于其它节点,则不执行该命令,返回重定向信息。比如hello这
1、sentinel不会存储数据。
2、客户端不会直接从redis中获取信息,而是从sentinel获取信息。
3、sentinel的默认端口是26379
<
redis-cli keys "s*" | xargs redis-cli del
另外还可以用-n指定操作的数据库编号
redis-cli -n 2 keys "s*" | xargs redis-
1、官方文档
The timeout will only be cleared by commands that delete or overwrite the contents of the key
一、作用
如果为空就设置值,并返回1。
如果存在(不为空)不进行操作,并返回0。
二、setnx
setnx是redis命令中的方法。
redis> SETNX mykey "Hello"
(inte