Class: Couchbase::Cluster::SearchRow
- Inherits:
-
Object
- Object
- Couchbase::Cluster::SearchRow
- Defined in:
- lib/couchbase/search_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/search_options.rb more...
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.
1425 1426 1427 1428 |
# File 'lib/couchbase/search_options.rb', line 1425 def initialize @fields = nil yield self if block_given? end |
Instance Attribute Details
#explanation ⇒ Hash
1412 1413 1414 |
# File 'lib/couchbase/search_options.rb', line 1412 def explanation @explanation end |
#fragments ⇒ Hash<String => Array<String>>
1415 1416 1417 |
# File 'lib/couchbase/search_options.rb', line 1415 def fragments @fragments end |
#id ⇒ String
Returns document identifier.
1403 1404 1405 |
# File 'lib/couchbase/search_options.rb', line 1403 def id @id end |
#index ⇒ String
Returns name of the index.
1400 1401 1402 |
# File 'lib/couchbase/search_options.rb', line 1400 def index @index end |
#locations ⇒ SearchRowLocations
1409 1410 1411 |
# File 'lib/couchbase/search_options.rb', line 1409 def locations @locations end |
#score ⇒ Float
1406 1407 1408 |
# File 'lib/couchbase/search_options.rb', line 1406 def score @score end |
#transcoder ⇒ JsonTranscoder
Returns transcoder to use for the fields.
1418 1419 1420 |
# File 'lib/couchbase/search_options.rb', line 1418 def transcoder @transcoder end |
Instance Method Details
#fields ⇒ Object
[View source]
1420 1421 1422 |
# File 'lib/couchbase/search_options.rb', line 1420 def fields @transcoder.decode(@fields, :json) if @fields && @transcoder end |