MarginaliaSearch/code/services-core/index-service
Viktor Lofgren 6690e9bde8 (service) Ensure the service discovery starts early
This is necessary as we use zookeeper to orchestrate first-time startup of the services, to ensure that the database is properly migrated by the control service before anything else is permitted to start.
2024-04-25 15:08:33 +02:00
..
java/nu/marginalia/index (service) Ensure the service discovery starts early 2024-04-25 15:08:33 +02:00
build.gradle (build) Java 22 and its consequences has been a disaster for Marginalia Search 2024-04-24 14:44:39 +02:00
readme.md Clean up docs 2024-02-22 18:18:58 +01:00

The index service is a partitioned service that knows which document contains which keywords.

image

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.

This module only contains service boilerplate. The guts of this service are in the index module.