1
vote
1answer
113 views
What’s the most efficient way to do weighted fulltext search in MYSQL?
In order to give different columns different weights,of course one can use:
select ...
from table_name
where match(column1,column2...columnn) against('+test..')
order by …
0
votes
2answers
59 views
What’s the best solution for huge amount of data,fulltext search?
I'm currently using MYSQL,
and it becomes the bottle neck of the whole system
…
0
votes
4answers
313 views
How much more performant is Postgres than MYSQL on fulltext search?
I've been a MYSQL user,never tried Postgres .
But MYSQL has bottle neck on fulltext search when the data set is huge.
…
0
votes
1answer
99 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 …
0
votes
0answers
131 views
Is fulltext search enabled on Google App Engine Java platform?
Seems only available in Django?
But the info is not the latest
…
0
votes
2answers
125 views
fulltext search and highlighting by PHP and MySQL?
MySQL can take care of fulltext search quite well,
but it doesn't highlight the keywords that are searched,
how can I do this most efficiently?
…
0
votes
2answers
52 views
MySQL fulltext performance solution
How to deal with queries like :
select ... from ... where match(field1) against('someA') and match(field2) against('someB') limit 50
If results returned by conditi …
0
votes
2answers
98 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 …
