Setting Individual Cache Times for Requests in TypeScript

i understand to set request caching simply there is Effect.withRequestCaching(true), however is it possible to set individual cache times on a per request basis? the way im interpreting the docs is that using

    Layer.setRequestCache(
      Request.makeCache({ capacity: 256, timeToLive: "60 minutes" })
    )


is done on the service/layer level and effects all requests in that layer...
Was this page helpful?