|
|
|
|
|
by matt_heimer
245 days ago
|
|
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 origin, the edge node can sometimes pull the data from another Cloudflare server. It reduced load on my origin. Agree with needing to tune and validate caching, one of the biggest changes my PHP site was tuning apc/OPcache sizes. |
|