Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/live/runtime/caches/tiered.ts

Git-based Visual CMS for Deno, </> htmx and Tailwind apps. Deploy on any Deno-compatible host.
Latest
import * as live from "https://deno.land/x/live@1.74.1/runtime/caches/tiered.ts";

Functions

Creates a tiered cache that combines multiple cache storages into a single cache storage. The tiered cache will prioritize the caches in the order they are provided. When a request is made to the tiered cache, it will first check if the request is available in any of the caches. If a match is found, the response will be returned and the caches will be updated based on the cache priority. If no match is found, the request will be fetched and stored in the caches based on the cache priority.