ping-identity
    Preparing search index...

    Enumeration CacheStrategy

    Native cache strategy values used by the TurboModule bridge. These must be string literals to satisfy React Native codegen.

    Index

    Enumeration Members

    Enumeration Members

    CACHE: "cache"

    Always cache data in memory. Improves performance by reducing disk I/O. Use for frequently accessed, less sensitive data.

    CACHE_ON_FAILURE: "cache_on_failure"

    Cache data only when storage operations fail. Provides a fallback mechanism for transient storage failures.

    NO_CACHE: "no_cache"

    Do not cache data in memory. All operations read/write directly from/to persistent storage. Use for sensitive data that should not remain in memory.