... [php]$xs=new XS('shi'); $search=$xs->search; $docs=$search->setQuery($keyword)->setLimit(12,($list_page-1)*12)->search(); $count=$search->getLastCount(); $time=$search->setQuery($keyword)->setSort('time')->setLimit(22)->search();[/php] 不知这样重复检索效率好不好 [php]$xs=new XS(...
因为mysql的 like "%keyword%" 没有用索引,所以我打算用xunsearch先查到对应数据的主键,然后再通过主键查询mysql,不知道有没有人这么做过?在xunsearch里怎么实现类似 like "%keyword%" 这样的功能呢?
现在如果有的字段搜索的为数字,则热门关键词会出现数字,能否说系统记录hotkey的时候,比如搜索keyword(搜索词),city(城市),热门关键词只记录keyword,或者说排除数字的记录?
...3 还是视情况调整 4 sdk中的搜索 $docs = $search->setQuery($keyword)->setSort('postdate', false)->setLimit(100, $size)->search(); $total = $search->getLastCount(); 实测 使用这种方式 比 ->search($keyword) 性能更优
... 另 1.$doc->from 取值也是乱,不是gbk或utf8的问题 2. setQuery($keyword) 里面的keyword不为空时,是不会出现乱码的
[php][cid] index = self tokenizer = split(,) non_bool = yes[/php] 字段设置如上,解决方法如下。 [php] foreach ($keywords as $v) { $search->addQueryTerm($field, $v); }[/php]
例如: $query = $xs->search->setQuery($keyword); if ($c1) { $query->addRange('c1',$c1,$c2); } if ($d1) { $query->addRange('d1',$d1,$d2); } $query->setMultiSort($sorts); $rs = $query->setLimit($perPage,$start)->search(); $count = $xs->search->getLastCount(); 这时$count不准确,我看过论坛...
... array_push($stack, $word['word']); } $subject = implode(' OR ', $stack); $keyword = $metakeywords = implode(' ', $stack); $search = $xs->search; $search->setCharset('GBK')->setLimit($ppp, $start_limit)->addWeight('subject', $subject)->setQuery($subject); $docs = $search->search(); 貌似有个问...
... ["flag":"XSFieldMeta":private]=> int(19) } ["keyword"]=> object(XSFieldMeta)#25 (7) { ["name"]=> string(7) "keyword" ["cutlen"]=> int(0) ["weight"]=> int(1) ["type"]=> int(0...
...title] type = string [copyfrom] type = string [totalhit] type = string [keywords] type = string [sendtime] type = numeric 在添加索引时,文档中有说会自动转码,所以所有字段都不需要用iconv将gbk转为utf-8就可以正常使用。sendtime在数据库中是时间戳(int...