免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2260 | 回复: 0
打印 上一主题 下一主题

利用bobo-browse 实现lucene的分组统计功能 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-11-15 15:37 |只看该作者 |倒序浏览
利用bobo-browse 实现lucene的分组统计功能





bobo-browse 是一用java写的lucene扩展组件,通过它可以很方便在lucene上实现分组统计功能。

可以从 http://code.google.com/p/bobo-browse/ 上下载和查看相关文档。

下面介绍如何使用:

第一步:设置相关配置文件

bobo-browse 使用了spring,这里主要配置bobo.spring和field.xml两个文件。可以从他的源码例子中找到这两个文件,参考它做相应的修改。
  1. bobo.spring

  2. <?xml version="1.0" encoding="UTF-8"?>  <beans xmlns="http://www.springframework.org/schema/beans"      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"      xsi:schemaLocation="http://www.springframework.org/schema/beans [url]http://www.springframework.org/schema/beans/spring-beans.xsd[/url]">        <bean id="color" class="com.browseengine.bobo.facets.impl.SimpleFacetHandler">          <constructor-arg value="color"/>      </bean>            <bean id="category" class="com.browseengine.bobo.facets.impl.SimpleFacetHandler">          <constructor-arg value="category"/>      </bean>            <bean id="city" class="com.browseengine.bobo.facets.impl.PathFacetHandler">          <constructor-arg value="city"/>          <property name="separator" value="/"/>      </bean>            <bean id="makemodel" class="com.browseengine.bobo.facets.impl.PathFacetHandler">          <constructor-arg value="makemodel"/>          <property name="separator" value="/"/>      </bean>            <bean id="year" class="com.browseengine.bobo.facets.impl.RangeFacetHandler">          <constructor-arg value="year"/>          <constructor-arg value="true"/>      </bean>            <bean id="price" class="com.browseengine.bobo.facets.impl.RangeFacetHandler">          <constructor-arg value="price"/>          <constructor-arg>              <bean class="com.browseengine.bobo.facets.data.PredefinedTermListFactory">                  <constructor-arg value="java.lang.Float"/>                  <constructor-arg value="00000000000000000000"/>              </bean>          </constructor-arg>          <constructor-arg value="true"/>      </bean>            <bean id="mileage" class="com.browseengine.bobo.facets.impl.RangeFacetHandler">          <constructor-arg value="mileage"/>          <constructor-arg>              <bean class="com.browseengine.bobo.facets.data.PredefinedTermListFactory">                  <constructor-arg value="java.lang.Integer"/>                  <constructor-arg value="00000000000000000000"/>              </bean>          </constructor-arg>          <constructor-arg>               <list>                  <value>[* TO 12500]</value>                  <value>[12501 TO 15000]</value>                  <value>[15001 TO 17500]</value>                  <value>[17501 TO *]</value>               </list>          </constructor-arg>      </bean>        <bean id="tags" class="com.browseengine.bobo.facets.impl.MultiValueFacetHandler">          <constructor-arg value="tags"/>      </bean>            <bean id="handlers" class="java.util.ArrayList">          <constructor-arg>              <list>                  <ref bean="color"/>                  <ref bean="category"/>                  <ref bean="city"/>                  <ref bean="makemodel"/>                  <ref bean="year"/>                  <ref bean="price"/>                  <ref bean="mileage"/>                  <ref bean="tags"/>              </list>          </constructor-arg>      </bean>  </beans>   field.xml(前两天收到软件原作者John Wang的邮件 说field.xml不是必须的。)

  3. <?xml version="1.0" encoding="UTF-8"?>  <field-info>      <field>          <name type="simple">category</name>          <param name="preloadcache" value="true"/>      </field>      <field>          <name type="path">city</name>                          <param name="preloadcache" value="true"/>      </field>      <field>          <name type="simple">color</name>                          <param name="preloadcache" value="true"/>      </field>      <field>          <name type="path">makemodel</name>                          <param name="preloadcache" value="true"/>      </field>      <field>          <name type="range">price</name>                          <param name="preloadcache" value="false"/>                          <param name="value_type" value="float"/>                          <param name="format" value="00000000000000000000"/>                          <param name="display" value=".00"/>      </field>      <field>          <name type="range">year</name>                          <param name="preloadcache" value="false"/>                          <param name="value_type" value="integer"/>                          <param name="format" value="00000000000000000000"/>      </field>      <field>          <name type="range">mileage</name>                          <param name="preloadcache" value="false"/>                          <param name="value_type" value="integer"/>                          <param name="format" value="00000000000000000000"/>      </field>      <field>          <name type="multi">tags</name>          <param name="maxVal" value="15"/>          <param name="preloadcache" value="true"/>      </field>  </field-info>
复制代码
该组件提供了五种FacetHandler 来处理上面配置中的字段,字段中的一些属性设置可以参考他的api文档。
  1. simple: (com.browseengine.bobo.facets.impl.SimpleFacetHandler ) Used when there is a discrete set of facet values, for example: color, with values: red,green,blue,white,black. Each document can have only 1 value in this field. When being indexed, this field should not be tokenized.
复制代码
该字段的值只能对应一个分类或分组,并且该字段在索引是必须为非分词的。
  1. multi: (com.browseengine.bobo.facets.impl.MultiValueFacetHandler ) Similar to simple type field, multi field allows a document to have multiple values. When being indexed, this field can be tokenized. Or alternatively, one can index multiple values in multiple document fields under the same field name.
复制代码
该字段可以对应多个分类,并且字段需要分词的。
  1. compact multi: (com.browseengine.bobo.facets.impl.CompactMultiValueFacetHandler ) Same as MultiValueFacetHandler, multiple values are allowed, the total possible values are limited to 32. However, this is more efficient than MultiValueFacetHandler and has a smaller memory footprint.
复制代码
感觉应该和multi类似,我还没用过。

  1. path: (com.browseengine.bobo.facets.impl.PathFacetHandler ) Used to denote facet values with hierarchical structure, for example: "A/B/C/D" Each document can have only 1 value in this field. When being indexed, this field should not be tokenized.
复制代码
该字段我的理解是这样的,当前值属于:A(顶级分类)=>B(二级分类)=>C(三级分类)=>D(四级分类),字段必须为未分词的。
  1. range: (com.browseengine.bobo.facets.impl.RangeFacetHandler ) Used to denote a range of facet, e.g. dates, prices etc. Each document can have only 1 value in this field. When being indexed, this field should not be tokenized. Furthermore, the values need to be formatted to ensure sorting by lexical order is the same as the value order.
复制代码
范围,不用我介绍了,上面的bobo.spring里有这个例子。



参考它自带的例子 将你要进行分组的字段 设置好bobo.spring和field.xml这两个文件。

同时这两个文件要放在和索引文件的同一目录下。



第二步:搜索实现

字段配置写好之后,就可以在搜索的java文件中加上一些代码就可以得到统计结果了。

参考文档 http://code.google.com/p/bobo-browse/wiki/GettingStarted

比如我要获取color字段按多到少的10个值
  1. // opening a lucene index  Directory idx = FSDirectory.open(new File("myidx"));  IndexReader reader = IndexReader.open(idx);  // decorate it with a bobo index reader  BoboIndexReader boboReader = BoboIndexReader.getInstance(reader);  // creating a browse request  BrowseRequest br=new BrowseRequest();  br.setCount(10);  br.setOffset(0);  // parse a query  QueryParser qp = new QueryParser(fields,new StandardAnalyzer());  Query q=qp.parse(keyword);  br.setQuery(q);   // add the facet output specs  FacetSpec colorSpec = new FacetSpec();    colorSpec.setMaxHitCount(10);  colorSpec.setOrderBy(FacetSortSpec.OrderHitsDesc);   br.setFacetSpec("color",colorSpec);  // perform browse  Browsable browser=new BoboBrowser(boboReader);  BrowseResult result=browser.browse(br);  int totalHits = result.getNumHits();  BrowseHit[] hits = result.getHits();   Map<String,FacetAccessible> facetMap = result.getFacetMap();   FacetAccessible colorFacets = facetMap.get("color");  List<BrowseFacet> facetVals = colorFacets.getFacets();   
复制代码
经本人测试,效率还不错 ,有问题欢迎与我站内联系。

效果 可以参考它上面介绍的网站 http://www.simplyhired.com/a/jobs/list/o-13201

获取源码:http://sourceforge.net/projects/bobo-browse/develop

api:http://test.project-voldemort.com:8080/job/bobo-trunk/javadoc/
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP