|
More site info...
Common forum | Forum profile
|
|
Forum profile page for Common forum on http://sphinxsearch.com.
This report page is the aggregated overview from a single forum: Common forum, located on the Message Board at http://sphinxsearch.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Common forum" on the Message Board at http://sphinxsearch.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Common forum:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
95
|
305
|
1,013
|
|
Post:
|
221
|
610
|
2,445
|
|
|
Common forum Posting activity graph:
|
Top authors during last week:
user's latest post:
Indexing no collected doc's
Published (2009-11-11 11:45:00)
Breaking the output into two sections might help explain things.... ~~~~~~~~~~~~~~ > indexing index 'wiki_main'... > collected 20082 docs, 22.4 MB > sorted 3.7 Mhits, 100.0% done > total 20082 docs, 22423950 bytes > total 6.920 sec, 3240454.72 bytes/sec, 2902.02 docs/sec ~~~~~~~~~~~~~~ > indexing index 'wiki_incremental'... > collected 0 docs, 0.0 MB > total 0 docs, 0 bytes > total 0.079 sec,...
user's latest post:
question about sql_attr_multi...
Published (2009-11-06 19:17:00)
Hi joepilon, To be honest, no, I haven't really considered nor researched any other product (other than the KickFire appliance). About 2 years ago, I made the switch from Sybase to mySQL. The move was more b/c I wanted to abandon the remaining windows servers (actually, they were towers at the time) and move to all linux rack servers (debian). I have been following the MariaDB, but, I have been a little slow to test this db solution. I...
user's latest post:
SPH_MATCH_EXTENDED issue
Published (2009-11-11 06:01:00)
thanks a million for your response The bitwise OR seems to work for us - prior to this, we used $cl->SetMatchMode(SPH_MATCH_BOOLEAN) - searching for "tom" would also return "tommy" $cl->SetMatchMode( SPH_MATCH_PHRASE | SPH_MATCH_BOOLEAN ); - searching for "tom" would ONLY return "tom" as a complete word search - that's the way we want it to be We also...
user's latest post:
SetLimits over multiple indexes
Published (2009-11-09 14:53:00)
> Sounds like you should aim to have it all in one query - then SetLimits applies to the > one query, and then sphinx handles merging of results - in such a way that paging will > work. This won't work with different fieldweights per index. > Maybe SetIndexWeights, can be used. Or you can somehow fudge the fields, so that > setFieldWeights can be used, for example my having different feilds in each index. Not > used it...
user's latest post:
Selecting from multiple tables /...
Published (2009-11-09 02:30:00)
> Seems to be this would be an ideal use for the mysql Partition engine > > http://dev.mysql.com/doc/refman/5.1/en/partitioning-overview.html > Hmm, very interesting! I'm reading about it now and like, very much, what I see :-) Thanks for the pointer!
user's latest post:
Search Error
Published (2009-11-05 11:23:00)
hi , on analysis i found out the error.. when i indexed 50,000 ducuments , on searching the authorname 'Isabel Wolff' , the database gives the results.. and the productid's are 1.680 2.1000 3.1001 4.1002 5.1184 6.1185 7.24875 on sphinx search with the same authorname its giving the result.. 1.680 2.1000 3.1001 4.1002 5.1184 6.1185 7.2487 and the difference is the last 7 th document it is giving only the four digit id.. i cant...
user's latest post:
Getting random results
Published (2009-11-03 18:54:00)
How do I update ? I've glanced the documentation but it only teach you how to recompile the new code, isn't there a way to update it correctly ? - I mean, without installing the RC-2 and removing the other one ?
user's latest post:
What is the best solution to...
Published (2009-11-09 16:30:00)
What is the best solution to update the modified old data? This situation is not quite suitable for #live-update. Ie have a table with some data. Suppose that is updated on the principle described in #live-update (receive only new data, not indexing old). But what if the old ones have changed? Once you can do re-index only changed data?
user's latest post:
Phrase Ranking
Published (2009-11-09 14:49:00)
As explained in document Phrase rank is based on a length of longest common subsequence (LCS) of search words between document body and query phrase. So if there's a perfect phrase match in some document then its phrase rank would be the highest possible, and equal to query words count. . . . In SPH_MATCH_EXTENDED mode, final weight is a sum of weighted phrase ranks and BM25 weight, multiplied by 1000 and rounded to integer Can any one...
user's latest post:
@group and multiple indexes...
Published (2009-11-11 20:40:00)
I wish I could delete the thread :) I had an error in the query inside sql_query_killlist but "indexer" did not raise any warning or error (is this expexted?) but I decided to verify it anyway and fixed the error and the counts are OK, now. I first learned about the solution from here http://www.sphinxsearch.com/forum/view.html?id=4673, so thanks Barry! > Ah, I was talking too early. upon reading the docs I thought that...
|
|
|
|
Latest active threads on Common forum::
Started 2 days ago (2009-11-11 06:24:00)
by Alysum
Correction: search command seems to work and it's only the sphinxapi.php that is throwing
the error from GetLastError() after executing Query() from the API.
Started 3 days, 11 hours ago (2009-11-09 18:46:00)
by barryhunter
Well not exactly.
Sphinx indexes are normally updated by running its 'indexer' command periodically. Often
via cron.
So you can reindex quite often (once a minute for example) if you want.
There are a few techniques to decrease the amount of work done at each reindex - so you
only reindex new data, not all the archive data every time - the most common is
main+delta. And there is a ...
Started 1 day, 10 hours ago (2009-11-11 19:57:00)
by kupokomapa
Also just to mention that I did increase (to 10,000) the max_matches both in the
sphinx.conf and in (my case) the PHP api call to SetLimits(). The number of results very
well fit in 1000 but I wanted to make sure that's not the problem before posting here.
Started 1 month, 3 weeks ago (2009-09-17 14:35:00)
by Arantor
> Hi,
>
> Can we use stored procedure for sql_query in sphinx.conf instead of MySQL query?
If you can query the results as if it were a regular query, yes. sql_query just sends the
query as-is to MySQL and expects a resultset. If that will be returned without use of any
variables (since sql_query_pre doesn't work for this AFAIK) it'll work.
If in doubt, try it.
Started 1 day, 16 hours ago (2009-11-11 14:29:00)
by wmark
> Hey - I'm attempting to compile mysqlse, but the autorun script doesn't pick up sphinx.
> I'm using 5.1.40 and 9.9 rc2. Looking at old posts, I'm guessing this is do to an update
> on mysql's side. I have a copy of 5.1.37's source that I did my original testing on, and
> I'll post it if anyone here needs it.
MySQL's cmake scripts have been redesigned and now it is easier to ...
Started 1 day, 17 hours ago (2009-11-11 12:52:00)
by wmark
> I'm trying to do a simple query to get the count of matches in the index:
>
> select count(*) from TP_PRDCT_INDEX
> where query="it;maxmatches=100000;"
>
> However, I keep getting the following error:
>
> There was a problem processing the query on the foreign data source. Data source error:
> searchd error:
> per-query max_matches=100000 out of bounds ...
Started 1 day, 18 hours ago (2009-11-11 11:45:00)
by barryhunter
Breaking the output into two sections might help explain things....
~~~~~~~~~~~~~~
> indexing index 'wiki_main'...
> collected 20082 docs, 22.4 MB
> sorted 3.7 Mhits, 100.0% done
> total 20082 docs, 22423950 bytes
> total 6.920 sec, 3240454.72 bytes/sec, 2902.02 docs/sec
~~~~~~~~~~~~~~
> indexing index 'wiki_incremental'...
> collected 0 docs, 0.0 MB
> total 0 ...
Started 3 days, 20 hours ago (2009-11-09 10:09:00)
by barryhunter
The most basic way to 'solve' this, would be to add ' to ignore_chars, so they stripped
before indexing. And use stemming to make with/without the 's' work as the same.
|
|
Hot threads for last week on Common forum::
Started 1 week, 1 day ago (2009-11-04 11:45:00)
by barryhunter
If the document_id's from the two tables overlap, then there really is nothing for it
other than run two seperate queries. (merging in your application as required)
(alternativly you can manipulate the data at indexing time, so the ids are completely
distinct)
Started 3 days, 19 hours ago (2009-11-09 11:35:00)
by Frits1980
After reading all other threads about SetLimits again I thought it might help to mention
that I use addquery.
The code:
$cl = new SphinxClient();
$cl->SetArrayResult(true);
$cl->SetMatchMode(SPH_MATCH_EXTENDED2);
$cl->SetRankingMode(SPH_RANK_BM25);
$cl->SetSortMode(SPH_SORT_RELEVANCE);
$cl->SetLimits(0, 2);
foreach ($indexName as...
Started 1 week, 1 day ago (2009-11-04 15:04:00)
by barryhunter
From the documentation:
> Field-start and field-end keyword modifiers, introduced in version 0.9.9- rc2, will make
> the keyword match only if it occurred at the very start or the very end of a fulltext
> field, respectively.
Upgrade!
Started 1 week, 2 days ago (2009-11-03 14:53:00)
by adammac
Hi Edward,
Not sure if this is your issue, but similar to what I had before:
Check Title,AuthorName,Description and make sure that the data is not less than
min_word_len in sphinx.conf. I had mine set at min of 2, and when I had data that
contained only 1 characters, results were *lost*.
Deleting all data that contained a str len of less than 2 fixed it for me. Alternatively,
I could...
Started 3 days, 20 hours ago (2009-11-09 10:09:00)
by barryhunter
The most basic way to 'solve' this, would be to add ' to ignore_chars, so they stripped
before indexing. And use stemming to make with/without the 's' work as the same.
Started 2 days ago (2009-11-11 06:24:00)
by Alysum
Correction: search command seems to work and it's only the sphinxapi.php that is throwing
the error from GetLastError() after executing Query() from the API.
Started 3 days, 11 hours ago (2009-11-09 18:46:00)
by barryhunter
Well not exactly.
Sphinx indexes are normally updated by running its 'indexer' command periodically. Often
via cron.
So you can reindex quite often (once a minute for example) if you want.
There are a few techniques to decrease the amount of work done at each reindex - so you
only reindex new data, not all the archive data every time - the most common is
main+delta. And there is a ...
Started 1 day, 10 hours ago (2009-11-11 19:57:00)
by kupokomapa
Also just to mention that I did increase (to 10,000) the max_matches both in the
sphinx.conf and in (my case) the PHP api call to SetLimits(). The number of results very
well fit in 1000 but I wanted to make sure that's not the problem before posting here.
Started 1 week ago (2009-11-05 18:31:00)
by barryhunter
Lets go digging in the source...
http://code.google.com/p/sphinxsearch/source/brows e/trunk/api/sphinxapi.php
... and look for references to 'string'
(TIP: Search for SPH_ATTR_STRING)
... shows its a attribute.
... so probably needs setup as an attribute...
... so look at the configuation parser to see what config options it understands?
http://code.google.com/p/...
Started 1 week ago (2009-11-05 12:14:00)
by barryhunter
> Hello everyone!
>
> I have search keywords suggestion for search form on my website.
> Suggestion is getting information from this table...
>
> table:search_suggestion
> keyword_id INT
> keyword VARCHAR
> searches INT
>
> For suggesting keywords, I'm using old-style method with SQL LIKE operator.
> It works, but it works really slow (keywords ...
|
|