Class: Couchbase::Management::BucketSettings
- Inherits:
-
Object
- Object
- Couchbase::Management::BucketSettings
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/couchbase/management/bucket_manager.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/management/bucket_manager.rb more...
Instance Attribute Summary collapse
-
#bucket_type ⇒ :couchbase, ...
The type of the bucket.
-
#compression_mode ⇒ :off, ...
The compression mode to use.
-
#conflict_resolution_type ⇒ :timestamp, ...
Conflict resolution policy.
-
#eviction_policy ⇒ :full, ...
Eviction policy to use.
-
#flush_enabled ⇒ Boolean
Whether or not flush should be enabled on the bucket.
-
#max_expiry ⇒ Integer
Value of TTL (expiration) in seconds for new documents created without expiration.
-
#minimum_durability_level ⇒ nil, ...
The minimum durability level.
-
#name ⇒ String
Name of the bucket.
-
#num_replicas ⇒ Integer
Number of replicas for documents.
-
#ram_quota_mb ⇒ Integer
RAM quota in megabytes for the bucket.
-
#replica_indexes ⇒ Boolean
Whether replica indexes should be enabled for the bucket.
-
#storage_backend ⇒ nil, ...
The type of the storage backend of the bucket.
Instance Method Summary collapse
-
#ejection_policy ⇒ Object
deprecated
Deprecated.
Use #eviction_policy instead
-
#ejection_policy=(val) ⇒ Object
deprecated
Deprecated.
Use #eviction_policy= instead
-
#initialize {|self| ... } ⇒ BucketSettings
constructor
A new instance of BucketSettings.
Constructor Details
#initialize {|self| ... } ⇒ BucketSettings
Returns a new instance of BucketSettings.
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 |
# File 'lib/couchbase/management/bucket_manager.rb', line 418 def initialize @bucket_type = :couchbase @name = nil @minimum_durability_level = nil @healthy = true @flush_enabled = false @ram_quota_mb = 100 @num_replicas = 1 @replica_indexes = false @max_expiry = 0 @compression_mode = :passive @conflict_resolution_type = :sequence_number @eviction_policy = :value_only @storage_backend = nil yield self if block_given? end |
Instance Attribute Details
#bucket_type ⇒ :couchbase, ...
Returns the type of the bucket. Defaults to :couchbase
.
360 361 362 |
# File 'lib/couchbase/management/bucket_manager.rb', line 360 def bucket_type @bucket_type end |
#compression_mode ⇒ :off, ...
Returns the compression mode to use.
389 390 391 |
# File 'lib/couchbase/management/bucket_manager.rb', line 389 def compression_mode @compression_mode end |
#conflict_resolution_type ⇒ :timestamp, ...
Returns conflict resolution policy.
392 393 394 |
# File 'lib/couchbase/management/bucket_manager.rb', line 392 def conflict_resolution_type @conflict_resolution_type end |
#eviction_policy ⇒ :full, ...
Eviction policy to use
- :full
-
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
:couchbase
. - :value_only
-
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
:couchbase
. - :no_eviction
-
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
:ephemeral
. - :not_recently_used
-
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
:ephemeral
.
383 384 385 |
# File 'lib/couchbase/management/bucket_manager.rb', line 383 def eviction_policy @eviction_policy end |
#flush_enabled ⇒ Boolean
Returns whether or not flush should be enabled on the bucket. Defaults to false.
348 349 350 |
# File 'lib/couchbase/management/bucket_manager.rb', line 348 def flush_enabled @flush_enabled end |
#max_expiry ⇒ Integer
Returns value of TTL (expiration) in seconds for new documents created without expiration.
386 387 388 |
# File 'lib/couchbase/management/bucket_manager.rb', line 386 def max_expiry @max_expiry end |
#minimum_durability_level ⇒ nil, ...
Returns the minimum durability level.
395 396 397 |
# File 'lib/couchbase/management/bucket_manager.rb', line 395 def minimum_durability_level @minimum_durability_level end |
#name ⇒ String
Returns name of the bucket.
345 346 347 |
# File 'lib/couchbase/management/bucket_manager.rb', line 345 def name @name end |
#num_replicas ⇒ Integer
Returns number of replicas for documents.
354 355 356 |
# File 'lib/couchbase/management/bucket_manager.rb', line 354 def num_replicas @num_replicas end |
#ram_quota_mb ⇒ Integer
Returns RAM quota in megabytes for the bucket.
351 352 353 |
# File 'lib/couchbase/management/bucket_manager.rb', line 351 def ram_quota_mb @ram_quota_mb end |
#replica_indexes ⇒ Boolean
Returns whether replica indexes should be enabled for the bucket.
357 358 359 |
# File 'lib/couchbase/management/bucket_manager.rb', line 357 def replica_indexes @replica_indexes end |
#storage_backend ⇒ nil, ...
Returns the type of the storage backend of the bucket.
363 364 365 |
# File 'lib/couchbase/management/bucket_manager.rb', line 363 def storage_backend @storage_backend end |
Instance Method Details
#ejection_policy ⇒ Object
Use #eviction_policy instead
404 405 406 |
# File 'lib/couchbase/management/bucket_manager.rb', line 404 def ejection_policy @eviction_policy end |
#ejection_policy=(val) ⇒ Object
Use #eviction_policy= instead
411 412 413 |
# File 'lib/couchbase/management/bucket_manager.rb', line 411 def ejection_policy=(val) @eviction_policy = val end |