[Hibernate Search][1] is a Hibernate sub-project adding full text search capabilities to your persistence domain model by integrating [Apache Lucene][2] with Hibernate ORM. [1]: http://www.hibernate.org/subprojects/search.html [2]: http://lucene.apache.org/

learn more… | top users | synonyms

1
vote
1answer
23 views

how to get org.apache.lucene.document.Document after fully builded but before indexed

I'd like to inject my code somewhere in Hibernate Search where Document object is fully prepared but not indexed yet. As far as I understand concept Document object is created by ...
1
vote
1answer
17 views

Infinispan search inheritance search mapping configuration

I have simple code that test search engine in Infinispan. public class InifinispanTest { private static class DemoA { private Long id; public Long getId() { return ...
0
votes
1answer
16 views

@IndexedEmbedded on logical relationship

I have two tables (external, so I can not modify it). Tables has logical relationship (one has reference ID for other) only, without @OneTo* annotation. Is it possible for Hibernate Search index this ...
0
votes
1answer
24 views

Add tika bridge to new defined field in FieldBridge

I have entity witch points to binary data by numeric identifier (binId). Utility class can provide binary stream form given ID. My target is to index this binary stream - usually a file. The concept ...
0
votes
0answers
41 views

Object is not an indexed entity or a subclass of an indexed entity

I am doing some web app with hibernate, hibernate search, lucene and tapestry. Now, everything is OK, until I have deployed this part of code into my app. I keep getting this error Render queue error ...
0
votes
1answer
12 views

which index strategy choose for my web application using hibernate search and very huge database?

what i have : 1 - big database which is in constant growth. 2 - Web application made in glassfish and hibernate search. what's the problems : 1 - what the best index strategy to use knowing i ...
0
votes
0answers
19 views

How to add search index only for a particular subclass in Hibernate Search

I am new to Hibernate Search and full text search. I have gone through some of the basic tutorials. In my project, I have an Users super class inherited by 2 sub classes admins and sellers. Sellers ...
3
votes
1answer
31 views

How to handle abstract types in @IndexedEmbedded includepaths?

I'm trying to create a lucene index for a model partly consisting of abstract classes. Let's say I want to index class A, which has a method to return a list of class B elements, which all has a ...
0
votes
1answer
103 views

Hibernate Criteria - Fetching results from two tables without any association

I have been trying hard to implement a functionality of Search using Hibernate criteria. The requirement is bit vague. User could enter any text/word in the search field, the search has to be made ...
0
votes
1answer
28 views

Clearing cluster in infinispan lucene index

I have used Hibernate Search and have used Infinispan to store Lucene indexes. The configurations are as follows: in persistence.xml <property ...
0
votes
1answer
107 views

Spring, JPA, Hibernate Search integration

I have a Spring project where I'm trying to integrate Hibernate Search. The project works fine other than the part that involves Hibernate Search creating the indexes. From what I understand from ...
-4
votes
0answers
31 views

I am Using Hibernate-Search to do fullText Query ,but how to sort the Result. Somebody can give me a example. Thanks very much [closed]

Using Hibernate-Search to do fullText Query ,but how to sort the Result. Somebody can give me a example. Thanks very much.
0
votes
0answers
42 views

Hibernate-search search from any indexed entity

I am using Hibernate-search for searching data in my Jboss application. I have 3 JPA entity classes that all extend BaseEntity class and each are indexed by Lucene. For example: @MappedSuperclass ...
1
vote
1answer
44 views

Hibernate Search - Reindex when associated object is updated

I am using Hibernate Search. I have two classes Article and Publisher. public class Publisher { private String name; } public class Article { private Publisher publisher; private String ...
0
votes
1answer
58 views

Hibernate Search + Lucene AND Operator Query

I am currently going through Hibernate Search 4.1 I have one Table (file_data,fileName) I want to create one query like file_data:XYZ and fileName:abc.pdf How to perform this query? Below I have ...
0
votes
1answer
39 views

Integration of Hibernate search with RabbitMQ for distributed backend

Has anyone integrated Hibernate Search index queuing with RabbitMQ instead or JMS or ActiveMQ. We already use RabbitMQ as part of our application in several different areas. We don't want to ...
0
votes
0answers
29 views

How to create hibernate search indexes on Amazon s3

I have two applications (Spring MVC) which are deployed on EC2. One application will be used to create Hibernate Search indexes and the other application will access the same index files. Finally ...
1
vote
1answer
31 views

DuplicateFilter in Hibernate Search

I know there is a built-in DuplicateFilter in Lucene, to deduplicate the results from lucene. This is a very important feature for the users to search on the document database, where duplicating rate ...
0
votes
2answers
41 views

Hibernate search for read-only database

I need to perform full text queries with hibernate, and Hibernate Seach seems to be a good choice, and the capabilities for matching synonyms, etc are very interesting. The problem is that my ...
0
votes
2answers
212 views

Hibernate Search + Spring + JPA + 2 webapps - correct configuration

I have search long and hard, and cannot find a definitive answer. I have 2 webapps running on a single instance of tomcat: /server and /ROOT I have configured Hibernate Search configured for one of ...
0
votes
1answer
66 views

Hibernate QueryBuilder how to mimic 'like' query

I am learning this API now. I have some code as below, but it does an exact match instead of a 'like'. So when I have a String JMeter, and I use Meter, it does not bring it back in the search result ...
1
vote
1answer
80 views

building multiple indexes with hibernate search

I'm working on full-text-search functionality within a spring MVC project. The search function has to be able to search for multiple entities (which can selected by the user). I created a ...
0
votes
1answer
70 views

Hibernate search ignore analyzer in query

I'm trying to query a field with a custom field bridge that aggregates two fields. A typical value looks like this: myField:12345%FIELDSEPERATOR%4 This is the combination of 12345 and 4. It is ...
0
votes
1answer
55 views

Hibernate search query filter performance impact versus ad-hoc query

I have a repetitive criteria (filter out entities the user does not have access to) that I use for several hibernate search queries. Currently the criteria is generated by a function and is manually ...
0
votes
1answer
66 views

Hibernate merge() with versioning

I am using hibernate 3.6, mappings in XML. Starting off with the following schema. public class Card { @IndexedEmbedded private CardType cardType; private User user;//many-to-one ... } ...
0
votes
2answers
103 views

AND-searching child objects in Lucene / Hibernate-search

In my web application, competence data for users can be stored with a ranking 0-5. Using Hibernate search (built on top of Lucene), I wish to construct a query that finds all users with competence X ...
0
votes
4answers
161 views

can't find valid maven repository for hibernate-search-4.2.0.Final.jar

I use maven. I want to use the last version of hibernate-search : 4.2.0.Final I was under 3.3.0.Final I can't a valid maven repository for this version. Which maven repository I have to use to get ...
0
votes
1answer
93 views

Hibernate Search on EC2, “Unable to create index directory”

I'm trying to implement Hibernate Search on my aws application. As usual, everything works great on localhost, but when upload to aws, I receive the following error: ...
0
votes
1answer
178 views

error during MassIndexer operation : detached entity passed to persist, HSEARCH000058: HSEARCH000116

I've got an issue during massindexer operation. I use JPA 2.0-cr-1, Hibernate search 4.2.0.Final with hibernate 4.1.9.Final, and lucene version 3.6.2. I also use spring framework. It seems that I've ...
0
votes
1answer
54 views

Mapping abstract classes with includePaths

I have a question regarding mapping of Hibernate Search and using an abstract base class. I'm getting the following error Caused by: org.hibernate.search.SearchException: Found invalid ...
0
votes
1answer
124 views

How can I best apply Hibernate-Search in this case?

I have a Product entity and table and would like the database design to allow finding a product by different keywords on top of its name, that is, like using a thesaurus e.g. product name "HDR-TD20V" ...
0
votes
0answers
254 views

Integrate Spring 3.0.6, JPA2, Hibernate Search 4.1.1, EhCache and statistics

Im developing a web application based on Spring and Hibernate Search with Lucene. They recommend to use Ehcache for caching. I tried to integrate the cache first into my tests(with TestNG) but with ...
0
votes
2answers
66 views

HibernateSearch query

I am new to hibernate Search and i find difficulty in forming Hibernateserach query. I need to use IN opeartor to the List the String in Hibernate query . Can anybody help me to sort out this issue. ...
0
votes
2answers
143 views

Hibernate search. How to exclude entity from index?

I am new at hibernate search and I need to use it with my application database. I have a couple of indexed entities classes and I want exclude some entities from index based on their state. I my case ...
0
votes
1answer
57 views

Hibernate search, convert byte[] to List<LuceneWork>

As of Hibernate Search 3.1.1, when one wanted to send an indexed entity to a JMS queue for further processing, in the onMessage() method of the processing MDB was enough to apply a cast to obtain the ...
0
votes
2answers
164 views

How does Hibernate Search (Lucene indexing) work?

I am using Hibernate Search built on top of Lucene indexing. If indexes are created against database table the performance will be good in returning the results. My question is, once indexes are ...
0
votes
1answer
64 views

Intersect search results of multiple indexes Lucene efficently

I have two Lucene indexes (version 3.5.0), on which I am going to write with Hibernate Search. I need to implement a search that returns a result that is the intersection (AND) of the results on the ...
1
vote
2answers
193 views

Implementing a directory provider for hibernate search using MongoDB

I would like to use this solution for my site on Heroku so I can index using the MongoDB does anyone know of a good tutorial or book that gives an in depth example of how to do this? Googling didn't ...
1
vote
1answer
194 views

hibernate-search, spatial queries and the new lucene spatial module

I'm wanting to perform a spatial search in Hibernate. In particular, I'd like to store some items with a latitude / longitude then query which items are within x km of a given point. I have found ...
0
votes
0answers
26 views

Higest frequent terms from query

I'd like to crate a cloud with frequent terms. In the specific use case I need to query a list of Entities (for example Rss) for specific category and then extract the most frequent terms from this ...
0
votes
1answer
260 views

hibernate search wildcard phrase query

How to configure lucene + hibernate and develop wildcard query which matches some field by any exact part of that field value? For instance if we have some field "title" indexed and only two entries ...
1
vote
0answers
296 views

Error while indexing in Hibernate Search (before transaction completion)

I am tired of banging my head around this problem So if anyone could suggest me where I am wrong I'll be grateful. The problem is I am using Spring-Batch and Hibernate Full-Text Search in my Spring ...
0
votes
1answer
149 views

Escape forward slash character in Hibernate Search / Lucene

I'm using Hibernate search 4.2, Lucene 3.6. I have following column in the domain: @Column(name = "summarycontent") @Field(index = Index.YES, store = Store.YES) public String getSummarycontent() { ...
0
votes
1answer
99 views

Infinispan query without reflection

I am investigating Infinispan to speed up my application. An out-of-box configuration works even slower than persisting into SQL Server. I am aware of Hibernate Search config to tune Lucene indexing ...
0
votes
1answer
168 views

Hibernate Search Indexer process hangs after half work

I have 7 entity classes to index using Hibernate Search. Having tried both MassIndexer and FlushToIndexes, the indexer process churned away through the smallest entites but the largest entities/tables ...
0
votes
1answer
285 views

How to integrate Hibernate and Solr together?

For people working with Hibernate to manage their objects persistence, Hibernate search is a real savior. After trying to develop similar functionality (collecting all objects changes and sending them ...
0
votes
1answer
139 views

Hibernate-Search and Lucene 3.5 SpellChecker

I'm using Hibernate Search with Lucene 3.5 and trying to implement a "did you mean?" spellchecker search. I want to use the index as the dictionary. The issue I'm having is that the documentation for ...
2
votes
1answer
85 views

hibernate search on heroku

I have an application built with Spring+JPA+Hibernate running on Heorku, and I use Hibernate-Search for FullTextSearch. On my local machine i store my indexes on file system. My configuration in ...
1
vote
0answers
38 views

Does Hibernate Search allow to integrate lucene collector?

We are using Hibernate Search to do the full text search in our application. A customization field is tokenized into the lucene index. The customization field in the database actually contains values ...
0
votes
2answers
101 views

Hibernate Search Projection - StaticAliasToBeanResultTransformer

The Hibernate Search documentation for using a ResultTransformer gives the following example: org.hibernate.search.FullTextQuery query = s.createFullTextQuery( luceneQuery, Book.class ); ...

1 2 3 4 5 6