Module: PrependedLinkedData::SearchQuery
- Defined in:
- app/prepends/prepended_linked_data/search_query.rb
Instance Method Summary collapse
-
#search(query, language: nil, replacements: {}, subauth: nil, context: false, performance_data: false) ⇒ String
Override Qa::Authorities::LinkedData::SearchQuery#search method.
Instance Method Details
#search(query, language: nil, replacements: {}, subauth: nil, context: false, performance_data: false) ⇒ String
Override Qa::Authorities::LinkedData::SearchQuery#search method
4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'app/prepends/prepended_linked_data/search_query.rb', line 4 def search(query, language: nil, replacements: {}, subauth: nil, context: false, performance_data: false) # rubocop:disable Metrics/ParameterLists saved_performance_data = performance_data performance_data = true full_results = super QaServer::PerformanceHistory.save_result(dt_stamp: Time.now, authority: , action: 'search', size_bytes: full_results[:performance][:fetched_bytes], load_time_ms: (full_results[:performance][:fetch_time_s] * 1000), normalization_time_ms: (full_results[:performance][:normalization_time_s] * 1000)) saved_performance_data ? full_results : full_results[:results] end |