范例
SphinxClient::addQuery
Sphinx
php 手册
|
脚本学堂
|
脚本编程
|
网站编程
|
系统管理
|
服务器配置
|
数据库管理
|
Php教程
|
python教程
|
正则表达式
|
批处理脚本
|
Centos教程
|
Linux基础教程
The SphinxClient class
简介
The SphinxClient class provides object-oriented interface to Sphinx.
Class synopsis
SphinxClient
SphinxClient
{
/* Methods */
public
int
addQuery
(
string
$query
[,
string
$index
="*"
[,
string
$comment
=""
]] )
public
array
buildExcerpts
(
array
$docs
,
string
$index
,
string
$words
[,
array
$opts
] )
public
array
buildKeywords
(
string
$query
,
string
$index
,
bool
$hits
)
__construct
(
void
)
public
string
escapeString
(
string
$string
)
public
string
getLastError
(
void
)
public
string
getLastWarning
(
void
)
public
array
query
(
string
$query
[,
string
$index
="*"
[,
string
$comment
=""
]] )
public
void
resetFilters
(
void
)
public
void
resetGroupBy
(
void
)
public
array
runQueries
(
void
)
public
bool
setArrayResult
(
bool
$array_result
)
public
bool
setConnectTimeout
(
float
$timeout
)
public
bool
setFieldWeights
(
array
$weights
)
public
bool
setFilter
(
string
$attribute
,
array
$values
[,
bool
$exclude
=false
] )
public
bool
setFilterFloatRange
(
string
$attribute
,
float
$min
,
float
$max
[,
bool
$exclude
=false
] )
public
bool
setFilterRange
(
string
$attribute
,
int
$min
,
int
$max
[,
bool
$exclude
] )
public
bool
setGeoAnchor
(
string
$attrlat
,
string
$attrlong
,
float
$latitude
,
float
$longitude
)
public
bool
setGroupBy
(
string
$attribute
,
int
$func
[,
string
$groupsort
] )
public
bool
setGroupDistinct
(
string
$attribute
)
public
bool
setIDRange
(
int
$min
,
int
$max
)
public
bool
setIndexWeights
(
array
$weights
)
public
bool
setLimits
(
int
$offset
,
int
$limit
[,
int
$max_matches
=0
[,
int
$cutoff
=0
]] )
public
bool
setMatchMode
(
int
$mode
)
public
bool
setMaxQueryTime
(
int
$qtime
)
public
bool
setRankingMode
(
int
$ranker
)
public
bool
setRetries
(
int
$count
[,
int
$delay
=0
] )
public
bool
setServer
(
string
$server
,
int
$port
)
public
bool
setSortMode
(
int
$mode
[,
string
$sortby
] )
public
int
updateAttributes
(
string
$index
,
array
$attributes
,
array
$values
)
}
Table of Contents
SphinxClient::addQuery
— Add query to multi-query batch
SphinxClient::buildExcerpts
— Build text snippets
SphinxClient::buildKeywords
— Extract keywords from query
SphinxClient::__construct
— Create a new SphinxClient object
SphinxClient::escapeString
— Escape special characters
SphinxClient::getLastError
— Get the last error message
SphinxClient::getLastWarning
— Get the last warning
SphinxClient::query
— Execute search query
SphinxClient::resetFilters
— Clear all filters
SphinxClient::resetGroupBy
— Clear all group-by settings
SphinxClient::runQueries
— Run a batch of search queries
SphinxClient::setArrayResult
— Change the format of result set array
SphinxClient::setConnectTimeout
— Set connection timeout
SphinxClient::setFieldWeights
— Set field weights
SphinxClient::setFilter
— Add new integer values set filter
SphinxClient::setFilterFloatRange
— Add new float range filter
SphinxClient::setFilterRange
— Add new integer range filter
SphinxClient::setGeoAnchor
— Set anchor point for a geosphere distance calculations
SphinxClient::setGroupBy
— Set grouping attribute
SphinxClient::setGroupDistinct
— Set attribute name for per-group distinct values count calculations
SphinxClient::setIDRange
— Set a range of accepted document IDs
SphinxClient::setIndexWeights
— Set per-index weights
SphinxClient::setLimits
— Set offset and limit of the result set
SphinxClient::setMatchMode
— Set full-text query matching mode
SphinxClient::setMaxQueryTime
— Set maximum query time
SphinxClient::setRankingMode
— Set ranking mode
SphinxClient::setRetries
— Set retry count and delay
SphinxClient::setServer
— Set searchd host and port
SphinxClient::setSortMode
— Set matches sorting mode
SphinxClient::updateAttributes
— Update document attributes
范例
SphinxClient::addQuery
Sphinx
php 手册
|
脚本学堂
|
脚本编程
|
网站编程
|
系统管理
|
服务器配置
|
数据库管理
|
Php教程
|
python教程
|
正则表达式
|
批处理脚本
|
Centos教程
|
Linux基础教程