Search/Lucene/Search/Query.php

Show: PublicProtectedPrivateinherited
Table of Contents
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

Package: Zend_Search_Lucene\Search
Children
\Zend_Search_Lucene_Search_Query_Fuzzy
\Zend_Search_Lucene_Search_Query_Insignificant
\Zend_Search_Lucene_Search_Query_Empty
\Zend_Search_Lucene_Search_Query_Phrase
\Zend_Search_Lucene_Search_Query_Term
\Zend_Search_Lucene_Search_Query_Range
\Zend_Search_Lucene_Search_Query_Wildcard
\Zend_Search_Lucene_Search_Query_MultiTerm
\Zend_Search_Lucene_Search_Query_Boolean
\Zend_Search_Lucene_Search_Query_Preprocessing
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  

Properties

>VPropertyprivatefloat $_boost = 1
query boost factor
Default value1Details
Type
float
>VPropertyprivateinteger $_currentColorIndex = 0
Current highlight color
Default value0Details
Type
integer
>VPropertyprotected\Zend_Search_Lucene_Search_Weight $_weight = null
Query weight
Default valuenullDetails
Type
\Zend_Search_Lucene_Search_Weight

Methods

methodpublic__toString() : string
abstract

Print a query

Returns
TypeDescription
string
methodprotected_highlightMatches(\Zend_Search_Lucene_Search_Highlighter_Interface $highlighter) : void
abstract

Query specific matches highlighting

Parameters
NameTypeDescription
$highlighter\Zend_Search_Lucene_Search_Highlighter_Interface

Highlighter object (also contains doc for highlighting)

methodprotected_initWeight(\Zend_Search_Lucene_Interface $reader) : void

Constructs an initializes a Weight for a _top-level_query_.

Parameters
NameTypeDescription
$reader\Zend_Search_Lucene_Interface
methodpubliccreateWeight(\Zend_Search_Lucene_Interface $reader) : \Zend_Search_Lucene_Search_Weight
abstract

Constructs an appropriate Weight implementation for this query.

Parameters
NameTypeDescription
$reader\Zend_Search_Lucene_Interface
Returns
TypeDescription
\Zend_Search_Lucene_Search_Weight
methodpublicexecute(\Zend_Search_Lucene_Interface $reader, \Zend_Search_Lucene_Index_DocsFilter | null $docsFilter = null) : void
abstract

Execute query in context of index reader It also initializes necessary internal structures

Query specific implementation
Parameters
NameTypeDescription
$reader\Zend_Search_Lucene_Interface
$docsFilter\Zend_Search_Lucene_Index_DocsFilter | null
methodpublicgetBoost() : float

Gets the boost for this clause. Documents matching this clause will (in addition to the normal weightings) have their score multiplied by boost. The boost is 1.0 by default.

Returns
TypeDescription
float
methodpublicgetQueryTerms() : array
abstract

Return query terms

Returns
TypeDescription
array
methodpublichighlightMatches(string $inputHTML, string $defaultEncoding = '', \Zend_Search_Lucene_Search_Highlighter_Interface | null $highlighter = null) : string

Highlight matches in $inputHTML

Parameters
NameTypeDescription
$inputHTMLstring
$defaultEncodingstring

HTML encoding, is used if it's not specified using Content-type HTTP-EQUIV meta tag.

$highlighter\Zend_Search_Lucene_Search_Highlighter_Interface | null
Returns
TypeDescription
string
methodpublichtmlFragmentHighlightMatches(string $inputHtmlFragment, string $encoding = 'UTF-8', \Zend_Search_Lucene_Search_Highlighter_Interface | null $highlighter = null) : string

Highlight matches in $inputHtmlFragment and return it (without HTML header and body tag)

Parameters
NameTypeDescription
$inputHtmlFragmentstring
$encodingstring

Input HTML string encoding

$highlighter\Zend_Search_Lucene_Search_Highlighter_Interface | null
Returns
TypeDescription
string
methodpublicmatchedDocs() : array
abstract

Get document ids likely matching the query

It's an array with document ids as keys (performance considerations)
Returns
TypeDescription
array
methodpublicoptimize(\Zend_Search_Lucene_Interface $index) : \Zend_Search_Lucene_Search_Query
abstract

Optimize query in the context of specified index

Parameters
NameTypeDescription
$index\Zend_Search_Lucene_Interface
Returns
TypeDescription
\Zend_Search_Lucene_Search_Query
methodpublicreset() : void

Reset query, so it can be reused within other queries or with other indeces

methodpublicrewrite(\Zend_Search_Lucene_Interface $index) : \Zend_Search_Lucene_Search_Query
abstract

Re-write query into primitive queries in the context of specified index

Parameters
NameTypeDescription
$index\Zend_Search_Lucene_Interface
Returns
TypeDescription
\Zend_Search_Lucene_Search_Query
methodpublicscore(integer $docId, \Zend_Search_Lucene_Interface $reader) : float
abstract

Score specified document

Parameters
NameTypeDescription
$docIdinteger
$reader\Zend_Search_Lucene_Interface
Returns
TypeDescription
float
methodpublicsetBoost(float $boost) : void

Sets the boost for this query clause to $boost.

Parameters
NameTypeDescription
$boostfloat
Documentation was generated by phpDocumentor 2.2.0 .