搜索

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

1.RE: 不能增加索引,每次列队数加1

发布时间:2012-09-12 22:09 t By deling007

...uote='hightman' pid='1100' dateline='1347001498'] 是不是你启用了 beginRebuild() 却没有 endRebuild() 关闭它? [/quote] 没使用beginRebuild() ,系统会不会自己在一端时间后,或者发生什么状况后自己启动beginRebuild() ,反正就是增加不进去,一...

2.RE: 平滑重建索引问题

更新时间:2012-02-10 10:02 t By a114708367

哦这样啊 谢谢了,祝愿xs 越来越好,顶了。[hr] 这样子对否? $doc = new XSDocument; $doc->setFields($data); $index->beginRebuild(); $index->add($doc);//如果写update 行不行? $index->endRebuild();

3.RE: 平滑建索引问题

发布时间:2012-06-20 12:06 t By hightman

平滑重建意思就是: beginRebuild() 调用后就在服务端做一个标记,原数据库不变。db 然后接下来所有的 add/update/del 操作全部写入临时数据库。db_re 直到调用 endRebuild() 这时会把 db 改为 db_o,再把 db_re 改为 db 然后清除标记恢复正...

4.RE: 平滑重建索引问题

发布时间:2012-02-10 10:02 t By hpxl

...先执行删除操作,然后执行add操作,update也可以的 $index->beginRebuild(); $data = array(); $doc = new XSDocument; $doc->setFileds($data); $index->add($doc); // 这里是结束 $index->endRebuild();

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

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

...hp(1198): XSServer->execCommand(Array, 257) #1 Indexer.php(241): XSIndex->beginRebuild() #2 {main} [b]这是咋回事?[/b] 2、我又换成--stop-rebuild,可以成功建索引,[b]这是怎么回事?[/b] 但是,在data目录下看到的是 db.re这个目录。必须手动实行: ...

6.初次使用XS,关于平滑重建问题请教!

发布时间:2014-12-08 18:12 t By melody

...ebuild --source --sql="SELECT" --project=demo B、$index->beginRebuild(); foreach ($data as $k => $v) { $doc = new XSDocument; $doc->setFields($v); $index->update($doc); } $index->endRebuild(); 问题 1:命令行...

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

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

...,因为它是平滑重建,让人感觉很可靠。 由于 XSIndex::beginRebuild 和 XSIndex::endRebuild 必须配对使用,但如果索引创建过程出现某些错误导致程序提前结束,那么由于没有调用 endRebuild,下一次的索引提交和重建均会报告 has been Re...

8.建立索引不完整问题

发布时间:2012-03-14 16:03 t By 张十三

...php] $xs = new Search('demo'); $index = $xs->index; $index->beginRebuild(); while (true) { //无视读取数据部分,一次读取100条数据 $index->openBuffer(); foreach ($wikis as $wiki) { $array = array( 'pid' => (...

9.mysql导入数据不成功,开始重建索引后提示 [XSException] ../local/xunsearch/sdk/php/lib/XS.php(1898): DB

更新时间:2011-10-20 15:10 t By mengfanchao

开始重建索引 ... [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}

10.RE: 不能增加索引,每次列队数加1

发布时间:2012-09-07 15:09 t By hightman

是不是你启用了 beginRebuild() 却没有 endRebuild() 关闭它? [quote='deling007' pid='1091' dateline='1346655726'] $index->flushIndex(); 或 php Indexer.php --flush -p /var/www/xunsearch/goods.ini 用过后队列数还是没有改变,索引还是没有增加进去,仿佛就...

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