Class: Google::Apis::CloudsearchV1::SourceCrowdingConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb

Overview

Set search results crowding limits. Crowding is a situation in which multiple results from the same source or host "crowd out" other results, diminishing the quality of search for users. To foster better search quality and source diversity in search results, you can set a condition to reduce repetitive results by source.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SourceCrowdingConfig

Returns a new instance of SourceCrowdingConfig.



4454
4455
4456
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4454

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#num_resultsFixnum

Maximum number of results allowed from a source. No limits will be set on results if this value is less than or equal to 0. Corresponds to the JSON property numResults

Returns:

  • (Fixnum)


4446
4447
4448
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4446

def num_results
  @num_results
end

#num_suggestionsFixnum

Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0. Corresponds to the JSON property numSuggestions

Returns:

  • (Fixnum)


4452
4453
4454
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4452

def num_suggestions
  @num_suggestions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4459
4460
4461
4462
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4459

def update!(**args)
  @num_results = args[:num_results] if args.key?(:num_results)
  @num_suggestions = args[:num_suggestions] if args.key?(:num_suggestions)
end