``` const cache key c req url

 const cache_key = c.req.url
  let response = await caches.default.match(cache_key)


  if (response) {
    console.debug('Cached')
    return response
  }
Was this page helpful?