Class CompiledQueryProfileRegistry
java.lang.Object
com.yahoo.component.provider.ComponentRegistry<CompiledQueryProfile>
com.yahoo.search.query.profile.compiled.CompiledQueryProfileRegistry
public class CompiledQueryProfileRegistry
extends com.yahoo.component.provider.ComponentRegistry<CompiledQueryProfile>
A set of compiled query profiles.
- Author:
- bratseth
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final CompiledQueryProfileRegistry
The empty, frozen registry -
Constructor Summary
ConstructorsConstructorDescriptionCreates a compiled query profile registry with no typesCompiledQueryProfileRegistry
(QueryProfilesConfig config, Executor executor) CompiledQueryProfileRegistry
(QueryProfileTypeRegistry typeRegistry) -
Method Summary
Modifier and TypeMethodDescriptionfindQueryProfile
(String idString) Returns a query profile for the given request string, or null if a suitable one is not found.static CompiledQueryProfileRegistry
fromConfig
(QueryProfilesConfig config) final void
register
(CompiledQueryProfile profile) Registers a type by its idMethods inherited from class com.yahoo.component.provider.ComponentRegistry
allComponents, allComponentsById, findBestMatch, freeze, getComponent, getComponent, getComponent, getComponentCount, isFrozen, register, singleton, unregister
-
Field Details
-
empty
The empty, frozen registry
-
-
Constructor Details
-
CompiledQueryProfileRegistry
-
CompiledQueryProfileRegistry
public CompiledQueryProfileRegistry()Creates a compiled query profile registry with no types -
CompiledQueryProfileRegistry
-
-
Method Details
-
register
Registers a type by its id -
getTypeRegistry
-
findQueryProfile
Returns a query profile for the given request string, or null if a suitable one is not found.
The request string must be a validComponentId
or null.
If the string is null, the profile named "default" is returned, or null if that does not exists.The version part (if any) is matched used the usual component version patching rules. If the name part matches a query profile name perfectly, that profile is returned. If not, and the name is a slash-separated path, the profile with the longest matching left sub-path which has a type which allows path matching is used. If there is no such profile, null is returned.
-
fromConfig
-