PUNSUBSCRIBE

Syntax

  1. PUNSUBSCRIBE [pattern [pattern ...]]

Time complexity: O(N+M) where N is the number of patterns the client is already subscribed and M is the number of total patterns subscribed in the system (by any client).

Unsubscribes the client from the given patterns, or from all of them if none is given.

When no patterns are specified, the client is unsubscribed from all the previously subscribed patterns. In this case, a message for every unsubscribed pattern will be sent to the client.

Examples

  1. user:1> PSUBSCRIBE h[ae]llo
  2. ---
  3. dragonfly> PUBLISH hallo message
  4. dragonfly> PUBLISH hello message
  5. ---
  6. user:1>
  7. recieved 'message' in hello
  8. recieved 'message' in hallo
  9. user:1> PUNSUBSCRIBE hallo
  10. ---
  11. dragonfly> PUBLISH hallo message2
  12. dragonfly> PUBLISH hello message2
  13. ---
  14. user:1>
  15. recieved 'message' in hello