Search/Lucene/Search/Query/Fuzzy.php
Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled
with this package in the file LICENSE.txt.
It is also available through the world-wide-web at this URL:
http://framework.zend.com/license/new-bsd
If you did not receive a copy of the license and are unable to
obtain it through the world-wide-web, please send an email
to license@zend.com so we can send you a copy immediately.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_Search_Lucene
- Subpackage
- Search
- Version
- $Id$
\Zend_Search_Lucene_Search_Query_Fuzzy
Package: Zend_Search_Lucene\Search
Throws
- Parent(s)
- \Zend_Search_Lucene_Search_Query
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
Constants
Properties
integer $_defaultPrefixLength = 3
static
Default non-fuzzy prefix length
Default value
3
Details- Type
- integer
array $_matches = null
Matched terms.
Matched terms list.
It's filled during the search (rewrite operation) and may be used for search result
post-processing
Array of Zend_Search_Lucene_Index_Term objects
Default valuenull
Details- Type
- array
$_maxDistances = array()
Array of precalculated max distances
keys are integers representing a word size
Default valuearray()
Details- Type
- n/a
float $_minimumSimilarity
A value between 0 and 1 to set the required similarity
between the query term and the matching terms. For example, for a
_minimumSimilarity of 0.5 a term of the same length
as the query term is considered similar to the query term if the edit distance
between both terms is less than length(term)*0.5
Details
- Type
- float
Methods
__construct(\Zend_Search_Lucene_Index_Term $term, float $minimumSimilarity = self::DEFAULT_MIN_SIMILARITY, integer $prefixLength = null) : void
Zend_Search_Lucene_Search_Query_Wildcard constructor.
Parameters
Throws
Name | Type | Description |
---|---|---|
$term | \Zend_Search_Lucene_Index_Term | |
$minimumSimilarity | float | |
$prefixLength | integer |
Exception | Description |
---|---|
\Zend_Search_Lucene_Exception |
_calculateMaxDistance(integer $prefixLength, integer $termLength, integer $length) : integer
Calculate maximum distance for specified word length
Parameters
Returns
Name | Type | Description |
---|---|---|
$prefixLength | integer | |
$termLength | integer | |
$length | integer |
Type | Description |
---|---|
integer |
_highlightMatches(\Zend_Search_Lucene_Search_Highlighter_Interface $highlighter) : void
Query specific matches highlighting
Parameters
Name | Type | Description |
---|---|---|
$highlighter | \Zend_Search_Lucene_Search_Highlighter_Interface | Highlighter object (also contains doc for highlighting) |
createWeight(\Zend_Search_Lucene_Interface $reader) : \Zend_Search_Lucene_Search_Weight
Constructs an appropriate Weight implementation for this query.
Parameters
Returns
Throws
Name | Type | Description |
---|---|---|
$reader | \Zend_Search_Lucene_Interface |
Type | Description |
---|---|
\Zend_Search_Lucene_Search_Weight |
Exception | Description |
---|---|
\Zend_Search_Lucene_Exception |
execute(\Zend_Search_Lucene_Interface $reader, \Zend_Search_Lucene_Index_DocsFilter | null $docsFilter = null) : void
Execute query in context of index reader It also initializes necessary internal structures
Parameters
Throws
Name | Type | Description |
---|---|---|
$reader | \Zend_Search_Lucene_Interface | |
$docsFilter | \Zend_Search_Lucene_Index_DocsFilter | null |
Exception | Description |
---|---|
\Zend_Search_Lucene_Exception |
getDefaultPrefixLength() : integer
static
Get default non-fuzzy prefix length
Returns
Type | Description |
---|---|
integer |
getQueryTerms() : array
Return query terms
Returns
Throws
Type | Description |
---|---|
array |
Exception | Description |
---|---|
\Zend_Search_Lucene_Exception |
matchedDocs() : array
Get document ids likely matching the query
It's an array with document ids as keys (performance considerations)
ReturnsType | Description |
---|---|
array |
Exception | Description |
---|---|
\Zend_Search_Lucene_Exception |
optimize(\Zend_Search_Lucene_Interface $index) : \Zend_Search_Lucene_Search_Query
Optimize query in the context of specified index
Parameters
Returns
Name | Type | Description |
---|---|---|
$index | \Zend_Search_Lucene_Interface |
Type | Description |
---|---|
\Zend_Search_Lucene_Search_Query |
rewrite(\Zend_Search_Lucene_Interface $index) : \Zend_Search_Lucene_Search_Query
Re-write query into primitive queries in the context of specified index
Parameters
Returns
Throws
Name | Type | Description |
---|---|---|
$index | \Zend_Search_Lucene_Interface |
Type | Description |
---|---|
\Zend_Search_Lucene_Search_Query |
Exception | Description |
---|---|
\Zend_Search_Lucene_Exception |
score(integer $docId, \Zend_Search_Lucene_Interface $reader) : float
Score specified document
Parameters
Returns
Throws
Name | Type | Description |
---|---|---|
$docId | integer | |
$reader | \Zend_Search_Lucene_Interface |
Type | Description |
---|---|
float |
Exception | Description |
---|---|
\Zend_Search_Lucene_Exception |