Articles
Notes techniques, retours d'expérience, publications.
- Why I Quit Postgres for SQLite — and Stopped Caching Anything
## The switch Six months into building HOROS, I was running PostgreSQL. Sessions, permissions, user data, job queues — everything went through a networked database. It worked. It also meant every p...
- Separate Your Planes: Why Control and Data Should Never Share a Primitive
## The problem nobody names A Go service handles HTTP requests. Some are metadata lookups (fast, small). Some are blob writes (slow, large). They share the same worker pool. A 50MB upload monopolizes...