does the Minimum edge cache TTL apply to all scenarios including worker cache api and\or custom max-age headers?
does setting max-age:60 will make the url to cached for only 1 minute or the minimum, or in that case the max-age will be changes based on the ttl minimum value?
and does this will work from worker?
response = await fetch(event.request, {
cf: {
cacheTtl: 1
}
});
event.waitUntil(cache.put(event.request, response.clone()))
}