I have been working with cts:search
in my project but somehow it feels the result time are taking a bit longer than expected. Can search:search
help? If so, how?
For example I have the query as
let $query := cts:and-query((cts:element-value-query(xs:QName("Applicability"),"Yes")))
and I want to fetch the document URIs. I was using:
cts:search(collection("abc"), $query)
and it returned the URIs, but how can this be extracted using search:search
?
Or is there something other than search can help for improving the execution time?
Are you interested in retrieving the documents, or just the URIs?
If you are only looking to retrieve the URIs of the documents that have an element with that value, then use
cts:uris()
instead ofcts:search()
. Thects:uris()
function runs unfiltered and will only return URIs from the lexicon, instead of retrieving all of the documents, which can be a lot more expensive thancts:search
if you don't need the content.When using
cts:search
, the first thing that I would try is to add theunfiltered
option to your search and see if that helps.By default
cts:search
executes filtered:So, try executing the same query with the "unfiltered" option:
You could also look to create an index on that Applicability element, with either an element-range-index or a field-range-index, and then use the appropriate range-query instead of a value-query.