搜索

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

1.setLimit最大值及效率问题

发布时间:2012-07-23 16:07 t By xilin

使用中发现setLimit大于100是无效的,最大只能为100,查了一下论坛说因为作cache的原因,所以一次最大只返回100。由于我根据作文章的查询,比如说每页显示100条标题的话,最大值为100的话,在用户点击下一页的,又要连接一次xu...

2.setLimit最大值及效率问题

发布时间:2012-07-23 16:07 t By xilin

使用中发现setLimit大于100是无效的,最大只能为100,查了一下论坛说因为作cache的原因,所以一次最大只返回100。由于我根据作文章的查询,比如说每页显示100条标题的话,最大值为100的话,在用户点击下一页的,又要连接一次xu...

3.RE: setLimit最大值及效率问题

发布时间:2012-11-28 11:11 t By chinapubmed

是呀,一般也就看下前10条,至多再看10条

4.RE: setLimit最大值及效率问题

发布时间:2012-11-28 10:11 t By 973432436

我觉得一次返回的太多了不好,因为用户对搜索结果一般就只看前面几条。

5.RE: setLimit最大值及效率问题

更新时间:2012-11-30 16:11 t By hightman

这个100是在源码中确定的,如果你要改就必须改服务端代码,然后重新编译。 参见:[url]https://github.com/hightman/xunsearch/blob/master/src/task.h#L14[/url]

6.setLimit的问题

发布时间:2011-12-12 17:12 t By icebolt

setLimit设置成100以上不起作用,最大只能是100

7.讯搜的一些优化

发布时间:2012-05-17 21:05 t By myoula

...搜索 $docs = $search->setQuery($keyword)->setSort('postdate', false)->setLimit(100, $size)->search(); $total = $search->getLastCount(); 实测 使用这种方式 比 ->search($keyword) 性能更优

8.XSSearch::getHotQuery

...heme(XSFieldScheme::logger()); try { $this->setDb(self::LOG_DB)->setLimit($limit); if ($type !== 'lastnum' && $type !== 'currnum') { $type = 'total'; } $result = $this->search($type . ':1'); foreach ($result as $doc) /* @var $doc XSDocument */ { ...

9.XSSearch::getRelatedQuery

...gger()); try { $result = $this->setDb(self::LOG_DB)->setFuzzy()->setLimit($limit + 1)->search($query); foreach ($result as $doc) /* @var $doc XSDocument */ { $doc->setCharset($this->_charset); $body = $doc->body; if (!strcasecmp($body, $query)) { ...

10.XSSearch::search

...认提取最匹配的前 self::PAGE_SIZE 个结果 如需分页请参见 setLimit 设置, 每次调用本函数后都会还原 setLimit 的设置

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