Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fchristenson/message-queues
https://github.com/fchristenson/message-queues
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fchristenson/message-queues
- Owner: fChristenson
- Created: 2020-01-05T08:19:59.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T19:21:16.000Z (about 2 years ago)
- Last Synced: 2023-08-20T07:22:01.786Z (over 1 year ago)
- Language: JavaScript
- Size: 219 KB
- Stars: 0
- Watchers: 1
- 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.