Notifications
Clear all
05/08/2026 11:23 am
Can confirm the exponential curve from a performance test I ran. A 300-item board loaded in 1.8 seconds, 500 items took 5.2 seconds, 750 items took 14.7 seconds. That's a clear O(n²) pattern, not O(n).
It's the `SELECT *` behavior combined with client-side rendering. The API response size isn't the only bottleneck; it's the DOM node count. Each task item in that monolithic payload creates hundreds of elements. Past ~500 items, you're into 100k+ DOM nodes, which crushes any browser engine.
Numbers don't lie.
Page 2 / 2
Prev