Class: Couchbase::Management::BucketManager
- Inherits:
-
Object
- Object
- Couchbase::Management::BucketManager
- Defined in:
- lib/couchbase/management/bucket_manager.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/management/bucket_manager.rb more...
Defined Under Namespace
Classes: CreateBucketOptions, DropBucketOptions, FlushBucketOptions, GetAllBucketsOptions, GetBucketOptions, UpdateBucketOptions
Instance Method Summary collapse
-
#create_bucket(settings, options = CreateBucketOptions.new) ⇒ Object
Creates new bucket.
-
#drop_bucket(bucket_name, options = DropBucketOptions.new) ⇒ Object
Removes a bucket.
-
#flush_bucket(bucket_name, options = FlushBucketOptions.new) ⇒ Object
Void.
-
#get_all_buckets(options = GetAllBucketsOptions.new) ⇒ Array<BucketSettings>
Get settings for all buckets.
-
#get_bucket(bucket_name, options = GetBucketOptions.new) ⇒ BucketSettings
Fetch settings of the bucket.
-
#initialize(backend) ⇒ BucketManager
constructor
A new instance of BucketManager.
-
#update_bucket(settings, options = UpdateBucketOptions.new) ⇒ Object
Updates the bucket settings.
Constructor Details
#initialize(backend) ⇒ BucketManager
Returns a new instance of BucketManager.
25 26 27 |
# File 'lib/couchbase/management/bucket_manager.rb', line 25 def initialize(backend) @backend = backend end |
Instance Method Details
#create_bucket(settings, options = CreateBucketOptions.new) ⇒ Object
Creates new bucket
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/couchbase/management/bucket_manager.rb', line 38 def create_bucket(settings, = CreateBucketOptions.new) @backend.bucket_create( { name: settings.name, flush_enabled: settings.flush_enabled, ram_quota_mb: settings.ram_quota_mb, num_replicas: settings.num_replicas, replica_indexes: settings.replica_indexes, bucket_type: settings.bucket_type, ejection_policy: settings.ejection_policy, max_expiry: settings.max_expiry, compression_mode: settings.compression_mode, conflict_resolution_type: settings.conflict_resolution_type, }, .timeout ) end |
#drop_bucket(bucket_name, options = DropBucketOptions.new) ⇒ Object
Removes a bucket
90 91 92 |
# File 'lib/couchbase/management/bucket_manager.rb', line 90 def drop_bucket(bucket_name, = DropBucketOptions.new) @backend.bucket_drop(bucket_name, .timeout) end |
#flush_bucket(bucket_name, options = FlushBucketOptions.new) ⇒ Object
Returns void.
124 125 126 |
# File 'lib/couchbase/management/bucket_manager.rb', line 124 def flush_bucket(bucket_name, = FlushBucketOptions.new) @backend.bucket_flush(bucket_name, .timeout) end |
#get_all_buckets(options = GetAllBucketsOptions.new) ⇒ Array<BucketSettings>
Get settings for all buckets
112 113 114 115 |
# File 'lib/couchbase/management/bucket_manager.rb', line 112 def get_all_buckets( = GetAllBucketsOptions.new) res = @backend.bucket_get_all(.timeout) res.map(&method(:extract_bucket_settings)) end |
#get_bucket(bucket_name, options = GetBucketOptions.new) ⇒ BucketSettings
Fetch settings of the bucket
103 104 105 106 |
# File 'lib/couchbase/management/bucket_manager.rb', line 103 def get_bucket(bucket_name, = GetBucketOptions.new) res = @backend.bucket_get(bucket_name, .timeout) extract_bucket_settings(res) end |
#update_bucket(settings, options = UpdateBucketOptions.new) ⇒ Object
Updates the bucket settings
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/couchbase/management/bucket_manager.rb', line 65 def update_bucket(settings, = UpdateBucketOptions.new) @backend.bucket_update( { name: settings.name, flush_enabled: settings.flush_enabled, ram_quota_mb: settings.ram_quota_mb, num_replicas: settings.num_replicas, replica_indexes: settings.replica_indexes, bucket_type: settings.bucket_type, ejection_policy: settings.ejection_policy, max_expiry: settings.max_expiry, compression_mode: settings.compression_mode, }, .timeout ) end |