redisPublish(rredis)
redisPublish()所属R语言包:rredis
redisPublish
redisPublish
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Publish data to a Redis message channel.
发布一个Redis的消息通道的数据。
用法----------Usage----------
redisPublish(channel, message)
参数----------Arguments----------
参数:channel
The channel name (character).
频道名称(字符)。
参数:message
The message (any type, use RAW type for communication with non-R subscribers.
消息(任何类型,使用RAW-R用户的通信类型。
Details
详细信息----------Details----------
(From the Redis.io documentation): redisSubscribe, redisUnsubscribe and redisPublish implement the Publish/Subscribe messaging paradigm where (citing Wikipedia) senders (publishers) are not programmed to send their messages to specific receivers (subscribers). Rather, published messages are characterized into channels, without knowledge of what (if any) subscribers there may be. Subscribers express interest in one or more channels, and only receive messages that are of interest, without knowledge of what (if any) publishers there are.
(从Redis.io文档):redisSubscribe,redisUnsubscribe和redisPublish实施(引自维基百科)发送者(出版社)编程来发送他们的消息发布/订阅消息传递模式具体的接收器(用户)。相反,不同渠道发布的消息,没有什么(如果有的话)用户可能存在的知识。用户表示有兴趣在一个或多个通道,只接受有兴趣的消息,没有什么(如果有的话)的出版商有知识。
Use the Redis function redisUnsubscribe to unsubscribe from one or more channels. Service incoming messanges on the channels with either redisGetResponse or redisMonitorChannels.
使用Redis的功能redisUnsubscribe退订从一个或多个通道。的渠道是redisGetResponse或redisMonitorChannels的传入messanges服务。
Use of any other Redis after redisSubscribe prior to calling redisUnsubscribe will result in an error.
使用Redis的任何其他后redisSubscribe之前调用redisUnsubscribe将导致错误。
值----------Value----------
A list conforming to the Redis subscribe response message. Each subscribed channel corresponds to three list elements, the header 'subscribe' followed by the channel name and a count indicating the total
符合的Redis的列表订阅响应消息。每个订阅的通道对应头“订阅”三个列表中的元素,其次是频道的名称和计数的总
(作者)----------Author(s)----------
B. W. Lewis
参考文献----------References----------
参见----------See Also----------
redisSubscribe redisUnsubscribe redisPublish redisGetResponse redisMonitorChannels
redisSubscriberedisUnsubscriberedisPublishredisGetResponseredisMonitorChannels
实例----------Examples----------
## Not run: [#不运行:]
redisConnect()
redisPublish('channel1', charToRaw('A raw charachter data message example'))
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|