I noticed that requests are cached with workers by default, how does that work? Is it at the browser
I noticed that requests are cached with workers by default, how does that work? Is it at the browser level or with cf?

which makes post requests and gets json as responsePOST requests aren't going to be cached by default.

wrangler tail to see if your worker is being hit or not@cache operator in the schema, which caches specific parts of the schemaINSUFFICIENT_SUBREQUESTS placement status.Cf-Cache-Status is DYNAMIC Cf-Cache-Status is HIT 
wrangler tail@cacheINSUFFICIENT_SUBREQUESTSCf-Cache-StatusCf-Cache-StatusDYNAMICHITmacro_rules! load_file {
($name:literal) => {
include_str!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/some/path",
$name
))
};
}