Class: Couchbase::SamplingScan
- Inherits:
-
Object
- Object
- Couchbase::SamplingScan
- Defined in:
- lib/couchbase/key_value_scan.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/key_value_scan.rb more...
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.
Constructor Details
#initialize(limit, seed = nil) ⇒ SamplingScan
Creates an instance of a SamplingScan scan type
111 112 113 114 |
# File 'lib/couchbase/key_value_scan.rb', line 111 def initialize(limit, seed = nil) @limit = limit @seed = seed end |
Instance Attribute Details
#limit ⇒ Integer
101 102 103 |
# File 'lib/couchbase/key_value_scan.rb', line 101 def limit @limit end |
#seed ⇒ Integer?
102 103 104 |
# File 'lib/couchbase/key_value_scan.rb', line 102 def seed @seed end |