开始重建索引 ... [XSException] ../local/xunsearch/sdk/php/lib/XS.php(1898): DB has been rebuilding(S#407) #0 ../local/xunsearch/sdk/php/lib/XS.php(1122): XSServer->execCommand(Array, 257) #1 Indexer.php(163): XSIndex->beginRebuild() #2 {main}
...-- 主键是指项目中类型为 `id` 的字段,删除是调用的是 [XSIndex::del] 方法,传入参数必须是 要删除的文档的`主键值`,或一系列主键值组成的`数组`。 ~~~ [php] $index->del('123'); // 删除主键值为 123 的记录 $index->del(array('123', '789', '45...
... 数据字段结构元数据 XSFieldScheme XS 数据字段方案 XSIndex XS 索引管理 XSSearch XS 搜索类, 执行搜索功能 XSServer XSServer 服务器操作对象 XS.tokenizer XSTokenizer 自定义字段词法分析器接口 XSTokenizerFull 内置整值...
... 和 `ok` 的记录。 管理同义词库 ------------ 您可以通过 [XSIndex::addSynonym] 和 [XSIndex::delSynonym] 来添加和删除同义词记录。 多次调用这两个接口函数的时候支持使用[索引缓冲区](index.buffer)来提高效率。 参数 `$raw` 是字符串,表示...
...组字段及其值,相当于常规SQL数据表中的一行记录。 * [XSIndex] 提供索引添加/删除/修改功能,通常以 `XS` 对象的属性方式出现,参见 [XS::index]。 * [XSSearch] 提供各种搜索功能,通常以 `XS` 对象的属性方式出现,参见 [XS::search]。 * ...
...ommand(Array, 201, 128) #3 /usr/local/xunsearch/sdk/php/lib/XS.php(2343): XSIndex->execCommand(Array, 201) #4 /usr/local/xunsearch/sdk/php/lib/XS.php(2296): XSServer->setProject('test') #5 /usr/local/xunsearch/sdk/php/lib/XS.php(2278): XSServer->open('8383') #6 /usr/local/xunsearch/sdk/php/lib/X...
...ky key (FIELD:pid) #0 /usr/local/xunsearch/sdk/php/util/Indexer.php(195): XSIndex->update(Object(XSDocument)) sql语句: sql="select c.contentid,c.status,b.contentid from phpcms_content c,phpcms_c_news b where c.contentid=b.contentid and c.status=99" 配置文件: project.name = h...
...Command(Array, 201, 128) #3 /usr/local/xunsearch/sdk/php/lib/XS.php(2343): XSIndex->execCommand(Array, 201) #4 /usr/local/xunsearch/sdk/php/lib/XS.php(2296): XSServer->setProject('test') #5 /usr/local/xunsearch/sdk/php/lib/XS.php(2278): XSServer->open('192.168.46.129:...') #6 /usr/local/xunsearch/sd...
... lib/XS.php(1192): XSServer->execCommand(Array, 257) #1 Indexer.php(197): XSIndex->beginRebuild() #2 {main}[hr] /sdk/php$ util/RequiredCheck.php Xunsearch PHP-SDK 运行需求检查 检查内容 -------- 本程序用于确认您的服务器配置是否能满足运...
...索引? --------------- 在 `PHP-SDK` 中,索引管理由类型为 [XSIndex] 的对象所维护。在 [XS] 项目中,通过读取 [XS::index] 属性来获取索引管理对象,然后展开各种操作,而不是自行创建对象。后面章节中 的相关测试代码如果没有特别编...