bitbadgesjs-sdk - v0.22.7
    Preparing search index...

    Interface iClaimCachePolicy<T>

    interface iClaimCachePolicy<T extends NumberType> {
        alwaysPermanent?: boolean;
        permanentAfter?: T;
        ttl?: T;
    }

    Type Parameters

    Implemented by

    Index

    Properties

    alwaysPermanent?: boolean

    Permanent once the claim is calculated once. We will cache results indefinitely.

    permanentAfter?: T

    Permanent after a specific timestamp. Until then, we use the ttl. We will cache results indefinitely after this timestamp.

    ttl?: T

    The number of seconds to cache the result. Default is 5 minutes (300 seconds) if none is specified.

    Note: This may be overridden by other options