package it.cavallium.dbengine.database; import io.net5.buffer.api.Resource; import io.net5.buffer.api.Send; import it.cavallium.data.generator.nativedata.Nullablefloat; import it.cavallium.dbengine.client.query.current.data.NoSort; import it.cavallium.dbengine.client.query.current.data.Query; import it.cavallium.dbengine.client.query.current.data.QueryParams; import it.cavallium.dbengine.client.query.current.data.TotalHitsCount; import it.cavallium.dbengine.lucene.collector.Buckets; import it.cavallium.dbengine.lucene.searcher.BucketParams; import it.unimi.dsi.fastutil.doubles.DoubleArrayList; import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.Set; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; import reactor.util.function.Tuple2; public interface LLLuceneIndex extends LLSnapshottable { String getLuceneIndexName(); Mono addDocument(LLTerm id, LLUpdateDocument doc); /** * WARNING! This operation is atomic! * Please don't send infinite or huge documents fluxes, because they will * be kept in ram all at once. */ Mono addDocuments(Flux> documents); Mono deleteDocument(LLTerm id); Mono update(LLTerm id, LLIndexRequest request); Mono updateDocuments(Mono> documents); Mono deleteAll(); /** * @param queryParams the limit is valid for each lucene instance. If you have 15 instances, the number of elements * returned can be at most limit * 15. *

* The additional query will be used with the moreLikeThis query: "mltQuery AND additionalQuery" * @return the collection has one or more flux */ Mono moreLikeThis(@Nullable LLSnapshot snapshot, QueryParams queryParams, String keyFieldName, Flux>> mltDocumentFields); /** * @param queryParams the limit is valid for each lucene instance. If you have 15 instances, the number of elements * returned can be at most limit * 15 * @return the collection has one or more flux */ Mono search(@Nullable LLSnapshot snapshot, QueryParams queryParams, String keyFieldName); /** * @return buckets with each value collected into one of the buckets */ Mono computeBuckets(@Nullable LLSnapshot snapshot, @NotNull List queries, @Nullable Query normalizationQuery, BucketParams bucketParams); default Mono count(@Nullable LLSnapshot snapshot, Query query) { QueryParams params = QueryParams.of(query, 0, 0, Nullablefloat.empty(), NoSort.of(), false); return Mono.from(this.search(snapshot, params, null) .map(llSearchResultShard -> { try (llSearchResultShard) { return llSearchResultShard.totalHitsCount(); } }) .defaultIfEmpty(TotalHitsCount.of(0, true)) ).doOnDiscard(Send.class, Send::close).doOnDiscard(Resource.class, Resource::close); } boolean isLowMemoryMode(); Mono close(); /** * Flush writes to disk */ Mono flush(); /** * Refresh index searcher */ Mono refresh(boolean force); }