MarginaliaSearch/code/services-core/index-service/readme.md

12 lines
501 B
Markdown
Raw Normal View History

2024-02-06 11:41:28 +00:00
The index service is a partitioned service that knows which document contains which keywords.
2023-03-04 13:00:46 +00:00
![image](../../../doc/diagram/index-service-map.svg)
2023-03-22 16:01:34 +00:00
2024-02-06 11:41:28 +00:00
It is the service that most directly executes a search query. It does this by
evaluating a low-level query, and then using the index to find the documents
that match the query, finally ranking the results and picking the best matches.
2024-02-22 17:18:58 +00:00
This module only contains service boilerplate. The guts of this service are
in the [index](../../index) module.
2023-03-04 13:00:46 +00:00