... both tokenizer = full 2. 导入相关数据 require_once '/usr/local/xunsearch/sdk/php/lib/XS.php'; $xs = new XS('goods'); $data = array( 'goods_id' => 112, 'goods_name' => 'hello my goodsname', 'goods_sn' => 'RX8899-114' ); $doc = new XSDocument; $doc->setField...
...提示的词汇是我自己定制的。 大概需求 其实跟 http://bbs.xunsearch.com/showthread.php?tid=1170 这个老兄的需求差不多。 我有3个字段要做这样的搜索 配置是这样的: project.name = city [ID] type = id tokenizer = none [name] index = self tok...
...前不排序也不搜索则取得的数量就不对了 虽然http://www.xunsearch.com/doc/php/guide/search.count上提示“对于不带参数的 count 调用建议放在 search 之后,内部会进行优化,减少一次查询。”但我要进行分页,count()的操作不可能放在search(...
...返回任何结果,总是array() [/quote] 参见:[url]http://www.xunsearch.com/doc/php/guide/search.overview#ch4[/url] 搜索之后必须调用 setQuery 然后调用不带参数的 search() 才能进行搜索日志记录。 记录完毕后存放在 $prefix/data//search.log 可以看看这...
想列出所有数据,看了http://bbs.xunsearch.com/showthread.php?tid=349&pid=4427#pid4427这个帖子,把关键字设为空了 $xs = new XS($project); $search = $xs->search; $docs = $search->setQuery()->search(); 会提示setQuery 缺少参数,看了源码,原来写法是setQuery(...
...条数据失败 - Missing value of primarky key (FIELD:pid) #0 /usr/local/xunsearch/sdk/php/util/Indexer.php(195): XSIndex->update(Object(XSDocument)) sql语句: sql="select c.contentid,c.status,b.contentid from phpcms_content c,phpcms_c_news b where c.contentid=b.contentid and c.status=99" ...
...获得。 通过你提过的新词生词的TF/IDF计算器(http://www.xunsearch.com/scws/demo/get_tfidf.php) 结果计算出来的大部分内容都是一样的值,而且也无法用于分词。 另外用这个计算器计算得到的TF和IDF值和词典中原先的不一样。 如...
...获得。 通过你提过的新词生词的TF/IDF计算器(http://www.xunsearch.com/scws/demo/get_tfidf.php) 结果计算出来的大部分内容都是一样的值,而且也无法用于分词。 另外用这个计算器计算得到的TF和IDF值和词典中原先的不一样。 如...
...的概念,敬请参阅[这篇文章][1]。 适用情况 -------- 在 `xunsearch` 中,分面搜索是按照字段的值来实现的,为了结合条件做筛选搜索, 支持分面的字段需要进行索引,而它的分词方式最好必须是 `full` 即整值索引。 用法详细示...
//保护迅搜文件 include SRCPATH.'libs/xunsearch/lib/XS.php'; $this->temp_db = $ci->load->database ( $table_db_array[$table], TRUE ); //建立 XS 对象 $xs = new XS($project_name); //获取 索引对象 $index = $xs->index; $doc = new XSDocument; $result = array(); ...