user6518699
user6518699

Reputation:

Message persistence - Redis pub/sub

A message published on a channel is received by subscribers at the other end. However, if no active subscriber is found the message is simply lost.

And here is my question, is it possible to modify Redis to support message persistence when subscriber is no active?

Upvotes: 0

Views: 382

Answers (1)

Itamar Haber
Itamar Haber

Reputation: 49932

No, there isn't - messages are sent to all subscribers (if there are any) as they are published, and are not persistable.

Upvotes: 1

Related Questions