...) {return} bool 是返回 true, 不是返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L345 (显示) public function isBoolIndex(){ if ($this->flag & self::FLAG_NON_BOOL) { return false; } return (!$this->hasIndex() || $this->tokenizer !== XSTokenizer::DFL);} ...
oh 谢谢!我试试[hr] require_once '/mnt/search/sdk/php/lib/XS.php'; $xs = new XS('test'); $skey = $_GET["skey"]; $search = $xs->search; $docs = $search->setQuery($skey."type:1")->search(); print_r($docs); 已经 [type] type = string index = self 了 但是搜索不到什么 改成...
... IteratorAggregate, Traversable 版本 1.0.0 源代码 sdk/php/lib/XSFieldScheme.class.php XS 数据字段方案 每个方案包含若干个字段结构对象 XSFieldMeta 每个方案必须并且只能包含一个类型为 ID 的字段, 支持 foreach 遍历所有字段 Publi...
...超过 255字节 $weight int 词重, 默认为 1 源码: sdk/php/lib/XSDocument.class.php#L236 (显示) public function addTerm($field, $term, $weight = 1){ $field = strval($field); if (!is_array($this->_terms)) { $this->_terms = array(); } if (!isset($this->_terms[$f...
...Lite » XSDatabasePDO » XSDatabase 版本 1.0.0 源代码 sdk/php/util/XSDataSource.class.php PDO.SQLite 实现 Protected 属性 隐去继承来的属性 名称类型描述定义于 obj XSDatabasePDO Public 方法 隐去继承来的方法 ...
...) {return} bool MySQL 自 4.1.0 起支持字符集 源码: sdk/php/util/XSDataSource.class.php#L534 (显示) public function setUtf8(){ if (version_compare(mysql_get_server_info($this->link), '4.1.0', '>=')) { return @mysql_query("SET NAMES utf8", $this->link); } return ...
[quote='fg0711' pid='187' dateline='1321069065'] 我把机器自带的PHP5.1删除了。然后用源代码的形式安装了5.3的php ,然后再安装xunsearch ,成功后在运行 sdk/php/util/RequiredCheck.php 结果出现提示: /usr/bin/env: php: 没有那个文件或目录 这是...
... 配置文件。go.ini项目的配置文件位于 /usr/local/xunsearch/sdk/php/app/go.ini 内容如下: [code]project.name = go project.default_charset = utf-8 ;服务端用默认值 ;server.index = 8383 ;server.search = 8384 [did] type = id [title] type = title [tag] index = se...
...turn} XSSearch 返回对象本身以支持串接操作 源码: sdk/php/lib/XSSearch.class.php#L386 (显示) public function addWeight($field, $term, $weight = 1){ return $this->addQueryTerm($field, $term, XS_CMD_QUERY_OP_AND_MAYBE, $weight);} 添加权重索引词 无论是否包含...
...turn} XSSearch 返回对象本身以支持串接操作 源码: sdk/php/lib/XSSearch.class.php#L332 (显示) public function setCollapse($field, $num = 1){ $vno = $field === null ? XSFieldScheme::MIXED_VNO : $this->xs->getField($field, true)->vno; $max = min(255, intval($num)); $cmd...