How I can get the intersection between an existing element range index and a sequence of words in an optimized way?
My point here focuses on memory optimization, I know that I can fetch the data using cts:element-values and use map objects to do the job. But why I should that if there is a query that do this intersection with the cached range index directly.
ex:
Range Index (test1, test2, test3) / Sequence (test1, test4, test5)
query result = test1
Knowing that this range index created for a word list exists in one document. I'm try to avoid put them in a separate documents, as well as avoid using fragmentation.