https://github.com/fchristenson/message-queues
https://github.com/fchristenson/message-queues
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fchristenson/message-queues
- Owner: fChristenson
- Created: 2020-01-05T08:19:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T19:21:16.000Z (over 2 years ago)
- Last Synced: 2025-01-26T03:42:41.175Z (6 months ago)
- Language: JavaScript
- Size: 219 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Message queues
## What we will cover
- What is a message queue?
- What are their use case?
- An example use case## Notes
Message queues are a storage system where we can publish a message to a temporary storage service, you can
almost think of them as a small database for message that will be published to other services who want to
know when something has happened.A great example is that something has happened in a MicroService architecture and you want other services to
know that it happened so they can act on this information.