Enum EjectionPolicy
- All Implemented Interfaces:
Serializable
,Comparable<EjectionPolicy>
Deprecated.
-
Enum Constant Summary
Enum ConstantDescriptionDeprecated.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 TypeMethodDescriptionalias()
Deprecated.static EjectionPolicy
Deprecated.Returns the enum constant of this type with the specified name.static EjectionPolicy[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
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
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
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
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
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
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 nameNullPointerException
- if the argument is null
-
alias
Deprecated.
-
EvictionPolicyType
instead.