Hibernate Search 5.5.6.Final 发布了,Hibernate Search的作用是对数据库中的数据进行检索的。它是hibernate对著名的全文检索系统Lucene的一个集成方案,作用在于对数据表中某些内容庞大的字段(如声明为text的字段)建立全文索引,这样通过hibernate search就可以对这些字段进行全文检索后获得相应的POJO,从而加快了对内容庞大字段进行模糊搜索的速度(sql语句中like匹配)。
更新内容:
-
HSEARCH-2494:
@TikaBridge
will now work correctly on properties of typebyte[]
. -
HSEARCH-2535:
@Facet
with string encoding will now work properly on multi-valued properties (such asString[]
orList<String>
). -
HSEARCH-2486:
@ContainedIn
in a superclass will now be taken into account even if the concrete class does not carry any Hibernate Search annotation. -
HSEARCH-2479: building phrase queries with the Hibernate Search DSL used to trigger an
IllegalArgumentException
in some specific cases; this has been fixed.
更多请查看完整发行日志
下载地址: