Uses of Class
com.yahoo.prelude.IndexFacts
-
Packages that use IndexFacts Package Description com.yahoo.prelude The main classes of the Vespa Query Result Server.com.yahoo.search.query.parser Provides access to parsing query strings into queriescom.yahoo.search.searchchain Classes for composition of searchers into search chains, which are executed to produce Results for Queries. -
-
Uses of IndexFacts in com.yahoo.prelude
Methods in com.yahoo.prelude that return IndexFacts Modifier and Type Method Description IndexFacts
IndexFacts. freeze()
Freeze this to prevent further changes. -
Uses of IndexFacts in com.yahoo.search.query.parser
Methods in com.yahoo.search.query.parser that return IndexFacts Modifier and Type Method Description IndexFacts
ParserEnvironment. getIndexFacts()
Methods in com.yahoo.search.query.parser with parameters of type IndexFacts Modifier and Type Method Description ParserEnvironment
ParserEnvironment. setIndexFacts(IndexFacts indexFacts)
-
Uses of IndexFacts in com.yahoo.search.searchchain
Methods in com.yahoo.search.searchchain that return IndexFacts Modifier and Type Method Description IndexFacts
Execution.Context. getIndexFacts()
Returns information about the indexes specified by the search definitions used in this system, or null if not know.Methods in com.yahoo.search.searchchain with parameters of type IndexFacts Modifier and Type Method Description static Execution.Context
Execution.Context. createContextStub(IndexFacts indexFacts)
Create a Context instance where only the index related settings are initialized.static Execution.Context
Execution.Context. createContextStub(SearchChainRegistry searchChainRegistry, IndexFacts indexFacts)
Create a Context instance where only the search chain registry and index facts are initialized.static Execution.Context
Execution.Context. createContextStub(SearchChainRegistry searchChainRegistry, IndexFacts indexFacts, com.yahoo.language.Linguistics linguistics)
Create a Context instance where only the search chain registry, index facts and linguistics are initialized.void
Execution.Context. setIndexFacts(IndexFacts indexFacts)
Use this to override index settings for the searchers below a given searcher, the easiest way to do this is to wrap the incoming IndexFacts instance in a subclass.Constructors in com.yahoo.search.searchchain with parameters of type IndexFacts Constructor Description Context(SearchChainRegistry searchChainRegistry, IndexFacts indexFacts, com.yahoo.prelude.query.parser.SpecialTokenRegistry tokenRegistry, RendererRegistry rendererRegistry, com.yahoo.language.Linguistics linguistics)
Creates a context from arguments, all of which may be null, though this can be risky.
-