Setup: WordPress with CF
So we have some pages that for some reason loaded from disk cache. Example :
General :
Request URL: _PAGE_1
Request Method: GET
Status Code: 200 (from disk cache)
Remote Address: XXX:443
Referrer Policy: strict-origin-when-cross-origin
---
Response :
age: 11467
alt-svc: h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; ma=86400
cf-apo-via: tcache
cf-cache-status: HIT
cf-edge-cache: cache,platform=wordpress
My questions are
- What causing above page to be stored into and loaded from disk cache ? because other pages, that has same setup, is not stored into and loaded from disk cache, example
General :
Request URL: _PAGE_2
Request Method: GET
Status Code: 200
Remote Address: xxxxx:443
Referrer Policy: strict-origin-when-cross-origin
---
Response :
age: 12150
alt-svc: h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; ma=86400
cf-apo-via: tcache
cf-cache-status: HIT
cf-edge-cache: cache,platform=wordpress
- This seem to be a reason for causing issue with login state: user logged in and then visit _PAGE_1, not showing them as logged in, because _PAGE_1 was loaded from their browser disk instead of hitting the server.