Ironically, Cloudflare is preventing me from reading the site: Sorry, you have been blocked You are unable to access rickconlee.com
How to Run WordPress completely from RAM
51–60 of 61 posts
Re: How to Run WordPress completely from RAM
#52Alternatively, copy everything to /dev/shm before launch, call it a day. Now everything is loaded from RAM. Updates involve copying from source directory to /dev/shm then restart.
How is that different from what the article documents?
Re: How to Run WordPress completely from RAM
#53Re: How to Run WordPress completely from RAM
#54Earlier quoted context omitted.
Its not the the data is only cached by Cloudflare in one place, its that it is cached at the edge node nearest to the user that last made the request. Geographically different users will likely hit a completely different edge node that needs to hit your origin to populate its cache. Cloudflare has a free tiered caching option that helped my site. Instead of cache missing on local edge nodes always having to hit the o…
Cloudflare will actually slow down TTFB for small, less popular sites since they don't maintain a keepalive connection to the origin. This means you pay an additional TCP/TLS setup cost from the Cloudflare POP to the origin which is worse than a direct connection. I also tried testing a smart-placed worker and cloudflared, neither of which seemed to help.
You don't think taking a small hit on TTFB is a good trade off for the improved scaling that a CDN offers?
Gone are the days that you don't have to worry about bot traffic being a DDOS. An unresponsive site is a lot worse than an extra TCP/TLS setup.
Re: How to Run WordPress completely from RAM
#55Ironically, Cloudflare is preventing me from reading the site: Sorry, you have been blocked You are unable to access rickconlee.com
Out of curiosity do you know why Cloudflare has blocked you? Browser integrity check, IP reputation, etc? I'm trying to have more lax settings for my static website, and would love to make sure it's as accessible as possible.
Cloudflare Ray ID: 98d7e0b319f3f390
Re: How to Run WordPress completely from RAM
#56Pagespeed gives this man's site a 72: https://pagespeed.web.dev/analysis/https-rickconlee-com/foj4... And my plain ol' wordpress an 83: https://pagespeed.web.dev/analysis/http-egypt-urnash-com/a1r... My site's a WP that I started up in like 2012 and it's been running continuously ever since, it's sitting behind Apache, it's got a cache plugin, nothing special at all.
Re: How to Run WordPress completely from RAM
#57Re: How to Run WordPress completely from RAM
#58Re: How to Run WordPress completely from RAM
#59Why not just use a reverse proxy that caches pages into RAM, or use Cloudflare or such?
Re: How to Run WordPress completely from RAM
#60> It’s mounted in a tmpfs-backed RAMDisk > Because even well-cached files still require filesystem-level permission checks, read cycles, and sometimes fragmentation reassembly. I'd assume tmpfs still requires filesystem-level permission checks, or am I mistaken?