https://github.com/thinkphp/create-message-queue
Create a Message Queue Using a MySQL table.
https://github.com/thinkphp/create-message-queue
Last synced: 3 months ago
JSON representation
Create a Message Queue Using a MySQL table.
- Host: GitHub
- URL: https://github.com/thinkphp/create-message-queue
- Owner: thinkphp
- Created: 2012-06-01T20:33:24.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-01-19T20:30:43.000Z (about 13 years ago)
- Last Synced: 2024-04-14T14:54:23.592Z (almost 2 years ago)
- Language: PHP
- Homepage:
- Size: 97.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Create a Message Queue
----------------------
Using a MySQL table to create a simple message queue for delayed notifications.
Background processing is always a problem in web applications. Users like to get snappy responses from their web pages, but sometimes
processing can take a while. A classic example is web notification mail-out. The users initiates some process that requires mailing
a notice to 100 people, but mailing to 100 people takes a while. Making the server wait for all the mail to go out isn't a good idea.