搜索

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

51.怎么创建词库啊?

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

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

52.XSTokenizerXstep::getTokens

...lib/XSTokenizer.class.php#L147 (显示) public function getTokens($value, XSDocument $doc = null){ $terms = array(); $i = $this->arg; while (true) { $terms[] = substr($value, 0, $i); if ($i >= strlen($value)) { break; } $i += $this->arg; } retur...

53.RE: 关于主表、子表同时参与检索的设计

更新时间:2013-03-31 13:03 t By hightman

xunsearch 你可以 XSDocument::addTerm 比多值属性更方便啊

54.XSTokenizerSplit::getTokens

.../lib/XSTokenizer.class.php#L86 (显示) public function getTokens($value, XSDocument $doc = null){ if (strlen($this->arg) > 2 && substr($this->arg, 0, 1) == '/' && substr($this->arg, -1, 1) == '/') { return preg_split($this->arg, $value); } return explode($this->arg, $value);}

55.RE: 建议能否增加一个检索过滤接口 SetFilter

更新时间:2012-04-19 15:04 t By bear

请问 类似 XSDocument::addTerm的操作 能否在批量导入sql数据生成索引时 实现?比如在自定义DataFilter里?

56.XSTokenizerNone

.../lib/XSTokenizer.class.php#L46 (显示) public function getTokens($value, XSDocument $doc = null){ return array();}

57.XSTokenizerFull

.../lib/XSTokenizer.class.php#L62 (显示) public function getTokens($value, XSDocument $doc = null){ return array($value);}

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

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

...,update也可以的 $index->beginRebuild(); $data = array(); $doc = new XSDocument; $doc->setFileds($data); $index->add($doc); // 这里是结束 $index->endRebuild();

59.自定义分词器

...okenizerXyz implements XSTokenizer { public function getTokens($value, XSDocument $doc = null) { $ret = array(); if (!empty($value)) $ret = explode('-', $value); return $ret; } } ~~~ > note: [XSTokenizer::getTokens] 的参数 `$value` 的编码始终...

60.导入库的时候乱码,如下:

发布时间:2012-05-06 14:05 t By weizhao

... /home/www/xunsearch/sdk/php/util/Indexer.php(237): XSIndex->update(Object(XSDocument)) 数据库是UTF-8字符集。

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