启动订阅和发布客户端
在订阅客户端redis 127.0.0.1:6379> PSUBSCRIBE shareReading messages... (press Ctrl-C to quit)
1) "psubscribe"
2) "share"
3) (integer) 1表示客户端订阅share通道其中1表示该客户端中连的接订阅通道数为1
在发布客户端,为该通道发布一个消息
redis 127.0.0.1:6379> publish share "share"
(integer) 1其中1表示有1个连接接收到这个消息
订阅客户端显示:
1) "pmessage"//消息类型
2) "share"//我订阅的通道名
3) "share"//我接收的通道名
4) "share"//消息内容ps:另附java实现订阅代码:
- public static void main(String[] args) {
- String cmd = "subscribe share
";
- SocketChannel client = null;
- try {
- SocketAddress address = new InetSocketAddress("localhost", 6379);
- client = SocketChannel.open(address);
- client.configureBlocking(false);// 设置为异步
- ByteBuffer buffer = ByteBuffer.allocate(100);
- buffer.put(cmd.getBytes());
- buffer.clear();
- client.write(buffer);
- System.out.println("发送数据: " + new String(buffer.array()));
-
- while (true) {
- buffer.flip();
- int i = client.read(buffer);
- if (i > 0) {
- byte[] b = buffer.array();
- System.out.println("接收数据: " + new String(b));
- break;
- }
- }
- } catch (Exception e) {
- try {
- client.close();
- } catch (IOException e1) {
- e1.printStackTrace();
- }
- e.printStackTrace();
- }
- }
Redis数据类型及操作Redis配置文件redis.conf相关资讯 Redis配置
- Redis配置文件参数说明及命令操作 (今 12:05)
- Linux下Redis主从配置 (05月18日)
- redis配置详解(中英文) (01月14日)
| - Redis集群配置笔记 (08月11日)
- Linux服务器上Redis安装和配置 (04月08日)
- Redis高级特性的配置及使用 (08/08/2015 13:08:56)
|
本文评论 查看全部评论 (0)