Type Alias CacheSettingsBase

CacheSettingsBase: {
    defaultTtl?: TimeSpan | null;
    eventBus?: IEventBus<any>;
    keyPrefixer: KeyPrefixer;
    lazyPromiseFactory?: Factory<AsyncLazy<any>, LazyPromise<any>>;
}

IMPORT_PATH: "@daiso-tech/core/cache"

Type declaration

  • OptionaldefaultTtl?: TimeSpan | null

    You can decide the default ttl value. If null is passed then no ttl will be used by default.

    {null}
    
  • OptionaleventBus?: IEventBus<any>
    import { EventBus } from "@daiso-tech/core/event-bus";
    import { MemoryEventBusAdapter } from "@daiso-tech/core/event-bus/adapters";
    import { KeyPrefixer } from "@daiso-tech/core/utilities";

    new EventBus({
    keyPrefixer: new KeyPrefixer("event-bus"),
    adapter: new MemoryEventBusAdapter()
    })
  • keyPrefixer: KeyPrefixer
  • OptionallazyPromiseFactory?: Factory<AsyncLazy<any>, LazyPromise<any>>

    You can pass a Factory of LazyPromise to configure default settings for all LazyPromise instances used in the Cache class.

    import { LazyPromise } from "@daiso-tech/core/async";

    (invokable) => new LazyPromise(invokable)