API Documentation

Search/Lucene/Search/Query/Phrase.php

Includes Classes 
category
Zend
copyright
Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
license
http://framework.zend.com/license/new-bsd New BSD License
package
Zend_Search_Lucene
subpackage
Search
version
$Id: Phrase.php 20096 2010-01-06 02:05:09Z bkarwin $
Classes
Zend_Search_Lucene_Search_Query_Phrase

Description

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.

Zend_Search_Lucene_Search_Query_Phrase

Extends from
Zend_Search_Lucene_Search_Query
category
Zend
copyright
Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
license
http://framework.zend.com/license/new-bsd New BSD License
package
Zend_Search_Lucene
subpackage
Search
Properties
$_terms
$_offsets
$_slop
$_resVector
$_termsPositions
Methods
__construct
setSlop
getSlop
addTerm
rewrite
optimize
getTerms
setWeight
createWeight
_exactPhraseFreq
_sloppyPhraseFreq
execute
matchedDocs
score
getQueryTerms
_highlightMatches
__toString

Description

A Query that matches documents containing a particular sequence of terms.

Properties

$_offsets

array $_offsets = ''

Term positions (relative positions of terms within the phrase).

Array of integers

Details

$_offsets
array
visibility
private
default
final
false
static
false

$_resVector

array $_resVector = 'null'

Result vector.

Details

$_resVector
array
visibility
private
default
null
final
false
static
false

$_slop

integer $_slop = ''

Sets the number of other words permitted between words in query phrase.

If zero, then this is an exact phrase search. For larger values this works like a WITHIN or NEAR operator.

The slop is in fact an edit-distance, where the units correspond to moves of terms in the query phrase out of position. For example, to switch the order of two words requires two moves (the first move places the words atop one another), so to permit re-orderings of phrases, the slop must be at least two. More exact matches are scored higher than sloppier matches, thus search results are sorted by exactness.

The slop is zero by default, requiring exact matches.

Details

$_slop
integer
visibility
private
default
final
false
static
false

$_terms

array $_terms = ''

Terms to find.

Array of Zend_Search_Lucene_Index_Term objects.

Details

$_terms
array
visibility
private
default
final
false
static
false

$_termsPositions

array $_termsPositions = 'array'

Terms positions vectors.

Array of Arrays: term1Id => (docId => array( pos1, pos2, ... ), ...) term2Id => (docId => array( pos1, pos2, ... ), ...)

Details

$_termsPositions
array
visibility
private
default
array
final
false
static
false

Methods

__construct

__construct( array $terms = null, array $offsets = null, string $field = null ) :

Class constructor. Create a new prase query.

Arguments
$terms
array
Terms to search Array of strings.
$offsets
array
Relative term positions. Array of integers.
$field
string
Field to search.
Details
visibility
public
final
false
static
false
throws

__toString

__toString( ) : string

Print a query

Output
string
Details
visibility
public
final
false
static
false

_exactPhraseFreq

_exactPhraseFreq( integer $docId ) : float

Score calculator for exact phrase queries (terms sequence is fixed)

Arguments
$docId
integer
Output
float
Details
visibility
public
final
false
static
false

_highlightMatches

_highlightMatches( Zend_Search_Lucene_Search_Highlighter_Interface $highlighter ) :

Query specific matches highlighting

Arguments
$highlighter
Zend_Search_Lucene_Search_Highlighter_Interface
Highlighter object (also contains doc for highlighting)
Details
visibility
protected
final
false
static
false

_sloppyPhraseFreq

_sloppyPhraseFreq( integer $docId, Zend_Search_Lucene_Interface $reader ) : float

Score calculator for sloppy phrase queries (terms sequence is fixed)

Arguments
$docId
integer
$reader
Zend_Search_Lucene_Interface
Output
float
Details
visibility
public
final
false
static
false

addTerm

addTerm( Zend_Search_Lucene_Index_Term $term, integer $position = null ) :

Adds a term to the end of the query phrase.

The relative position of the term is specified explicitly or the one immediately after the last term added.

Arguments
$term
Zend_Search_Lucene_Index_Term
$position
integer
Details
visibility
public
final
false
static
false

createWeight

createWeight( Zend_Search_Lucene_Interface $reader ) : Zend_Search_Lucene_Search_Weight

Constructs an appropriate Weight implementation for this query.

Arguments
$reader
Zend_Search_Lucene_Interface
Details
visibility
public
final
false
static
false

execute

execute( Zend_Search_Lucene_Interface $reader, Zend_Search_Lucene_Index_DocsFilter|null $docsFilter = null ) :

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

Arguments
$reader
Zend_Search_Lucene_Interface
$docsFilter
Zend_Search_Lucene_Index_DocsFilternull
Details
visibility
public
final
false
static
false

getQueryTerms

getQueryTerms( ) : array

Return query terms

Output
array
Details
visibility
public
final
false
static
false

getSlop

getSlop( ) : integer

Get slop

Output
integer
Details
visibility
public
final
false
static
false

getTerms

getTerms( ) : array

Returns query term

Output
array
Details
visibility
public
final
false
static
false

matchedDocs

matchedDocs( ) : array

Get document ids likely matching the query

It's an array with document ids as keys (performance considerations)

Output
array
Details
visibility
public
final
false
static
false

optimize

optimize( Zend_Search_Lucene_Interface $index ) : Zend_Search_Lucene_Search_Query

Optimize query in the context of specified index

Arguments
$index
Zend_Search_Lucene_Interface
Details
visibility
public
final
false
static
false

rewrite

rewrite( Zend_Search_Lucene_Interface $index ) : Zend_Search_Lucene_Search_Query

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

Arguments
$index
Zend_Search_Lucene_Interface
Details
visibility
public
final
false
static
false

score

score( integer $docId, Zend_Search_Lucene_Interface $reader ) : float

Score specified document

Arguments
$docId
integer
$reader
Zend_Search_Lucene_Interface
Output
float
Details
visibility
public
final
false
static
false

setSlop

setSlop( integer $slop ) :

Set slop

Arguments
$slop
integer
Details
visibility
public
final
false
static
false

setWeight

setWeight( integer $num, Zend_Search_Lucene_Search_Weight_Term $weight ) :

Set weight for specified term

Arguments
$num
integer
$weight
Zend_Search_Lucene_Search_Weight_Term
Details
visibility
public
final
false
static
false
Documentation was generated by DocBlox.