summaryrefslogtreecommitdiffstats
path: root/streamingvisitors
Commit message (Collapse)AuthorAgeFilesLines
* If schema name is provided, append it to config id.Henning Baldersheim2024-03-081-8/+20
|
* Rename to reflect that is is a configid, not a search cluster.Henning Baldersheim2024-03-052-13/+13
|
* fix typoArne Juul2024-03-051-1/+1
|
* avoid re-using attributeField for sorting, would overwriteArne Juul2024-03-041-1/+10
|
* Propagate omit summary features from summary result class toTor Egge2024-02-201-0/+1
| | | | docsum state in streaming mode.
* Handle bool type too.Henning Baldersheim2024-02-191-1/+3
|
* Merge pull request #30316 from vespa-engine/balder/use-highlight-termsv8.307.19Henning Baldersheim2024-02-192-12/+23
|\ | | | | Balder/use highlight terms
| * GC comment not adding any value, besides being incorrect.Henning Baldersheim2024-02-191-1/+1
| |
| * Normalize highlight termsHenning Baldersheim2024-02-181-1/+4
| |
| * Propagate highlighterms.Henning Baldersheim2024-02-182-0/+10
| |
| * Modernize key/value interface of fs4::FS4PropertiesHenning Baldersheim2024-02-181-12/+10
| |
* | - Hide recall terms from ranking.Henning Baldersheim2024-02-192-19/+9
|/ | | | - Add noexcept.
* Handle rank-score-drop-limit overrides in the query too.Henning Baldersheim2024-02-152-13/+18
|
* - Add inteface for getting summary features for a single hit too.Henning Baldersheim2024-02-137-6/+64
| | | | - Produce summaryhits for grouping results too.
* Take owenship for the stuff you provide. Do not rely on the caller.Henning Baldersheim2024-02-137-64/+48
|
* Unify code layoutHenning Baldersheim2024-02-131-72/+64
|
* Also test size of heap and number of hits kept.Henning Baldersheim2024-02-131-0/+6
|
* Test that all hits are kept.Henning Baldersheim2024-02-132-0/+20
|
* - Add all hits to the hit collector.Henning Baldersheim2024-02-134-95/+115
| | | | | - Maintain a heap on the side, and keep heap property when producing results and features. - Drop teh pointer to the document once it drops off the heap.
* dumpProcessors must also receive sort information up front.Henning Baldersheim2024-02-123-4/+4
|
* Revert "Revert "- Use explicit given wanted hit count.""Henning Baldersheim2024-02-129-56/+77
|
* Revert "- Use explicit given wanted hit count."Henning Baldersheim2024-02-129-77/+56
|
* vespa.summaryFeatures.cached is always 0.0 (false)Henning Baldersheim2024-02-121-1/+0
|
* Merge branch 'master' into balder/use-wanted-hitcountHenning Baldersheim2024-02-125-46/+43
|\
| * - DocId is an overloaded type already. Just use string as directly for ↵Henning Baldersheim2024-02-105-47/+44
| | | | | | | | | | | | readability. - Add noexcept and and using.
* | It is know up front that if we sort by rank or by sortblob. So instead of ↵Henning Baldersheim2024-02-118-44/+46
| | | | | | | | | | | | detecting by first hit, and hoping the rest are the same, set expectations ahead and assert all hits are correct.
* | Make separate make/push/pop heap function to improve readabilityHenning Baldersheim2024-02-112-18/+34
| |
* | Compute actual value up front.Henning Baldersheim2024-02-111-2/+3
| |
* | - Use explicit given wanted hit count.Henning Baldersheim2024-02-113-4/+6
|/ | | | | - Do not rely on using _hits.size(). There is no contract they are the same. They are so for now so only by implementation.
* Handle search::streaming::EquivQueryNode as a leaf in the query tree.Tor Egge2024-02-095-37/+100
|
* Handle search::streaming::PhraseQueryNode as a leaf in the query tree.Tor Egge2024-02-065-156/+42
|
* Merge pull request #30185 from ↵Henning Baldersheim2024-02-068-33/+31
|\ | | | | | | | | vespa-engine/balder/symmetric-query-processing-docsum-time Balder/symmetric query processing docsum time
| * Wire QueryNormalization in to JuniperQueryAdapter and use it there.Henning Baldersheim2024-02-052-6/+10
| |
| * Move Normalization from search::streaming => searchHenning Baldersheim2024-02-058-27/+21
| |
* | Merge pull request #30186 from ↵Geir Storli2024-02-066-4/+39
|\ \ | | | | | | | | | | | | vespa-engine/toregge/track-oldest-config-generation-used-for-streaming-search Track oldest config generation used for streaming search.
| * | Rename generation to config_generation in SearchEnvironmentSnapshot.Tor Egge2024-02-063-6/+6
| | |
| * | Track oldest config generation used for streaming search.Tor Egge2024-02-056-4/+39
| |/
* / Add unpack_match_data member function toTor Egge2024-02-051-18/+1
|/ | | | search::streaming::NearestNeighborQueryNode.
* Add unpack_match_data member function to search::streaming::QueryTerm.Tor Egge2024-02-054-76/+6
|
* wire fef test pluginArne Juul2024-02-051-0/+2
|
* Merge pull request #30162 from vespa-engine/arnej/wire-feature-overridesHenning Baldersheim2024-02-034-8/+24
|\ | | | | wire feature overrides
| * wire feature overridesArne Juul2024-02-034-8/+24
| |
* | Change parent class of search::streaming::PhraseQueryNode fromTor Egge2024-02-021-4/+5
|/ | | | search::streaming::AndQueryNode to search::streaming::MultiTerm.
* Use element length from search::streaming::Hit when unpacking match data.Tor Egge2024-01-251-1/+1
|
* Start with position 0 for each element in streaming search.Tor Egge2024-01-252-91/+93
|
* Merge pull request #30060 from vespa-engine/arnej/searchmethod-none-datatypeHenning Baldersheim2024-01-251-1/+6
|\ | | | | temporary fix for datatype from searchmethod
| * temporary fix for datatype from searchmethodArne Juul2024-01-251-1/+6
| |
* | Track element length in streaming mode.Tor Egge2024-01-258-10/+49
|/
* Merge pull request #30054 from ↵v8.293.15Henning Baldersheim2024-01-251-1/+2
|\ | | | | | | | | vespa-engine/toregge/use-max-value-for-words-in-utf8-flexible-string-field-searcher-matchterms Use max value for words in UTF8FlexibleStringFieldSearcher::matchTerm…
| * Use max value for words in UTF8FlexibleStringFieldSearcher::matchTerms().Tor Egge2024-01-241-1/+2
| |