Search/Lucene/Search/Query/MultiTerm.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_MultiTerm

Package: Zend_Search_Lucene\Search
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  

Properties

>VPropertyprivatemixed $_coord = null
A score factor based on the fraction of all query terms that a document contains.
float for conjunction queries array of float for non conjunction queries
Default valuenullDetails
Type
mixed
>VPropertyprivatearray $_resVector = null
Result vector.
Default valuenullDetails
Type
array
>VPropertyprivatearray $_signs
Term signs.
If true then term is required. If false then term is prohibited. If null then term is neither prohibited, nor required If array is null then all terms are required
Details
Type
array
>VPropertyprivatearray $_terms = array()
Terms to find.
Array of Zend_Search_Lucene_Index_Term
Default valuearray()Details
Type
array
>VPropertyprivatearray $_termsFreqs = array()
Terms positions vectors.
Array of Arrays: term1Id => (docId => freq, ...) term2Id => (docId => freq, ...)
Default valuearray()Details
Type
array
>VPropertyprivatearray $_weights = array()
Terms weights array of Zend_Search_Lucene_Search_Weight
Default valuearray()Details
Type
array

Methods

methodpublic__construct(array $terms = null, array $signs = null) : void

Class constructor. Create a new multi-term query object.

if $signs array is omitted then all terms are required it differs from addTerm() behavior, but should never be used
Parameters
NameTypeDescription
$termsarray

Array of Zend_Search_Lucene_Index_Term objects

$signsarray

Array of signs. Sign is boolean|null.

Throws
ExceptionDescription
\Zend_Search_Lucene_Exception
methodpublic__toString() : string

Print a query

Returns
TypeDescription
string
methodprivate_calculateConjunctionResult(\Zend_Search_Lucene_Interface $reader) : void

Calculate result vector for Conjunction query (like '+something +another')

Parameters
NameTypeDescription
$reader\Zend_Search_Lucene_Interface
methodprivate_calculateNonConjunctionResult(\Zend_Search_Lucene_Interface $reader) : void

Calculate result vector for non Conjunction query (like '+something -another')

Parameters
NameTypeDescription
$reader\Zend_Search_Lucene_Interface
methodpublic_conjunctionScore(integer $docId, \Zend_Search_Lucene_Interface $reader) : float

Score calculator for conjunction queries (all terms are required)

Parameters
NameTypeDescription
$docIdinteger
$reader\Zend_Search_Lucene_Interface
Returns
TypeDescription
float
methodprotected_highlightMatches(\Zend_Search_Lucene_Search_Highlighter_Interface $highlighter) : void

Query specific matches highlighting

Parameters
NameTypeDescription
$highlighter\Zend_Search_Lucene_Search_Highlighter_Interface

Highlighter object (also contains doc for highlighting)

methodpublic_nonConjunctionScore(integer $docId, \Zend_Search_Lucene_Interface $reader) : float

Score calculator for non conjunction queries (not all terms are required)

Parameters
NameTypeDescription
$docIdinteger
$reader\Zend_Search_Lucene_Interface
Returns
TypeDescription
float
methodpublicaddTerm(\Zend_Search_Lucene_Index_Term $term, boolean | null $sign = null) : void

Add a $term (Zend_Search_Lucene_Index_Term) to this query.

The sign is specified as: TRUE - term is required FALSE - term is prohibited NULL - term is neither prohibited, nor required
Parameters
NameTypeDescription
$term\Zend_Search_Lucene_Index_Term
$signboolean | null
methodpubliccreateWeight(\Zend_Search_Lucene_Interface $reader) : \Zend_Search_Lucene_Search_Weight

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

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

Parameters
NameTypeDescription
$reader\Zend_Search_Lucene_Interface
$docsFilter\Zend_Search_Lucene_Index_DocsFilter | null
methodpublicgetQueryTerms() : array

Return query terms

Returns
TypeDescription
array
methodpublicgetSigns() : array

Return terms signs

Returns
TypeDescription
array
methodpublicgetTerms() : array

Returns query term

Returns
TypeDescription
array
methodpublicmatchedDocs() : array

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

Optimize query in the context of specified index

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

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

Score specified document

Parameters
NameTypeDescription
$docIdinteger
$reader\Zend_Search_Lucene_Interface
Returns
TypeDescription
float
methodpublicsetWeight(integer $num, \Zend_Search_Lucene_Search_Weight_Term $weight) : void

Set weight for specified term

Parameters
NameTypeDescription
$numinteger
$weight\Zend_Search_Lucene_Search_Weight_Term
Documentation was generated by phpDocumentor 2.2.0 .