Stone.js API
    Preparing search index...

    Options for the @Cacheable method decorator.

    interface CacheableOptions {
        key?: CacheKeyOption;
        store?: string;
        tags?: string[];
        ttl?: number;
    }
    Index

    The cache key (defaults to Class.method:<hash(args)>).

    store?: string

    The store to use (defaults to the default store).

    tags?: string[]

    Tags to associate with the cached value.

    ttl?: number

    Time to live, in seconds.