-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Empty Query #12
Comments
At first Sphynx - a full-text search engine. If you don't need a full-text search in a variety of fields - it's easier to make requests directly to the database, using the desired filter criteria. |
my problem is that my database is big (about 10 milions of record) and query are very complex. So classic search is too slow compared with sphinx approach. Thnx for reply. |
I can offer only a "crutch" - when you create the index, make an sql-request so that all the texts contained a particular unique word (SELECT "someuniqueword"...), and use it as a search query: |
declare this $ObjectName->setMatchMode(\Sphinx\SphinxClient::SPH_MATCH_EXTENDED); |
i need to use sphinx only for filtering using attributes,
If i make request using blank query :
$sphinx->search("", 'myindex_index')
results are always empty.
It's normal or is a problem of sphinx.conf configuration?
is possibile make request using blank query field?
thnx
The text was updated successfully, but these errors were encountered: