787
Yes (programming.dev)
you are viewing a single comment's thread
view the rest of the comments
[-] agilob@programming.dev 121 points 7 months ago

Before nginx was a thing, I worked with a guy who forked apache httpd and wrote this blog in C, like, literally embedded html and css inside the server, so when he made a tpyo or was adding another post he had to recompile the source code. The performance was out of this world.

[-] PieMePlenty@lemmy.world 15 points 7 months ago

Does a file lookup really take that long? Id say the trick was to have just plain old html with no bloat and you're golden.

[-] agilob@programming.dev 29 points 7 months ago

Blog content was stored in memory and it was served with zero-copy to the socket, so yea, it's way faster. It was before times of php-fpm and opcache that we're using now. Back then things were deployed and communicated using tcp sockets (tcp to rails, django or php) or reading from a disk, when the best HDDs were 5600rpm, but rare to find on shared hosting.

[-] THE_STORM_BLADE@lemmy.world 6 points 7 months ago

Couldn't the html be loaded into memory at the beginning of the program and then served whenever? I understand the reading from disk will be slow, but that only happens once in the beginning.

[-] MeanEYE@lemmy.world 3 points 7 months ago

There are plenty of sins people still commit and can commit when it comes to web development. Reading from disk is not the bottleneck. If site is slow most likely it's not the disk read times, database access or anything similar, but silly code that generates the page. It's almost always the code generating the page that's at fault.

load more comments (2 replies)
load more comments (14 replies)
this post was submitted on 15 Nov 2023
787 points (96.1% liked)

Programmer Humor

18253 readers
2130 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS