@digitalocean/dots - v1.0.1
    Preparing search index...
    interface Eviction_policyPutRequestBody {
        additionalData?: Record<string, unknown>;
        evictionPolicy?: null | Eviction_policy_model;
    }

    Hierarchy

    • AdditionalDataHolder
    • Parsable
      • Eviction_policyPutRequestBody
    Index

    Properties

    additionalData?: Record<string, unknown>

    Gets the additional data for this object that did not belong to the properties.

    The additional data for this object.

    evictionPolicy?: null | Eviction_policy_model

    A string specifying the desired eviction policy for a Caching or Valkey cluster.- noeviction: Don't evict any data, returns error when memory limit is reached.- allkeys_lru: Evict any key, least recently used (LRU) first.- allkeys_random: Evict keys in a random order.- volatile_lru: Evict keys with expiration only, least recently used (LRU) first.- volatile_random: Evict keys with expiration only in a random order.- volatile_ttl: Evict keys with expiration only, shortest time-to-live (TTL) first.