----------------------------------------------------------------------------- * CLUSTER Pub/Sub support * * For now we do very little, just propagating PUBLISH messages across the whole * cluster. In the future we'll try to get smarter and avoiding propagating those * messages to hosts without receives for a given channel. * -------------------------------------------------------------------
| 2894 | * messages to hosts without receives for a given channel. |
| 2895 | * -------------------------------------------------------------------------- */ |
| 2896 | void clusterPropagatePublish(robj *channel, robj *message) { |
| 2897 | clusterSendPublish(NULL, channel, message); |
| 2898 | } |
| 2899 | |
| 2900 | /* ----------------------------------------------------------------------------- |
| 2901 | * SLAVE node specific functions |
no test coverage detected