Class: Couchbase::SamplingScan
- Inherits:
-
Object
- Object
- Couchbase::SamplingScan
- Defined in:
- lib/couchbase/key_value_scan.rb
Overview
A sampling scan performs a scan that randomly selects documents up to a configured limit
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(limit, seed = nil) ⇒ SamplingScan
constructor
Creates an instance of a SamplingScan scan type.
- #to_backend ⇒ Object private
Constructor Details
#initialize(limit, seed = nil) ⇒ SamplingScan
Creates an instance of a SamplingScan scan type
105 106 107 108 |
# File 'lib/couchbase/key_value_scan.rb', line 105 def initialize(limit, seed = nil) @limit = limit @seed = seed end |
Instance Attribute Details
#limit ⇒ Integer
97 98 99 |
# File 'lib/couchbase/key_value_scan.rb', line 97 def limit @limit end |
#seed ⇒ Integer?
98 99 100 |
# File 'lib/couchbase/key_value_scan.rb', line 98 def seed @seed end |
Instance Method Details
#to_backend ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
111 112 113 114 115 116 117 |
# File 'lib/couchbase/key_value_scan.rb', line 111 def to_backend { scan_type: :sampling, limit: @limit, seed: @seed, } end |