index service readme refers to index primitives

This commit is contained in:
Viktor Lofgren 2023-03-05 19:16:08 +01:00
parent fe0d754f2c
commit 87767b14bd

View File

@ -8,3 +8,9 @@ The index service knows which document contains which keywords.
* [IndexQueryService](src/main/java/nu/marginalia/index/svc/IndexQueryService.java) executes queries. * [IndexQueryService](src/main/java/nu/marginalia/index/svc/IndexQueryService.java) executes queries.
* [SearchIndex](src/main/java/nu/marginalia/index/index/SearchIndex.java) owns the state of the index and helps with building a query strategy from parameters. * [SearchIndex](src/main/java/nu/marginalia/index/index/SearchIndex.java) owns the state of the index and helps with building a query strategy from parameters.
* [IndexResultValuator](src/main/java/nu/marginalia/index/results/IndexResultValuator.java) determines the best results. * [IndexResultValuator](src/main/java/nu/marginalia/index/results/IndexResultValuator.java) determines the best results.
## See Also
The index service relies heavily on the primitives in [index](../../index),
such as [index-forward](../../index/index-forward/)
and [index-reverse](../../index/index-reverse/).