I'm currently using the java fast esp interface (v5.0.15.1) to query fast and retrieve results. However I can only seem to get a document iterator from the IQueryResult and each call to .next() seems to be a http request. Is there a better way to deal with bulk results?
How do I get more than one result at a time from a FAST ESP query
251 Views Asked by Pat L At
1
There are 1 best solutions below
Related Questions in FAST-ESP
- Delete documents in all collections using indexeradmin rdocs
- String sorting algorithm in FAST ESP
- how to configure fast query to return specific fields instead of all
- Parsing Fast ESP queries to SOLR query syntax
- Force FAST ESP to search within scope fields when query does not specify scopes explicitly
- Multiple matchers outputting to the same field
- Read a file(>150MB) and return the file content as ByteArrayOutputStream
- Accessing FAST ESP admin services (Dictionary and Deployment manager) from .net
- FAST ESP 5.3 SP4 - Turkish tr-tr fails
- How can I input XML data from an external web service into a scope field during a custom FAST ESP pipeline stage written in python?
- Client tool to query remote FAST ESP 5.3 server accessible over http
- How to efficiently feed FAST ESP with gigabytes of data with .NET
- FAST For SharePoint Web Crawler Meta Tag Extraction
- FAST Search Crawl fails on local file system with error 0x80040d07
- Multi-Valued Managed Properties with FAST Search Server and SharePoint 2010
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The api should be retrieving multiple results at a time, though next will periodically issue queries to populate the iterator. The number of queries fetched in each chunk is determined by the HITS parameter... so make sure it's higher than 1... default is normally 10 I think.
You can check the query logs $FASTSEARCH/var/log/querylogs to see what the api is currently passing for the hits param.
Have fun.