39 lines
867 B
PHP
39 lines
867 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @author mricois
|
|
*
|
|
* SELECT
|
|
* select_expr [, select_expr ...]
|
|
* FROM index [, index2 ...]
|
|
* [WHERE where_condition]
|
|
* [GROUP BY {col_name | expr_alias} [, {sol_name | expr_alias}]]
|
|
* [WITHIN GROUP ORDER BY {col_name | expr_alias} {ASC | DESC}]
|
|
* [ORDER BY {col_name | expr_alias} {ASC | DESC} [, ...]]
|
|
* [LIMIT [offset,] row_count]
|
|
* [OPTION opt_name = opt_value [, ...]]
|
|
*
|
|
*/
|
|
class Metier_Search_EngineQL
|
|
{
|
|
protected $host = null;
|
|
protected $port = null;
|
|
|
|
/* OPTION */
|
|
|
|
/**
|
|
* max time in milliseconds to wait for remote queries to complete,
|
|
* see agent-query-timeout under Index configuration options for details
|
|
* @var integer
|
|
*/
|
|
protected $agent_query_timeout;
|
|
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
public function SetLimits($offset, $limit, $max=0, $cutoff=0)
|
|
{
|
|
}
|
|
}
|