0

my question is:

what is the mining of the following matching parts of query (SphinxQL):

1. MATCH('php, programmer')

2. MATCH('php,programmer')

3. MATCH('php programmer')

And what is the difference in meaning of this query when using PHP SphinxAPI.

Thx for any advice I did`nt find anything useful in docs - maybe I have been looking in wrong place?

Gabriel Filipiak
  • 966
  • 12
  • 24

1 Answers1

1

The main thing that would affect this is charset table

http://sphinxsearch.com/docs/current.html#conf-charset-table

That will decide if comma is a seperator or a word charactor.

barryhunter
  • 20,886
  • 3
  • 30
  • 43