sprunk-engine
    Preparing search index...

    A generic, thread-safe, asynchronous caching mechanism for storing and retrieving objects of type <T>. This class is designed to cache objects that are expensive to create (e.g., textures, fonts, shaders) and ensures that multiple requests for the same key are resolved efficiently without redundant operations.

    Features:

    • Singleton instances for named caches.
    • Asynchronous creation of objects using a factory function.
    • "Thread-safe" resolution of concurrent requests for the same key.
    • Cache management (clear, remove).

    Usage:

    1. Use AsyncCache.getInstance<T>(cacheName) to get or create a named cache instance.
    2. Use the get method to retrieve or create cached items.
    3. Optionally, use clear or remove to manage the cache.

    Example:

    const textureCache = AsyncCache.getInstance<GPUTexture>("textures");

    const texture = await textureCache.get(url, async () => {
    // Factory function to create the texture
    return createTexture(url);
    });

    Type Parameters

    • T

      The type of objects to cache.

    Index

    Methods

    • Clears all cached items and resolving promises. Use this method to reset the cache.

      Example:

      textureCache.clear();
      

      Returns void

    • Retrieves a cached item or creates it using the provided factory function if it is not already cached. If the item is being resolved by another request, this method waits for the same promise.

      Parameters

      • key: RequestInfo | URL

        The key to identify the item (e.g., a URL or unique identifier).

      • factory: () => Promise<T>

        A function that creates the item asynchronously if it is not cached.

      Returns Promise<T>

      A promise that resolves to the cached or newly created item.

      Example:

      const texture = await textureCache.get(url, async () => {
      // Factory function to create the texture
      return createTexture(url);
      });
    • Removes a specific item from the cache.

      Parameters

      • key: RequestInfo | URL

        The key of the item to remove.

        Example:

        textureCache.remove(url);
        

      Returns void

    • Gets or creates a named cache instance. If a cache with the specified name does not exist, it is created.

      Type Parameters

      • T

      Parameters

      • cacheName: string

        The name of the cache. Used to identify the cache instance.

      Returns AsyncCache<T>

      The cache instance for the specified name.

      Example:

      const textureCache = AsyncCache.getInstance<GPUTexture>("textures");