Redis Publish 命令
Redis 教程
· 2019-03-08 08:14:39
Redis Publish 命令用于将信息发送到指定的频道。
语法
redis Publish 命令基本语法如下:
redis 127.0.0.1:6379> PUBLISH channel message
可用版本
>= 2.0.0
返回值
接收到信息的订阅者数量。
实例
redis 127.0.0.1:6379> PUBLISH mychannel "hello, i m here" (integer) 1
点击查看所有 Redis 教程 文章: https://www.codercto.com/courses/l/33.html
Mastering Regular Expressions, Second Edition
Jeffrey E F Friedl / O'Reilly Media / 2002-07-15 / USD 39.95
Regular expressions are an extremely powerful tool for manipulating text and data. They have spread like wildfire in recent years, now offered as standard features in Perl, Java, VB.NET and C# (and an......一起来看看 《Mastering Regular Expressions, Second Edition》 这本书的介绍吧!