Discussions
Get only internalID's on search?
Hi,
Is it possible to perform a search and only get the list of internalID's without getting all the records in the Response.recordList field? Or even better would be to just get a boolean indicating if a search contains records or not? Something like:
//Build customerSearch based on my criteria, then
bool needUpdate = _service.search(customerSearch);
if(needUpdate)
//Flag another thread to process customers
Basically what I'm trying to do is get a thread dedicated to polling if there are records that I'm interested about, but have another thread process them, so I'd like to keep my initial polling thread load and its use of the connection to a minimum.