Hi All,

I have a search query which would return more than 30000 records.
I'm performing this search in an xqy module. Based on the search results,
I'm inserting the uri of each search result (search:result//@uri) into a
document.

ie: The final document will be as  below.
<Docuri>
   <uri val="/a/b/1.xml"/>
   <uri val="/a/b/2.xml"/>
   <uri val="/a/b/3.xml"/>
   ....
   ....
   <uri val="/a/b/30000.xml"/>
</Docuri>


But when I'm executing this through the pipeline, its throwing error "Time
limit exceeded".
How do I resolve this?

Loop being executed is:

for $i in (1 to $no-of-pages)
   let $searchResults   := search:resolve($query, $options,$index,$pageSize)



Thanks,
Sini
_______________________________________________
General mailing list
[email protected]
http://developer.marklogic.com/mailman/listinfo/general

Reply via email to