发布于 2015-09-25 00:32:00 | 233 次阅读 | 评论: 0 | 来源: 网友投递
Apache Solr 企业级全文搜索引擎
Solr是一个独立的企业级搜索应用服务器,它对外提供类似于Web-service的API接口。用户可以通过http请求,向搜索引擎服务器提交一定格式的XML文件,生成索引;也可以通过Http Get操作提出查找请求,并得到XML格式的返回结果;
Apache Solr 5.3.1 发布,主要更新内容如下:
Bug 修复 (10)
SOLR-7949: Resolve XSS issue in Admin UI stats page
(David Chiu via janhoy)
SOLR-8000: security.json is not loaded on server start
(noble)
SOLR-8004: RuleBasedAuthorization plugin does not work for the collection-admin-edit permission
(noble)
SOLR-7972: Fix VelocityResponseWriter template encoding issue. Templates must be UTF-8 encoded.
(Erik Hatcher)
SOLR-7929: SimplePostTool (also bin/post) -filetypes "*" now works properly in 'web' mode
(Erik Hatcher)
SOLR-7978: Fixed example/files update-script.js to be Java 7 and 8 compatible.
(Erik Hatcher)
SOLR-7988: SolrJ could not make requests to handlers with '/admin/' prefix
(noble , ludovic Boutros)
SOLR-7990: Use of timeAllowed can cause incomplete filters to be cached and incorrect results to be returned on subsequent requests.
(Erick Erickson, yonik)
SOLR-8041: Fix VelocityResponseWriter's $resource.get(key,baseName,locale) to use specified locale.
(Erik Hatcher)
SOLR-8058: Fix the exclusion filter so that collections that start with js, css, img, tpl can be accessed.
(Upayavira, Steve Rowe, Anshum Gupta)
Apache Solr (读音: SOLer) 是一个开源的搜索服务器。Solr 使用 Java 语言开发,主要基于 HTTP 和 Apache Lucene 实现。Apache Solr 中存储的资源是以 Document 为对象进行存储的。每个文档由一系列的 Field 构成,每个 Field 表示资源的一个属性。Solr 中的每个 Document 需要有能唯一标识其自身的属性,默认情况下这个属性的名字是 id,在 Schema 配置文件中使用:id
进行描述。
Solr是一个高性能,采用Java开发,基于Lucene的全文搜索服务器。文档通过Http利用XML加到一个搜索集合中。查询该集合也是通过 http收到一个XML/JSON响应来实现。它的主要特性包括:高效、灵活的缓存功能,垂直搜索功能,高亮显示搜索结果,通过索引复制来提高可用性,提 供一套强大Data Schema来定义字段,类型和设置文本分析,提供基于Web的管理界面等。