xunsearch模糊搜索按字段分组统计

2013-05-09 16:42 来源:www.chinab4c.com 作者:ecshop专家

      xunsearch模糊搜索按字段分组统计,我们在使用xunsearch做ecshop商品的搜索引擎的过程中,有时候需要把结果进行分组统计,而且实现分组排序和数量统计,还要实现xunsearch的精确搜索,还需要兼顾模糊搜索。xunsearch的模糊搜索很简单,设置setFuzzy就可以了。

                        $xs  = new XS('ec');

$search = $xs->search;
$search->setCharset('UTF-8');
$this->xs_search = $search;   //初始化xs对象,供其他地方调用
$search->setFuzzy (true);  //模糊匹配
$where = "  goods_name:$filter[keywords]";//查询条件
if ($filter['brand_id']) {
$where.=" AND brand_id:{$filter['brand_id']}";
}
if ($filter['cat_id']) {
$where.=" AND cat_id:{$filter['cat_id']}";
}
$res['matches'] = $search->setQuery($where)->setFacets(array('brand_id','cat_id'),true)->setLimit($filter['pagesize'],$filter['start'])->search();
$res['brand_id'] = $search->getFacets('brand_id'); 
$res['cat_id'] = $search->getFacets('cat_id'); 
$res['total'] = $search->getLastCount();
                   来源:http://www.chinab4c.com