Stone.js API
    Preparing search index...

    Options for the @CacheEvict method decorator.

    interface CacheEvictOptions {
        all?: boolean;
        key?: CacheKeyOption;
        store?: string;
        tags?: string[];
    }
    Index
    all?: boolean

    Clear the whole store.

    The key to delete (defaults to Class.method:<hash(args)>). Ignored when tags/all are set.

    store?: string

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

    tags?: string[]

    Invalidate these tags instead of a single key.