Class: Couchbase::PrefixScan
- Inherits:
-
Object
- Object
- Couchbase::PrefixScan
- Defined in:
- lib/couchbase/key_value_scan.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/key_value_scan.rb more...
Overview
A prefix scan performs a scan that includes all documents whose keys start with the given prefix
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(prefix) ⇒ PrefixScan
constructor
Creates an instance of a PrefixScan scan type.
Constructor Details
#initialize(prefix) ⇒ PrefixScan
Creates an instance of a PrefixScan scan type
86 87 88 |
# File 'lib/couchbase/key_value_scan.rb', line 86 def initialize(prefix) @prefix = prefix end |
Instance Attribute Details
#prefix ⇒ String
79 80 81 |
# File 'lib/couchbase/key_value_scan.rb', line 79 def prefix @prefix end |