Publish/Subscribe
참고 자료
Articles at redis.io - Overview of Publish / Subscribe - Documentation for Publish / Subscribe commands
1. Pub/Sub¶
- Publish/Subscribe does not guarantee delivery!
2. Pub/Sub Commands¶
Simple Syndication
PUBLISH channel message
SUBSCRIBE channel [channel ... ]
UNPUBLISH [channel [channel ... ]]
2.1. PUBLISH
¶
PUBLISH
명령은 단일 채널에 message 를 발행한다.- message 는 임의의 바이너리 문자열이 될 수 있다.
- text, numbers or binary data, serialized json blob
2.2 SUBSCRIBE
¶
- 단일 채널을 구독한다.
- wildcard 는 허용되지 않는다.
Patterned Syndication
PSUBSCRIBE pattern [pattern ... ]
PUNPUBLISH [pattern [pattern ... ]]
Admin
PUBSUB subcommand [argument [argument ... ]]
2.5 PUBSUB
¶
Last update:
May 23, 2023
Created: May 23, 2023
Created: May 23, 2023