本文转自 http://chuanliang2007.spaces.live.com/blog/cns!E5B7AB2851A4C9D2!499.entry?wa=wsignin1.0
因为搜索引擎功能在门户社区中对提高用户体验有着重在门户社区中涉及大量须要搜索引擎的功能需求。眼下在实现搜索引擎的方案上有集中方案可供选择:
1. 基于Lucene自己进行封装实现站内搜索。工作量及扩展性都较大,不採用。
2. 调用Google、Baidu的API实现站内搜索。同第三方搜索引擎绑定太死。无法满足后期业务扩展须要。临时不採用。
3. 基于Compass+Lucene实现站内搜索。
适合于对数据库驱动的应用数据进行索引,尤其是替代传统的like ‘%expression%’来实现对varchar或clob等字段的索引,对于实现站内搜索是一种值得採纳的方案。但在分布式处理、接口封装上尚须要自己进行一定程度的封装,临时不採用。
4. 基于Solr实现站内搜索。封装及扩展性较好。提供了较为完备的解决方式。因此在门户社区中採用此方案,后期增加Compass方案。
1、 Solr简单介绍
Solr是一个基于Lucene的Java搜索引擎server。Solr 提供了层面搜索、命中醒目显示并且支持多种输出格式(包含 XML/XSLT 和 JSON 格式)。它易于安装和配置。并且附带了一个基于 HTTP 的管理界面。
Solr已经在众多大型的站点中使用,较为成熟和稳定。Solr 包装并扩展了 Lucene,所以Solr的基本上沿用了Lucene的相关术语。更重要的是。Solr 创建的索引与 Lucene 搜索引擎库全然兼容。通过对Solr 进行适当的配置。某些情况下可能须要进行编码,Solr 能够阅读和使用构建到其它 Lucene 应用程序中的索引。此外,非常多 Lucene 工具(如Nutch、 Luke)也能够使用Solr 创建的索引。
2、 Tomcat下Solr安装配置
因为Solr基于java开发。因此Solr在windows及Linux都能较好部署使用。但因为Solr提供了一些用于測试及管理、维护较为方便的shell脚本,因此在生产部署时候建议安装在Linux上,測试时候能够在windows使用。
以下以Linux下安装配置Solr进行说明,windows与此类似。
wget http://apache.mirror.phpchina.com/tomcat/tomcat-6/v6.0.16/bin/apache-tomcat-6.0.16.zip
unzip apache-tomcat-6.0.16.zip
mv apache-tomcat-6.0.16 /opt/tomcat
chmod 755 /opt/tomcat/bin/*
wget http://apache.mirror.phpchina.com/lucene/solr/1.2/apache-solr-1.2.0.tgz
tar zxvf apache-solr-1.2.0.tgz
Solr的安装配置最为麻烦的是对solr.solr.home的理解和配置,主要有三种
基于当前路径的方式
cp apache-solr-1.2.0/dist/apache-solr-1.2.0.war /opt/tomcat/webapps/solr.war
mkdir /opt/solr-tomcat
cp -r apache-solr-1.2.0/example/solr/ /opt/solr-tomcat/
cd /opt/solr-tomcat
/opt/tomcat/bin/startup.sh
因为在此种情况下(没有设定solr.solr.home环境变量或JNDI的情况下),Solr查找./solr。因此在启动时候须要切换到/opt/solr-tomcat
基于环境变量solr.solr.home
在当前用户的环境变量中(.bash_profile)或在/opt/tomcat/catalina.sh中加入例如以下环境变量
export JAVA_OPTS="$JAVA_OPTS -Dsolr.solr.home=/opt/solr-tomcat/solr"
基于JNDI配置
mkdir –p /opt/tomcat/conf/Catalina/localhost
touch /opt/tomcat/conf/Catalina/localhost/solr.xml 。内容例如以下:
- <Context docBase="/opt/tomcat/webapps/solr.war" debug="0" crossContext="true" >
- <Environment name="solr/home" type="java.lang.String" value="/opt/solr-tomcat/solr" override="true" />
- </Context>
訪问solr管理界面 http://ip:port/solr
3、 Solr原理
Solr对外提供标准的http接口来实现对数据的索引的添加、删除、改动、查询。
在 Solr 中。用户通过向部署在servlet 容器中的 Solr Web 应用程序发送 HTTP 请求来启动索引和搜索。Solr 接受请求,确定要使用的适当SolrRequestHandler。然后处理请求。通过 HTTP 以相同的方式返回响应。
默认配置返回Solr 的标准 XML 响应。也能够配置Solr 的备用响应格式。
能够向 Solr 索引 servlet 传递四个不同的索引请求:
add/update 同意向 Solr 加入文档或更新文档。直到提交后才干搜索到这些加入和更新。
commit 告诉 Solr,应该使上次提交以来所做的全部更改都能够搜索到。
optimize 重构 Lucene 的文件以改进搜索性能。索引完毕后执行一下优化通常比較好。假设更新比較频繁。则应该在使用率较低的时候安排优化。一个索引无需优化也能够正常地执行。优化是一个耗时较多的过程。
delete 能够通过 id 或查询来指定。按 id 删除将删除具有指定 id 的文档;按查询删除将删除查询返回的全部文档。
一个典型的Add请求报文
- <add>
- <doc>
- <field name="id">TWINX2048-3200PRO</field>
- <field name="name">CORSAIR XMS 2GB (2 x 1GB) 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) Dual Channel Kit System Memory - Retail</field>
- <field name="manu">Corsair Microsystems Inc.</field>
- <field name="cat">electronics</field>
- <field name="cat">memory</field>
- <field name="features">CAS latency 2, 2-3-3-6 timing, 2.75v, unbuffered, heat-spreader</field>
- <field name="price">185</field>
- <field name="popularity">5</field>
- <field name="inStock">true</field>
- </doc>
- <doc>
- <field name="id">VS1GB400C3</field>
- <field name="name">CORSAIR ValueSelect 1GB 184-Pin DDR SDRAM Unbuffered DDR 400 (PC 3200) System Memory - Retail</field>
- <field name="manu">Corsair Microsystems Inc.</field>
- <field name="cat">electronics</field>
- <field name="cat">memory</field>
- <field name="price">74.99</field>
- <field name="popularity">7</field>
- <field name="inStock">true</field>
- </doc>
- </add>
一个典型的搜索结果报文:
- <response>
- <lst name="responseHeader">
- <int name="status">0</int>
- <int name="QTime">6</int>
- <lst name="params">
- <str name="rows">10</str>
- <str name="start">0</str>
- <str name="fl">*,score</str>
- <str name="hl">true</str>
- <str name="q">content:"faceted browsing"</str>
- </lst>
- </lst>
- <result name="response" numFound="1" start="0" maxScore="1.058217">
- <doc>
- <float name="score">1.058217</float>
- <arr name="all">
- <str>http://localhost/myBlog/solr-rocks-again.html</str>
- <str>Solr is Great</str>
- <str>solr,lucene,enterprise,search,greatness</str>
- <str>Solr has some really great features, like faceted browsing and replication</str>
- </arr>
- <arr name="content">
- <str>Solr has some really great features, like faceted browsing and replication</str>
- </arr>
- <date name="creationDate">2007-01-07T05:04:00.000Z</date>
- <arr name="keywords">
- <str>solr,lucene,enterprise,search,greatness</str>
- </arr>
- <int name="rating">8</int>
- <str name="title">Solr is Great</str>
- <str name="url">http://localhost/myBlog/solr-rocks-again.html</str>
- </doc>
- </result>
- <lst name="highlighting">
- <lst name="http://localhost/myBlog/solr-rocks-again.html">
- <arr name="content">
- <str>Solr has some really great features, like <em>faceted</em>
- <em>browsing</em> and replication</str>
- </arr>
- </lst>
- </lst>
- </response>
关于solr的具体使用说明。请參考
http://wiki.apache.org/solr/FrontPage
4、 Solr測试使用
Solr的安装包包括了相关的測试例子,路径在apache-solr-1.2.0/example/exampledocs
1. 使用shell脚本(curl)測试Solr的操作:
cd apache-solr-1.2.0/example/exampledocs
vi post.sh。依据tomcat的ip、port改动URL变量的值URL=http://localhost:8080/solr/update
./post.sh *.xml #
2. 使用Solr的java 包測试Solr的操作:
查看帮助:java -jar post.jar –help
提交測试数据:
java -Durl=http://localhost:8080/solr/update -Ddata=files -jar post.jar *.xml
以下以添加索引字段liangchuan、url为例,说明一下Solr中索引命令的使用
1) 改动solr的schema。配置须要索引字段的说明:
vi /opt/solr-tomcat/solr/conf/schema.xml ,在<fields>中添加例如以下内容
- <field name="liangchuan" type="string" indexed="true" stored="true"/>
- <field name="url" type="string" indexed="true" stored="true"/>
<field name="liangchuan" type="string" indexed="true" stored="true"/> <field name="url" type="string" indexed="true" stored="true"/>
2) 创建添加索引请求的xml測试文件
touch /root/apache-solr-1.2.0/example/exampledocs/liangchuan.xml,内容例如以下:
- <add>
- <doc>
- <field name="id">liangchuan000</field>
- <field name="name">Solr, the Enterprise Search Server</field>
- <field name="manu">Apache Software Foundation</field>
- <field name="liangchuan">liangchuan's solr "hello,world" test</field>
- <field name="url">http://www.google.com</field>
- </doc>
- </add>
3) 提交索引请求
cd apache-solr-1.2.0/example/exampledocs
./post.sh liangchuan.xml
4) 查询
通过solr的管理员界面http://localhost:8080/solr/admin查询
或通过curl 測试:
export URL="http://localhost:8080/solr/select/"
curl "$URL?indent=on&q=liangchuan&fl=*,score"
5、Solr查询条件參数说明
參数 描写叙述 演示样例
q
Solr 中用来搜索的查询。能够通过追加一个分号和已索引且未进行断词的字段的名称来包括排序信息。
默认的排序是 score desc,指按记分降序排序。
q=myField:Java AND otherField:developerWorks; date asc
此查询搜索指定的两个字段并依据一个日期字段对结果进行排序。
start 将初始偏移量指定到结果集中。
可用于对结果进行分页。默认值为 0。
start=15
返回从第 15 个结果開始的结果。
rows 返回文档的最大数目。默认值为 10。 rows=25
fq 提供一个可选的筛选器查询。查询结果被限制为仅搜索筛选器查询返回的结果。筛选过的查询由 Solr 进行缓存。它们对提高复杂查询的速度很实用。
不论什么能够用 q 參数传递的有效查询,排序信息除外。
hl 当 hl=true 时,在查询响应中醒目显示片段。
默觉得 false。參看醒目显示參数上的 Solr Wiki 部分能够查看很多其它选项 hl=true
fl 作为逗号分隔的列表指定文档结果中应返回的 Field 集。
默觉得 “*”,指全部的字段。“score” 指还应返回记分。
*,score
当中关于Solr查询相关的參数具体的信息请參看:
http://wiki.apache.org/solr/CommonQueryParameters
Solr的查询条件參数q的格式与Lucene同样,详细參看:
http://lucene.apache.org/java/docs/queryparsersyntax.html
支持一下吆 请收藏一下:非常好
6、 在门户社区中solr使用模式
在门户社区中须要使用solr。可採用例如以下模式:
对原有系统已有的数据或须要索引的数据量较大的情况
直接採用通过http方式调用solr的接口方式。效率较差,採用solr本身对csv 的支持(http://wiki.apache.org/solr/UpdateCSV
),将数据导出为csv格式,然后调用solr的csv接口http://localhost:8080/solr/update/csv
对系统新增的数据
先将须要索引查询的数据组装成xml格式。然后使用httpclient 将数据提交到solr 的http接口,比如
http://localhost:8080/solr/update
也能够參考post.jar中的SimplePostTool的实现。
http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/util/SimplePostTool.java?view=co
中文分词
採用庖丁解牛作为solr(Lucene)缺省的中文分词方案
项目库:http://code.google.com/p/paoding/
Google groups:http://groups.google.com/group/paoding
Javaeye的groups:http://analysis.group.javaeye.com/
与nutch的集成使用
http://blog.foofactory.fi/2007/02/online-indexing-integrating-nutch-with.html
嵌入式Solr
http://wiki.apache.org/solr/Solrj#EmbeddedSolrServer
分布式索引
http://wiki.apache.org/solr/CollectionDistribution
7、參考资料
http://wiki.apache.org/solr/
http://www.ibm.com/developerworks/cn/java/j-solr1/
http://www.ibm.com/developerworks/cn/java/j-solr2/
http://www.xml.com/pub/a/2006/08/09/solr-indexing-xml-with-lucene-andrest.html?page=1
http://lucene.apache.org/java/docs/queryparsersyntax.html
http://www.blogjava.net/RongHao/archive/2007/11/06/158621.html