I would like to get popular words and phrases (up to 3 words) from my products database table.
I tried using sphinxsearch service for that which was great, except..
The result it give are plain txt words - without slovenian special chars (čžš) that ARE in the products table
the results are only single words, and no phrases
sphinx builds this from an index... all together (including building the index) tooks about 2 minutes for 100,000 products...
this is impressive.. since I need this only once in a while (1/month)...
but as said before, unusable in my case....
what are other alternatives?
I need about 5,000 words and phrases
edit my products db source
source products_src
{
type = mysql
sql_host = localhost
sql_user = root
sql_pass = xxxxxxxxxx
sql_db = xxxxxxxxx
sql_query_pre = SET CHARACTER_SET_RESULTS=utf8
sql_query_pre = SET NAMES utf8
sql_query = \
SELECT id, title, summary, keywords, text, category_id, company_id, created \
FROM products WHERE status='A'
sql_attr_uint = category_id
sql_attr_uint = company_id
sql_attr_timestamp = created
sql_attr_string = title
sql_attr_string = text
sql_query_info = SELECT id, category_id, title FROM products WHERE id=$id
}
č == c? (while still returning č in the actual result of course) – Michael Mior Nov 10 '11 at 16:27