I have a field that I am indexing with Lucene like so: @Field(name=\"hungerState\", index=Index.TOKENIZED, store=Store.YES)
I have a Java web app that I\'m developing, using JBoss Seam as the application framework.I\'d like to take advantage of Hibernate Search to provide entity searching capabilities.The integration has g
I am using Hibernate search 3.3 to search a Lucene index. I have a filter I need to use on a certain field, but also make it TOKENIZED for full text search. What I have found is that when I have the f
I have to implement 开发者_StackOverflowa keyword search from a CLOB column in my MySQL / JPA project.
We want to enable fulltext search on a Hibernate database for only some objectes of a specific entity. Is there a way to prevent hibernate search from indexing some instances of this entity? We do not
I am using Hibernate 3.6.3 Final and Hibernate Search 3.4.1. I wrote an HQL delete query. The objects are deleted from the database but they are not removed from the Lucene Index after the transaction
Is it possible to Index multiple entities within same index using Hibernate Search ? I have 3 entities User, Category and Campaign. These entities are not related to each other.
I want to implement lucene based hibernate search in my assignment. For generating domain objects I am using HyperJaxb3.
I am trying to index an embedded collection (Set) having one-to-many associati开发者_运维知识库on using @IndexedEmbedded.The problem is that we are only soft deleting the records in our application an
I am trying to inject a hibernate session to use with hibernate search and am having trouble figuring out how to setup the spring beans for hibernate search. I am aware that spring does not support hi