``` const cache_key = c.req.url let response = await caches.default.match(cache_key) if (response) { console.debug('Cached') return response }```