I needed to trigger scripts on my Android phone from a cloud VPS without opening ports. Redis felt like overkill for a side project.
So I built Intent Bus a lightweight job coordinator using just Flask + SQLite. Workers poll over HTTP. No broker. No external dependencies.
Stress-tested it at 40 concurrent workers processing 2,000 jobs. Sustained 13.6 jobs/sec with zero database lock-outs or lease hijackings.
Runs on Docker, Raspberry Pi, or any free cloud tier. Workers run anywhere that speaks HTTP including Termux.
Still early but it works well for indie projects and home lab automation. Would love feedback from anyone running similar setups.