sprunk-engine
    Preparing search index...

    A generic, thread-safe, synchronous 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.
    • Synchronous creation of objects using a factory function.
    • "Thread-safe" resolution of concurrent requests for the same key.
    • Cache management (clear, remove).

    Usage:

    1. Use SyncCache.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 = SyncCache.getInstance<GPUTexture>("textures");

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

    Type Parameters

    • T

      The type of objects to cache.

    Index

    Methods

    • Clears all cached items. 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.

      Parameters

      • key: RequestInfo | URL

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

      • factory: () => T

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

      Returns T

      The cached or newly created item.

      Example:

      const texture = textureCache.get(url, () => {
      // 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 SyncCache<T>

      The cache instance for the specified name.

      Example:

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