Building practical, free-to-use tools for developers and everyday users. Currently: Duko Tools.
This is the kind of slowdown that looks like a scaling problem until you trace it. I’ve hit the same thing building small tools. Usually the first win is doing less work, not adding more servers.
Duko tools
The debounce + index combo is the one most people skip half of, adding an index without debouncing still fires a query per keystroke, and debouncing without an index just delays the same expensive scan. Needed both to actually fix it, which the writeup makes clear.
"Bigger server means doing the same wasteful thing slightly faster" is a good line for the instinct to scale before profiling.