https://undeadly.org/cgi?action=article;sid=20260319125859 #OpenBSD #4Gbps #DigitalStoneAge #FutureIsNow #NetworkRevolutionary #TechNews #HackerNews #ngated
OpenBSD: PF queues break the 4 Gbps barrier
https://undeadly.org/cgi?action=article;sid=20260319125859
#HackerNews #OpenBSD #PF #queues #4Gbps #barrier #networking #security #performance

Last year we took over a Symfony e-commerce application that was struggling under a combination of high customer traffic and a constant flood of write operations from external systems: product updates, price changes, availability feeds, all hitting the application simultaneously. The Messenger setup was already in place. Messages were being
Email Sender Throttle by Domain
Avoid spam flags with per-domain caps and backoff.
#php #python #email #throttling #backoff #deliverability #queues #reliability #growth #viralcoding

Airbus A320 software recall: NZ passengers speak of ‘chaos’, hours-long queues as issue paralyses airports
Birthday plan ‘out the window’ One Wellington-bound passenger said their day began with a text message at 9.30am…
#NewsBeep #News #Headlines #a320 #airbus #Airports #as #chaos #hourslong #issue #NewZealand #NZ #of #paralyses #passengers #queues #Recall #Software #speak
https://www.newsbeep.com/278616/
Lockless MPSC/SPMC/MPMC queues are not queues
https://alexsaveau.dev/blog/opinions/performance/lockness/lockless-queues-are-not-queues
#HackerNews #Lockless #Queues #MPSC #SPMC #MPMC #Performance #Programming #Concurrency
Lockless queues let multiple cores communicate with each other without mutexes, typically to move work around for parallel processing. They come in four variants: {single,multi}-producer {single,multi}-consumer. A producer gives data to a consumer, each of which can be limited to a single thread (i.e. a single-{producer,consumer}) or shared across multiple threads. But only the single-producer single-consumer (SPSC) queue is actually a queue!