CacheOptionsFactory

Interface describing a CacheOptionsFactory. Providers supplying configuration options for the Cache module must implement this interface.


interface CacheOptionsFactory<StoreConfig extends Record<any, any> = Record<string, any>> {
  createCacheOptions(): Promise<CacheModuleOptions<StoreConfig>> | CacheModuleOptions<StoreConfig>
}

See also

Methods

createCacheOptions()


createCacheOptions(): Promise<CacheModuleOptions<StoreConfig>> | CacheModuleOptions<StoreConfig>

Parameters

There are no parameters.

Returns

Promise<CacheModuleOptions<StoreConfig>> | CacheModuleOptions<StoreConfig>