zlacker

[return to "Choose Postgres queue technology"]
1. andrew+Wc[view] [source] 2023-09-24 22:08:34
>>bo0tzz+(OP)
You don't even need a database to make a message queue. The Linux file system makes a perfectly good basis for a message queue since file moves are atomic.

My guess is that many people are implementing queuing mechanisms just for sending email.

You can see how this works in Arnie SMTP buffer server, a super simple queue just for emails, no database at all, just the file system.

https://github.com/bootrino/arniesmtpbufferserver

◧◩
2. repire+Xg[view] [source] 2023-09-24 22:45:26
>>andrew+Wc
That’s a key property leveraged in the Maildir mailbox format.
[go to top]