搜索

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

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

发布时间:2014-12-24 14:12 t By huye

$doc = new XSDocument; $doc->setFields($v); 改为 $doc = new XSDocument($v);

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.怎么创建词库啊?

发布时间:2013-01-09 18:01 t By pingrj

...部分', 'chrono' => time() ); // 创建文档对象 $doc = new XSDocument; $doc->setFields($data);

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

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

...eginRebuild(); foreach ($data as $k => $v) { $doc = new XSDocument; $doc->setFields($v); $index->update($doc); } $index->endRebuild(); 问题 1:命令行下平滑重建能不能输出执行时间 2:A和B方法重建原理一样...

5.建立索引不完整问题

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

... 'time' => time() ); $document = new XSDocument; $document->setFields($array); $index->update($document); } $index->closeBuffer(); } $index->endRebuild(); [/php] 实际数据为61084,但是写入到index的数...

6.请问: $index->add($doc)能调试的不

更新时间:2011-12-09 18:12 t By aecol

...长,省略了 // 创建文档对象 $doc = new XSDocument; $doc->setFields($data); if ($isnewdoc) { // 添加到索引数据库中 $index->add($doc); ...

7.failed to open file

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

... 'time' => time() ); $document = new XSDocument; $document->setFields($array); $index->add($document); echo (string)$wiki->getId()." is update to xunsearch Document \r\n"; $wiki_date = new MongoDate($wiki->getC...

8.全文检索 tokenizer = full 时,无法查询

发布时间:2013-09-04 16:09 t By hongjh

... 'hello my goodsname', 'goods_sn' => 'RX8899-114' ); $doc = new XSDocument; $doc->setFields($data); $xs->index->add($doc); 3. 查询 3.1 $docs = $xs->search->search('RX8899-114'); ===> 无结果 3.2 $docs = $xs->search->search('RX8899'); ===> 有结果 3.3 $docs = ...

9.为什么我更新的索引会没有数据呢?

更新时间:2012-09-28 10:09 t By zspoplar

...k/php/lib/XS.php'; $xs = new XS('zl'); $index = $xs->index; $doc = new XSDocument; $conn=mysql_connect("localhost", "root", "111111") or die("Could not connect: " . mysql_error()); mysql_select_db('zi, $conn) or die ('Can\'t use test : ' . mysql_error()); $result=mysql_query("select id,titl...

10.使用讯搜搭建phpwind的全文检索

更新时间:2012-05-18 09:05 t By myoula

... $thread['tid'] = $tid; $doc = new XSDocument; $doc->setFields($thread); $index->add($doc); } echo '200'; ...

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