Class: Couchbase::Cluster::SearchMetrics
- Inherits:
-
Object
- Object
- Couchbase::Cluster::SearchMetrics
- Defined in:
- lib/couchbase/search_options.rb
Instance Attribute Summary collapse
- #error_partition_count ⇒ Integer
- #max_score ⇒ Float
- #success_partition_count ⇒ Integer
-
#took ⇒ Integer
Time spent executing the query (in milliseconds).
- #total_rows ⇒ Integer
Instance Method Summary collapse
Instance Attribute Details
#error_partition_count ⇒ Integer
1461 1462 1463 |
# File 'lib/couchbase/search_options.rb', line 1461 def error_partition_count @error_partition_count end |
#max_score ⇒ Float
1455 1456 1457 |
# File 'lib/couchbase/search_options.rb', line 1455 def max_score @max_score end |
#success_partition_count ⇒ Integer
1458 1459 1460 |
# File 'lib/couchbase/search_options.rb', line 1458 def success_partition_count @success_partition_count end |
#took ⇒ Integer
Returns time spent executing the query (in milliseconds).
1449 1450 1451 |
# File 'lib/couchbase/search_options.rb', line 1449 def took @took end |
#total_rows ⇒ Integer
1452 1453 1454 |
# File 'lib/couchbase/search_options.rb', line 1452 def total_rows @total_rows end |
Instance Method Details
#total_partition_count ⇒ Integer
1464 1465 1466 |
# File 'lib/couchbase/search_options.rb', line 1464 def total_partition_count success_partition_count + error_partition_count end |