How to increase the search speed?
How to increase the search speed?
I type “a” in the input box,the list of search result was show immediately,about 3 million results。I search by using the sdk for a few seconds, how to increase the search speed?
Re: How to increase the search speed?
Normally, an Everything query will return all results. This will take a few seconds over IPC.
Please try limiting the number of results with Everything_SetMax.
Use Everything_SetOffset to set your window scroll offset.
For the best performance, set the maximum results to the number of visible items in your window and set the offset to the vertical scroll offset of your window. You'll need to requery if the user changes the vertical scroll offset or window size.
Please try limiting the number of results with Everything_SetMax.
Use Everything_SetOffset to set your window scroll offset.
For the best performance, set the maximum results to the number of visible items in your window and set the offset to the vertical scroll offset of your window. You'll need to requery if the user changes the vertical scroll offset or window size.
Re: How to increase the search speed?
that's good idea,thanks.void wrote: ↑Mon Aug 19, 2019 5:26 am Normally, an Everything query will return all results. This will take a few seconds over IPC.
Please try limiting the number of results with Everything_SetMax.
Use Everything_SetOffset to set your window scroll offset.
For the best performance, set the maximum results to the number of visible items in your window and set the offset to the vertical scroll offset of your window. You'll need to requery if the user changes the vertical scroll offset or window size.
Re: How to increase the search speed?
I have another question, how to use "client-service"? I installed client service,but es.exe did not work?void wrote: ↑Mon Aug 19, 2019 5:26 am Normally, an Everything query will return all results. This will take a few seconds over IPC.
Please try limiting the number of results with Everything_SetMax.
Use Everything_SetOffset to set your window scroll offset.
For the best performance, set the maximum results to the number of visible items in your window and set the offset to the vertical scroll offset of your window. You'll need to requery if the user changes the vertical scroll offset or window size.
Re: How to increase the search speed?
Do you mean the Everything Service or the Everything Client Service?
If the latter, did you follow these instructions?
Re: How to increase the search speed?
Yes,Everything Client Service.NotNull wrote: ↑Tue Aug 20, 2019 2:34 pmDo you mean the Everything Service or the Everything Client Service?
If the latter, did you follow these instructions?
I installed Everything Client Service,and excuted es.exe.I got error information:
"Error 8: Everything IPC window not found. Please make sure Everything is running".
Re: How to increase the search speed?
normally, ES doesn't work with the client service.
The client service is intended for running an Everything ETP/FTP/HTTP server as a service without having a user logged in.
ES requires the Everything Search Client to be running in the background.
What are you trying to do?
The client service is intended for running an Everything ETP/FTP/HTTP server as a service without having a user logged in.
ES requires the Everything Search Client to be running in the background.
What are you trying to do?
Re: How to increase the search speed?
If I don't start Everything Search Client with administrator user,I have to install Everything Service. I want to install a Client Service without starting the Everything Search Client,in this case,I hope es.exe work noramlly.void wrote: ↑Wed Aug 21, 2019 7:49 am normally, ES doesn't work with the client service.
The client service is intended for running an Everything ETP/FTP/HTTP server as a service without having a user logged in.
ES requires the Everything Search Client to be running in the background.
What are you trying to do?
Re: How to increase the search speed?
You'll need to run both the Everything Service (not the client service) and the Everything search client in the background.
ES cannot communicate with the Everything client service because of Session 0 Isolation.
The Everything client service runs in session 0.
ES cannot communicate with the Everything client service because of Session 0 Isolation.
The Everything client service runs in session 0.
Re: How to increase the search speed?
Thank you for your prompt reply,I understand.