Class: Couchbase::RangeScan
- Inherits:
-
Object
- Object
- Couchbase::RangeScan
- Defined in:
- lib/couchbase/key_value_scan.rb
Overview
A range scan performs a scan on a range of keys
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(from: nil, to: nil) ⇒ RangeScan
constructor
Creates an instance of a RangeScan scan type.
- #to_backend ⇒ Object private
Constructor Details
#initialize(from: nil, to: nil) ⇒ RangeScan
Creates an instance of a RangeScan scan type
50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/couchbase/key_value_scan.rb', line 50 def initialize(from: nil, to: nil) @from = if from.nil? || from.instance_of?(ScanTerm) from else ScanTerm(from) end @to = if to.nil? || to.instance_of?(ScanTerm) to else ScanTerm(to) end end |
Instance Attribute Details
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.
66 67 68 69 70 71 72 |
# File 'lib/couchbase/key_value_scan.rb', line 66 def to_backend { scan_type: :range, from: @from&.to_backend, to: @to&.to_backend, } end |