 | SphinxMatchMode Enumeration |
Determines the mode searchd uses to match a document.
Namespace: SphinxConnector.NativeApiAssembly: SphinxConnector (in SphinxConnector.dll) Version: 3.12.6
Syntax[SerializableAttribute]
public enum SphinxMatchMode
<SerializableAttribute>
Public Enumeration SphinxMatchMode
Members
| Member name | Value | Description |
---|
| All | 0 |
Match all query words. This is the default.
|
| Any | 1 |
Match any of the query words.
|
| Phrase | 2 |
Match query as a phrase, requiring perfect match.
|
| Boolean | 3 |
Match query as a boolean expression. For more information see http://www.sphinxsearch.com/docs/current.html#boolean-syntax.
|
| Extended | 4 | |
| Fullscan | 5 |
Match query using the full scan mode.
|
| Extended2 | 6 |
Match query using the second version of the Extended matching mode.
|
Remarks
For more information on how the different matching modes work see
http://www.sphinxsearch.com/docs/current.html#matching-modes
See Also