Stone.js API
    Preparing search index...

    Options for the @CachePut method decorator.

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

    The key to write (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.