How Everything handles two es.exe simultaneous queries?
How Everything handles two es.exe simultaneous queries?
two es.exe simultaneous queries,Is the second one waiting for the first completion or Everything Client handles synchronously?
Re: How Everything handles two es.exe simultaneous queries?
Everything can only process ES (IPC) queries one at a time.
Re: How Everything handles two es.exe simultaneous queries?
You can make multiple asynchronous Everything_Query(FALSE) calls.
However, they will still only be processed one at a time.
However, they will still only be processed one at a time.
Re: How Everything handles two es.exe simultaneous queries?
I tried,but I got result in my reply window only once.
There are millions of results in my search. It may take ten seconds for me to query once. Is there a way to get this data in a shorter time?
Re: How Everything handles two es.exe simultaneous queries?
The Everything SDK has only one search instance per process.
Multiple Everything_Query(FALSE) can not be called at the same time with the Everything SDK.
Please try sending multiple IPC requests manually.
This can be done with unique reply HWND or reply WM_COPYDATA ID.
Multiple Everything_Query(FALSE) can not be called at the same time with the Everything SDK.
Please try sending multiple IPC requests manually.
This can be done with unique reply HWND or reply WM_COPYDATA ID.
Re: How Everything handles two es.exe simultaneous queries?
This should be no way to shorten the time to get a lot of data, right?void wrote: ↑Thu Sep 26, 2019 3:36 am The Everything SDK has only one instance per process.
-or-
Send multiple IPC requests manually.
This can be done with unique HWND or reply WM_COPYDATA ID.
Re: How Everything handles two es.exe simultaneous queries?
Correct. Multiple IPC requests will not improve performance.