搜索

大约有 52 项符合查询结果, 库内数据总量为 3,513 项。 (搜索耗时:0.1927秒)

11.XSIndex::beginRebuild

beginRebuild() 方法 public XSIndex beginRebuild() {return} XSIndex 返回自身对象以支持串接操作 源码: sdk/php/lib/XSIndex.class.php#L391 (显示) public function beginRebuild(){ $this->execCommand(array('cmd' => XS_CMD_INDEX_REBUILD, 'arg1' => 0), XS_CMD_OK_DB_R...

12.XSIndex::stopRebuild

stopRebuild() 方法 (自版本 v1.3.4 起可用) public XSIndex stopRebuild() {return} XSIndex 返回自身对象以支持串接操作 源码: sdk/php/lib/XSIndex.class.php#L420 (显示) public function stopRebuild(){ try { $this->execCommand(array('cmd' => XS_CMD_INDE...

13.咨询2个建索引的问题

发布时间:2013-05-29 16:05 t By coos

...tos 5.6 内核:2.6.18-238.19.1.el5.centos.plus x86_64 1、我使用--rebuild建索引,会提示: [XSException] ../lib/XS.php(2233): DB has been rebuilding(S#407) #0 ../lib/XS.php(1198): XSServer->execCommand(Array, 257) #1 Indexer.php(241): XSIndex->beginRebuild() #2 {main} [b]这...

14.平滑重建索引,提示 "DB has been rebuilding" 就退出了。

更新时间:2012-08-08 22:08 t By ghxter

不知为何,提示 "DB has been rebuilding" 就退出了。:@ 代码参考: [php] // 宣布开始重建索引 $index->beginRebuild(); // 然后在此开始添加数据 ... $index->add($doc); ... // 告诉服务器重建完比 $index->endRebuild();[/php] 我的代码应该...

15.RE: 咨询2个建索引的问题

发布时间:2013-05-29 16:05 t By hightman

你的 rebuild 没完成就中断了吧。重启下机器或--stop-rebuild,然后重建

16.RE: 平滑重建索引,提示 "DB has been rebuilding" 就退出了, 原因已经明确。 在此更新测试信息。

更新时间:2012-08-08 22:08 t By ghxter

再次更新测试结果: 硬件信息: R410 至强四核E5620 2.4GHz*2/4G*4 1333MHz/600G*2/SAS-15Krpm Raid1 导入索引DEBUG信息: [code] 1998001, channelId=11, CostTime=2895.08, UpdateIndexTime=1226.33, UpdateProductTime=2742.26, ProductCount=10000, ProcessCount=2000000.00, MemoryUsag...

17.XSIndex::__destruct

...ndex.class.php#L528 (显示) public function __destruct(){ if ($this->_rebuild === true) { try { $this->endRebuild(); } catch (Exception $e) { } } foreach (self::$_adds as $srv) { $srv->close(); } self::$_adds = array(); parent::_...

18.导入mysql数据库只能使用1次吗?

发布时间:2012-06-25 14:06 t By limingyao

第一次导入数据: Indexer.php --rebuild --source=mys ql://root:123456@192.168.1.1/shop --sql="select * from search_products1" --project=demo 成功! Indexer.php --rebuild --source=mys ql://root:123456@192.168.1.1/shop --sql="select * from search_products2" --project=demo 再次导...

19.[enh] 改进 XSIndex 对象在异常时能自动 endRebuild

发布时间:2011-11-28 14:11 t By hightman

从与用户的交流情况看,很多人偏爱 util.Indexer 的 --rebuild 选项,因为它是平滑重建,让人感觉很可靠。 由于 XSIndex::beginRebuild 和 XSIndex::endRebuild 必须配对使用,但如果索引创建过程出现某些错误导致程序提前结束,那么由于...

20.平滑重建索引

...编代码时,把所有的 [XSIndex:add] 操作都放进 [XSIndex::beginRebuild] 和 [XSIndex::endRebuild] 之间即可。写法参考如下: ~~~ [php] // 宣布开始重建索引 $index->beginRebuild(); // 然后在此开始添加数据 ... $index->add($doc); ... // 告诉服务器重建完...

  • 时间不限
  • 按相关性排序