Website is served from nine Neovim buffers on my old ThinkPad

57 todsacerdoti 9 8/18/2025, 11:03:22 AM vim.gabornyeki.com ↗

Comments (9)

giancarlostoro · 1h ago
I like that the author put it on a subdomain, probably a smarter move. I have an old laptop I keep installing Linux on and not deciding what I want to do with it. Maybe I should build quirky web servers on it..
NoahZuniga · 1h ago
I'm no expert, but could it be that one contributing factor to the speed is that neovim stores the files in ram while Nginx has to go to disk for every request?
jerf · 39m ago
Computers are fast. HTTP requests are not that hard. You have to go down to position 480-ish on the latest TechEmpower Fortune benchmark [1] to find a framework that is serving ~10,000 requests per second on this simple benchmark, and as that is running on a higher-spec system and possibly with more threads than "this guy's random laptop he had lying around" (although by the time you get that low in the benchmarks I suspect we're into single-thread-only frameworks) you could probably go to all but the last three to get something comparable in performance. (Yes, this is not a comparable task, because I'm making a point about speed of HTTP in general not static file serving.)

Also as mentioned nginx on a blog site will certainly not be hitting the disk.

Broadly speaking in 2025 if a website is slow it is 100% the fault of the app-specific code being run in the web request. I've been HN'd before on a very small VPS but since my blog is now all static content it doesn't even notice... even when it was making 4 or 5 DB reads per page it didn't notice. This web server is basically fast not because "it's fast" but simple because there's no reason for it to be slow. That's how computers are nowadays.

You'd think everyone would know this but I fight a surprising amount of rule-of-thumb estimates from coworkers based on 2000 or 2010 performance of systems, even from developers who weren't developing then! It's really easy to not realize how much performance you're throwing away using a scripting language, and using multiple fancy runtime features that have multiplicative costs at runtime, and make bad use of databases with too many queries, that fail to do even basic optimizations on said databases, and come away thinking that 50 queries per second is a lot, when in fact in 2025 you hardly even need to consider the performance of the web requests themselves until you're into the range of interest until you're in the many thousands per core... and that's just when you need to start thinking about it.

Depending on what you are doing, of course, you may need to be considering how your code runs well before that, if your web requests are intrinsically expensive. But you don't need to worry about the web itself until at least that level of performance, and generally it'll be your code struggling to keep up, not the core web server or framework.

[1]: https://www.techempower.com/benchmarks/#section=data-r23

StopDisinfo910 · 15m ago
> when in fact in 2025 you hardly even need to consider the performance of the web requests themselves until you're into the range of interest until you're in the many thousands per core... and that's just when you need to start thinking about it.

Pretending this is not the case is the bread and butter of so many companies nowadays, saying this is basically like screaming in the void.

You have no idea of the amount of "cloud-native" applications I have seen throwing 10k a month to Databricks for things that could have been done as efficiently by a small server in a cupboard with a proper architecture. The company’s architects did enjoy the conferences through.

At that point, it’s probably better for you to keep pretending and enjoy the graft like everyone else. Unless you are paying of course.

diffuse_l · 1h ago
I'm pretty sure that the website will reside in cache in any case.
yupyupyups · 1h ago
Horrific
yupyupyups · 1h ago
Jokes aside, it's still cool you managed to do that.
barbazoo · 31m ago
I don’t get the joke here
BirAdam · 1h ago
It may be horrific, but it's wonderful too.