发布于 2016-04-27 08:48:33 | 142 次阅读 | 评论: 0 | 来源: 网友投递
Hibernate Search 全文检索工具
Hibernate Search是在apache Lucene的基础上建立的主要用于Hibernate的持久化模型的全文检索工具。像Lucene这样的检索引擎能够给我们的项目在进行检索的时候带来 非常高的效率,但是它们在基本对象的检索时会有一些问题,比如不能实现检索内容跟实体的转换,Hibernate Search正是在这样的情况下发展起来的,基于对象的检索引擎,能够很方便的将检索出来的内容转换为具体的实体对象。此外Hibernate Search能够根据需要进行同步或异步的索引更新。
Hibernate Search 5.5.3.Final 发布了,改进日志如下:
HSEARCH-1917 - Cannot index null or empty values for faceted fields
HSEARCH-2082 - Documentation refers to @SortField when it should be @SortableField
HSEARCH-2085 - Typo in hibernate-search-engine logger
HSEARCH-2086 - Long and Date range faceting doesn’t honor hasZeroCountsIncluded
HSEARCH-2179 - Hanging during shutdown of SyncWorkProcessor
HSEARCH-2193 - LuceneBackendQueueTask does not release the Directory lock on update failures
HSEARCH-2200 - Typo in log message
HSEARCH-2240 - Parallel service lookup might fail to find the service
HSEARCH-2199 - Allows the use of CharFilter in the programmatic API of SearchMapping
HSEARCH-2084 - Upgrade to WildFly 10.0.0.Final
HSEARCH-2089 - Ensure the performance tests do not use the WildFly embedded version of Search
HSEARCH-1951 - Improve resulting error message when applying the wrong Sort Type
HSEARCH-2090 - Using the wrong header in the distribution/pom.xml
HSEARCH-2241 - Clarify deprecation of setFilter() method on FullTextQuery
下载地址:http://hibernate.org/search/downloads/
Hibernate Search主要有以下功能特点:
1,功能强大,配置简单 - 配置只需要修改persistence.xml(JPA),hibernate.cfg.xml(Hibernate)
2,支持Hibernate,以及EJB3 JPA标准应用
3,集成全文搜索引擎Lucene - Lucene是Apache项目组下的一个功能强大的全文搜索引擎项目
4,可以简单透明索引查询过的数据
5,支持复杂检索 - 支持Wild Card(诸如*, ?等通配符号),多关键字,模糊查询,排序等
6,支持Clustering
7,支持直接访问Lucene API
8,对Lucene索引,API的高效管理