Replies: 2 comments 1 reply
|
Had the same issues this week with pages taking 10 seconds. At the moment we are looking if we should build a cache warmer. |
1 reply
|
The alternative of using Tiered caches means rendering pages as HTML, which prevents the dynamic aspects of Astro from being used. Perhaps a solution for many sites? |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Howdy y'all!
Been really liking the direction emdash is going and started rolling out some small blog sites to get off of Wordpress and Webflow.
Started to encounter some odd performance issues of intermittent long and slow page loads and spent the last few days with Claude trying to chase the root cause down.
The short form is wrangler not setting the placement to a single colo so requests from each region triggers a true cold start.
What I was seeing was great performance locally (in region) and then terrible 10+ second page loads and even timeouts from other regions.
"placement": { "region": "aws:us-west-2" },Adding this line to wrangler effectively locks the workers to that colo and keeps the caches warm. The additional hop for other regions is there but far better than constant cold start.
So low traffic, probably even medium level traffic sites should see much more consistent performance using this tactic.
Anyone else have similar experiences?
All reactions