Search: ezcSearchQuery
[ ]
[ Solr schema ]
[ ]
[ ]
[ ]
[ ]
Interface: ezcSearchQuery
|
Class to create select search backend indepentent search queries. [
source]
Descendents
| Child Class |
Description |
| ezcSearchDeleteQuery |
Class to create select search backend indepentent search queries.
|
| ezcSearchFindQuery |
Class to create select search backend indepentent search queries.
|
Method Summary
|
public ezcSearchQuery |
__construct(
$handler, $definition )
Creates a new search query with handler $handler and document definition $definition. |
|
public string |
between(
$field, $value1, $value2, $value2
)
Returns a string containing a field/value specifier, and an optional boost value. |
|
public string |
eq(
$field, $value, $value
)
Returns a string containing a field/value specifier, and an optional boost value. |
|
public string |
lAnd(
$... )
Creates an AND clause |
|
public string |
lOr(
$... )
Creates an OR clause |
|
public string |
not(
$clause )
Creates a NOT clause |
|
public void |
reset(
)
Resets the query object for reuse. |
|
public ezcSearchQuery |
where(
$clause )
Adds a select/filter statement to the query |
Methods
__construct
Creates a new search query with handler $handler and document definition $definition.
Parameters
between
string between(
string
$field, mixed
$value1,
$value2, mixed
$value2
)
Returns a string containing a field/value specifier, and an optional boost value.
The method uses the document definition field type to map the fieldname to a solr fieldname, and the $fieldType argument to escape the values correctly.
Parameters
| Name |
Type |
Description |
$field |
string |
|
$value1 |
mixed |
|
$value2
|
mixed |
|
$value2 |
|
|
eq
string eq(
string
$field,
$value, mixed
$value
)
Returns a string containing a field/value specifier, and an optional boost value.
The method uses the document definition field type to map the fieldname to a solr fieldname, and the $fieldType argument to escape the $value correctly. If a definition is set, the $fieldType will be overridden with the type from the definition.
Parameters
| Name |
Type |
Description |
$field |
string |
|
$value
|
mixed |
|
$value |
|
|
lAnd
string lAnd(
mixed
$... )
Creates an AND clause
This method accepts either an array of fieldnames, but can also accept multiple parameters as field names.
Parameters
| Name |
Type |
Description |
$... |
mixed |
|
lOr
string lOr(
mixed
$... )
Creates an OR clause
This method accepts either an array of fieldnames, but can also accept multiple parameters as field names.
Parameters
| Name |
Type |
Description |
$... |
mixed |
|
not
string not(
string
$clause )
Creates a NOT clause
This method accepts a clause and negates it.
Parameters
| Name |
Type |
Description |
$clause |
string |
|
reset
void reset(
)
Resets the query object for reuse.
where
Adds a select/filter statement to the query
Parameters
| Name |
Type |
Description |
$clause |
string |
|
Last updated: Tue, 01 Sep 2009