标签: redis publish-subscribe
我正在开发一个多客户端实时分析应用程序,其中一个客户端有许多执行某些操作的用户。 例如agentJoined,agentLeft,customerJoined,customerLeft,newCustomerAdded等,最多约40个事件。客户范围可以是任意数量。那么Redis Pub / Sub模式应该是什么?应该将客户端作为通道,将事件类型发布为有效负载,或者将事件类型必须作为通道并将客户端信息作为有效负载发送。
agentJoined
agentLeft
customerJoined
customerLeft
newCustomerAdded