搜索

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

51.怎么创建词库啊?

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

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

52.数据导入 乱码问题

发布时间:2011-11-25 17:11 t By vist2007

... 导入数据成功 在本机用sdk 搜索数据 英文有结果,其中docs里 数据中文的是乱码 搜索中文 没有结果 $xs = new XS('entry'); $search = $xs->getSearch(); $search->setCharset('utf8'); 有结果中文乱码 $docs = $search->search('whitesnow'); 没有结果 ...

53.RE: 有没有详细一点的使用说明

发布时间:2011-12-28 10:12 t By hpxl

文档地址:[url=http://www.xunsearch.com/doc/php]http://www.xunsearch.com/doc/php[/url] demo演示地址:[url=http://www.xunsearch.com/demo]http://www.xunsearch.com/demo[/url]

54.英文模糊搜索问题

发布时间:2013-07-31 10:07 t By homingway

...== '') $this->length = $arg; } public function getTokens($value, XSDocument $doc=null){ $charset = is_object($doc) ? $doc->getCharset() : 'UTF-8'; $ret = array(); //如果词的总长度小于给定的长度,则直接返回该词 $strlen = mb_strlen($value,$charset); if($str...

55.RE: 请问如何实现多值搜索呢?

发布时间:2011-12-19 13:12 t By hightman

...叫 date 存的是 2011-11-07 那么你可以在索引的时候通过 $doc->addTerm('date', '2011'); $doc->addTerm('date', '201111'); 这样就可以通过 date:2011 或 date:201111 检索到这篇文章

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

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

...nsearch/sdk/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("sele...

57.XSIndex

...自动关闭开启的 rebuild add() 方法 public XSIndex add(XSDocument $doc) $doc XSDocument {return} XSIndex 返回自身对象以支持串接操作 源码: sdk/php/lib/XSIndex.class.php#L72 (显示) public function add(XSDocument $doc){ return $this->update($do...

58.[BUG] 文档更新 开启 openBuffer 报错

更新时间:2011-10-27 16:10 t By vist2007

... 'content'=>'这是测试文档,1242', 'date'=>102 ); $doc = new XSDocument($array, 'utf-8'); $xs->index->openBuffer(); $xs->index->add($doc); $xs->index->closeBuffer(); 报错...... Uncaught [XSErrorException] ../../../..(1098): file_get_contents(�) [functio...

59.RE: 有没有简洁的php演示搜索代码

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

util.searchskel直接生成默认的搜索 代码 ,你在那个基础 上修改就行了。 也可以参见util.Quest里的写法,真要简单搜索 也就大概下面几句就行了: [code] $xs = new XS('demo'); $docs = $xs->search->search('关键字'); print_r($docs); [/code]

60.RE: 请问如何实现多值搜索呢?

发布时间:2011-12-19 17:12 t By sofire

...叫 date 存的是 2011-11-07 那么你可以在索引的时候通过 $doc->addTerm('date', '2011'); $doc->addTerm('date', '201111'); 这样就可以通过 date:2011 或 date:201111 检索到这篇文章 [/quote]

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