Class: Couchbase::SearchRow
- Inherits:
-
Object
- Object
- Couchbase::SearchRow
- Defined in:
- lib/couchbase/search_options.rb
Instance Attribute Summary collapse
- #explanation ⇒ Hash
- #fragments ⇒ Hash<String => Array<String>>
-
#id ⇒ String
Document identifier.
-
#index ⇒ String
Name of the index.
- #locations ⇒ SearchRowLocations
- #score ⇒ Float
-
#transcoder ⇒ JsonTranscoder
Transcoder to use for the fields.
Instance Method Summary collapse
- #fields ⇒ Object
-
#initialize {|self| ... } ⇒ SearchRow
constructor
A new instance of SearchRow.
Constructor Details
#initialize {|self| ... } ⇒ SearchRow
Returns a new instance of SearchRow.
1548 1549 1550 1551 |
# File 'lib/couchbase/search_options.rb', line 1548 def initialize @fields = nil yield self if block_given? end |
Instance Attribute Details
#explanation ⇒ Hash
1535 1536 1537 |
# File 'lib/couchbase/search_options.rb', line 1535 def explanation @explanation end |
#fragments ⇒ Hash<String => Array<String>>
1538 1539 1540 |
# File 'lib/couchbase/search_options.rb', line 1538 def fragments @fragments end |
#id ⇒ String
Returns document identifier.
1526 1527 1528 |
# File 'lib/couchbase/search_options.rb', line 1526 def id @id end |
#index ⇒ String
Returns name of the index.
1523 1524 1525 |
# File 'lib/couchbase/search_options.rb', line 1523 def index @index end |
#locations ⇒ SearchRowLocations
1532 1533 1534 |
# File 'lib/couchbase/search_options.rb', line 1532 def locations @locations end |
#score ⇒ Float
1529 1530 1531 |
# File 'lib/couchbase/search_options.rb', line 1529 def score @score end |
#transcoder ⇒ JsonTranscoder
Returns transcoder to use for the fields.
1541 1542 1543 |
# File 'lib/couchbase/search_options.rb', line 1541 def transcoder @transcoder end |
Instance Method Details
#fields ⇒ Object
[View source]
1543 1544 1545 |
# File 'lib/couchbase/search_options.rb', line 1543 def fields @transcoder.decode(@fields, :json) if @fields && @transcoder end |