An advanced standalone job scheduler for #PostgreSQL, offering many advantages over traditional schedulers such as cron and others. #golang
https://t.co/GIeAf4aaKA
0
17
106
Replies
A fast and easy to use database for logs, which can efficiently handle terabytes of logs #golang
https://t.co/hKBi0ROrW8
0
31
340
Rate Limiter in #Golang using net/http I implemented: - -Token bucket algorithm ( https://t.co/Cd2BmxSHo3) each IP gets a bucket with 4 tokens, refills at 2/sec. Every request costs 1 token. No tokens? HTTP 429 until your bucket refills. - Per-IP tracking with an
13
25
401
Go and CPU False sharing One innocent struct layout can make goroutines nuke each other’s CPU cache lines and tank throughput. Fixing a couple struct fields can turn a CPU-melting hot path into smooth scaling. https://t.co/JpAf6WG5ww
#go #golang
2
17
189