搜索

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

11.XSSearch::search

...t($vnoes[$res->arg]) ? $vnoes[$res->arg] : $res->arg; $doc->setField($name, $res->buf); } } elseif ($res->cmd == XS_CMD_SEARCH_RESULT_MATCHED) { // matched terms if (isset($doc)) { $doc->setField('matched', explode(' ', $res->buf)...

12.XSDocument 文档

...、取值 $value = $doc->f('name'); // 用函数方式进行取值 $doc->setField('name', 'value'); // 用函数方式进行赋值 $doc->setFields(array('name' => 'value', 'name2' => 'value2')); // 用数组进行批量赋值 // 迭代方式取所有字段值 foreach($doc as $name => $value) { ...

13.建立索引不完整问题

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

... ); $document = new XSDocument; $document->setFields($array); $index->update($document); } $index->closeBuffer(); } $index->endRebuild(); [/php] 实际数据为61084,但是写入到index的数据不确定 在调整每次读取...

14.多属性字段按此字段值分面统计结果不正确

更新时间:2013-07-19 10:07 t By stcer

...s $node){ $cid = $node->getId(); if($i++ == 0){ $doc->setField('cid', $cid); }else{ $doc->addTerm('cid', $cid); } // 父类别id while($node = $node->getParent()){ $doc->addTerm('cid', $node->getId()); } } 搜索 $searc...

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

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

... $doc = new XSDocument; $doc->setFields($data); if ($isnewdoc) { // 添加到索引数据库中 $index->add($doc); } else { ...

16.添加文档

... 'chrono' => time() ); // 创建文档对象 $doc = new XSDocument; $doc->setFields($data); // 添加到索引数据库中 $index->add($doc); ~~~ $Id$

17.failed to open file

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

... ); $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->getCreatedAt()->getTimestamp()); ...

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

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

...e', '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 = $xs->search->search...

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

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

...id"]=$r['sid']; $a["content"]=$r['content']; $a["key"]=$r['key']; $doc->setFields($a); $index->update($doc); } 我是这样写的。

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

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

... $doc = new XSDocument; $doc->setFields($thread); $index->add($doc); } echo '200'; } } catch(XS...

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