Search Results

0
votes
1answer
105 views

how much more performant is sphinx than MySQL default fulltext search?

MySQL's default fulltext search sucks when the data volume is big. So I'm counting on sphinx to get rid of the trouble. Is there a benchmark data available that compares these two k …
-1
votes
1answer
143 views

How to use sphinx plugin for MySQL to implement fulltext search with PHP?

Can someone provide a demo here? And how to retrieve the matching snippet at the same time? …
0
votes
1answer
63 views

Any one familiar with sphinx plugin of MySQL?

Will you please show me the demo usage in PHP? …
0
votes
1answer
19 views

How to retrieve statistical information while searching in Sphinx?

If I search "keywords", it'll return total number of matched documents. But I also want to know that among them how many has attribute @att_name1=1, or @att_name1=2 or @att_name2='a …
0
votes
0answers
20 views

How to get @attr/total pair with sphinx?

Say,I want to get all distinct values of a specific attribute of the returned documents, and number of occurence of each value. How to do this in sphinx? …
0
votes
2answers
113 views

Performance comparison of sphinx:search fulltext vs. attribute

1.How much more efficient is sphinx doing in searching fulltext than by attribute? If attribute search is much slower,for better performance,I'm gonna prefix the attribute and appen …