Enum EjectionPolicy

java.lang.Object
java.lang.Enum<EjectionPolicy>
com.couchbase.client.java.manager.bucket.EjectionPolicy
All Implemented Interfaces:
Serializable, Comparable<EjectionPolicy>, java.lang.constant.Constable

@Volatile @Deprecated public enum EjectionPolicy extends Enum<EjectionPolicy>
Deprecated.
Please use EvictionPolicyType instead.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Deprecated.
    During ejection, everything (including key, metadata, and value) will be ejected.
    Deprecated.
    Couchbase Server keeps all data until explicitly deleted, but will reject any new data if you reach the quota (dedicated memory) you set for your bucket.
    Deprecated.
    When the memory quota is reached, Couchbase Server ejects data that has not been used recently.
    Deprecated.
    During ejection, only the value will be ejected (key and metadata will remain in memory).
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.
     
    Deprecated.
    Returns the enum constant of this type with the specified name.
    Deprecated.
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • VALUE_ONLY

      public static final EjectionPolicy VALUE_ONLY
      Deprecated.
      During ejection, only the value will be ejected (key and metadata will remain in memory).

      Value Ejection needs more system memory, but provides better performance than Full Ejection.

      This value is only valid for buckets of type BucketType.COUCHBASE.

    • FULL

      public static final EjectionPolicy FULL
      Deprecated.
      During ejection, everything (including key, metadata, and value) will be ejected.

      Full Ejection reduces the memory overhead requirement, at the cost of performance.

      This value is only valid for buckets of type BucketType.COUCHBASE.

    • NO_EVICTION

      public static final EjectionPolicy NO_EVICTION
      Deprecated.
      Couchbase Server keeps all data until explicitly deleted, but will reject any new data if you reach the quota (dedicated memory) you set for your bucket.

      This value is only valid for buckets of type BucketType.EPHEMERAL.

    • NOT_RECENTLY_USED

      public static final EjectionPolicy NOT_RECENTLY_USED
      Deprecated.
      When the memory quota is reached, Couchbase Server ejects data that has not been used recently.

      This value is only valid for buckets of type BucketType.EPHEMERAL.

  • Method Details

    • values

      public static EjectionPolicy[] values()
      Deprecated.
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static EjectionPolicy valueOf(String name)
      Deprecated.
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • alias

      public String alias()
      Deprecated.