The type of objects to cache.
Clears all cached items. Use this method to reset the cache.
Example:
textureCache.clear();
Retrieves a cached item or creates it using the provided factory function if it is not already cached.
The key to identify the item (e.g., a URL or unique identifier).
A function that creates the item synchronously if it is not cached.
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.
The key of the item to remove.
Example:
textureCache.remove(url);
Static
getGets or creates a named cache instance. If a cache with the specified name does not exist, it is created.
The name of the cache. Used to identify the cache instance.
The cache instance for the specified name.
Example:
const textureCache = SyncCache.getInstance<GPUTexture>("textures");
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:
Usage:
SyncCache.getInstance<T>(cacheName)
to get or create a named cache instance.get
method to retrieve or create cached items.clear
orremove
to manage the cache.Example: