6 ms·
>might need to migrate over to something else for the blog, with a proper cache Never Update _Anything_ :)
by cjalmeida 2y ago
>might need to migrate over to something else for the blog, with a proper cache
Never Update _Anything_ :)
- KronisLV 2y agoI am very much tempted not to because it works under lower loads, could just put it on a faster server, but how could I pass up the chance to write my own CMS (well, a better one than the previous ones I've done)? That's like a rite of passage. But yes, the irony isn't lost on me, I just had to go for that title.
- stavros 2y agoIf you have to write your own CMS, make it compile to static files. I did that with Django, used Django-distill, and it's hands down the best static site generator I've ever used. My site never needs updates and never goes down under any amount of load.
- hipadev23 2y ago“static files” are nothing more than no-TTL caching strategy with manual eviction.
- stavros 2y agoOK.
- brirec 2y agoYou’re not wrong… but “static files” ultimately are infinitely less complex than any dynamic CMS, and require no effort or brain power to migrate between (even bottom-of-the-barrel) providers
- ksec 2y agoI sort of not understand why we are not using static Files more often now. In the old days we need CMS mostly because generating links and update to certain pages were expensive. Hard Disk were slow and memory were expensive. Now we have SSDs that eliminate 99.9999% of the problem.
- augusto-moura 2y agoIf you are using open source you can always support your own old versions ~joking but not really~ Of course security updates are very hard, but if an old version has some good community you have the option of forking or upstreaming the updates yourself
- type0 2y ago> ~joking but not really~ For some languages and applications it can be trivial to backport the changes then trying to keep up with the new features. If it's tested and stable it will likely be more stable than a new version, I do this for some smaller programs and I'm not even a real programmer but more of a hobbyist