Tagged Questions
The hibernate-search tag has no wiki summary.
6
votes
2answers
435 views
Autocomplete using Hibernate Search
I am trying to build a better autocomplete feature for my website. I want to use Hibernate Search for this but as far as I experimented it only finds full words for me.
So, my question: is it ...
5
votes
0answers
169 views
Hibernate Search QueryBuilder: query for non-entity field
I am trying to use the QueryBuilder from Hibernate Seaerch with a field which is not a property of the respective Entity but rather constructed on the fly using an ClassBridge. Can I do that?
...
5
votes
4answers
640 views
Solr vs Hibernate Search - Which to choose and When?
We are building an ecommerce application. We are using JAVA stack with Hibernate and Spring Framework. As with all ecommerce application, we need to build search capability into ours.
So, we came ...
4
votes
3answers
140 views
Hibernate Search, Entities, and SQL VIEWs
I have a table that maintains rows of products that are for sale (tbl_products) using PostgreSQL 9.1. There are also several other tables that maintain ratings on the items, comments, etc. We're ...
4
votes
3answers
1k views
hibernate search + spring3 + jpa
I'm trying to integrate hibernate search in my project. My models are indexed, but for some reason my search queries do not return any results. I've been trying to solve this issue for a few hours ...
4
votes
4answers
3k views
indexing data in Hibernate Search
I just start integrate Hibernate Search with my hibernate application. The data is indexed by using Hibernate Session everytime i start the server.
FullTextSession fullTextSession = ...
3
votes
1answer
410 views
BooleanQuery$TooManyClauses exception when using wildcard queries
I'm using Hibernate Search / Lucene to maintain a really simple index to find objects by name - no fancy stuff.
My model classes all extend a class NamedModel which looks basically as follows:
...
3
votes
2answers
1k views
Multiple-index searching in Lucene (hibernate search)
Official Lucene Feautures site states that lucene supports "multiple-index searching with merged results".
Is it possible to do this with hibernate search somehow?
My usecase: Aricle with Comments. ...
2
votes
1answer
22 views
Will NHibernate Search ever become aware of changes to the underlying data?
I've seen several statements online to the effect that NHibernate (or Hibernate) Search "takes care of the database/index synchronization".
When I read these statements, I cannot help but wonder if ...
2
votes
1answer
79 views
Hibernate search storing byte[] in index
I have following config in my POJO:
@Field(index = Index.NO, store = Store.YES)
private byte[] file;
When I start my Apps container I get following exception:
Caused by: ...
2
votes
1answer
83 views
Lucene Analyzer for Indexing and Searching
I have a field that I am indexing with Lucene like so:
@Field(name="hungerState", index=Index.TOKENIZED, store=Store.YES)
public HungerState getHungerState() {
The possible values of this field are ...
2
votes
1answer
61 views
Hibernate Search in a Clustered Configuration?
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 ...
2
votes
1answer
258 views
Hibernate Search Filter not having expected results with Enum
I'm using hibernate search 3.4, and I'm running in to a small problem. I have a filter I'm attempting to use (CourseStatusFilterFactory), but every time I enable it, no results are returned. I have ...
2
votes
2answers
150 views
what analzyer is good for my situation? hibernate search case
We are running a search app for book. It is implemented by hibernate search.
Book entity is defined as following:
@Entity
@Indexed
public class Book{
@DocumentId
private Integer UID;
@Field
private ...
2
votes
1answer
78 views
Why is Lucene sometimes not matching InChIKeys?
I have indexed my database using Hibernate Search. I use a custom analyzer, both for indexing and for querying. I have a field called inchikey that should not get tokenized. Example values are:
...
2
votes
0answers
206 views
Lucene DistanceQueryBuilder
I am having a few problems understanding Lucene Spatial (partially due to a lack of documentation and good examples and partially due to stupidity I am sure!)
I am trying to run a query :-
...
2
votes
1answer
158 views
Hibernate Search and Relations
I have an object called MyItemBean which can have 0 or more associated KeywordBean objects. The resulting classes look like this:
@Entity
public class MyItemBean {
...stuff...
...
2
votes
2answers
380 views
Using Hibernate-Search for Complex Queries instead of Criteria API
In an app using Wicket+Spring+JPA/Hibernate stack, I have an Inbox/Search page which should have quite complex search capabilities, where records saved in a database are filtered using a myriad of ...
2
votes
2answers
448 views
whats wrong with this simple HQL syntax?
Hi i am trying to execute this simple HQL query to get a list of files from my database using:
private static final String SQL_GET_FILE_LIST = "select filename, size, id, type from fileobject";
...
2
votes
4answers
511 views
How to not transform special characters to html entities with owasp antisamy
I use Owasp Anti samy with Ebay policy file to prevent XSS attacks on my website.
I also use Hibernate search to index my objects.
When I use this code:
String html = "special word: été";
// ...
1
vote
0answers
49 views
Integrating Hibernate search With Spring
Can any one help me in integrating Hibernate search for folder searching.
With configuration setting i tried for annotation based where as i have to search
the folders containing pdf files.
It will be ...
1
vote
0answers
60 views
Merging Hibernate Search results with relational database query
I have a complex query that requires a full-text search on some fields and basic restrictions on other fields. Hibernate Search documentation strongly advises against adding database query ...
1
vote
1answer
116 views
Hibernate Search Filter not working with Tokenized field
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 ...
1
vote
0answers
61 views
Hibernate HQL query does not update the Lucene Index
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 ...
1
vote
2answers
155 views
Hibernate Search @IndexedEmbedded
I have a similar situation like this one
@Entity
@Indexed
public class Place {
@Id
@GeneratedValue
@DocumentId
private Long id;
@Field( index = Index.TOKENIZED )
private ...
1
vote
1answer
126 views
Memory leak during in hibernate search
Greeting,
We are facing memory leak issue recently on one of our apps.
Development environment : Lucene2.4.0, hibernate search3.2.0, hibernate 3.5.0, spring2.5 and ehcache 1.4.1
The problem is that ...
1
vote
1answer
228 views
Hibernate search with Criteria restriction returning incorrect count
The result list is perfect but the getResultSize() is incorrect.
I've knocked up some code to illustrate.
Criteria criteria2 = this.getSession().createCriteria(Film.class);
...
1
vote
1answer
113 views
Hibernate Search not indexing embedded collections properly
I'm currently working on a project that involves the use of Hibernate Search. Currently the project uses pure SQL for its searches and we would like to use a text search instead (Needing to know and ...
1
vote
0answers
80 views
Lucene deletable files are locked
I use to reindex MassIndexer. I got example of code from some site(can't remember where).
massIndexe.purgeAllOnStart(true) // true by default, highly recommended
.optimizeAfterPurge(true) // true is ...
1
vote
3answers
165 views
Which one is better for efficient free text search, Hibernate Search or Lucene?
We are developing a web application using Spring MVC, Spring and Hibernate.
We need to add efficient free text search capabilities to our applications. For this we are thinking of using either ...
1
vote
1answer
642 views
FullTextHibernateSessionProxy is not visible from class loader
I have run into a very strange error that I can´t wrap my head around. I´m running Seam 2.2.1.CR2 and JBoss 4.3.0.GA. My application consist of 3 modules:
application.xml
...
1
vote
3answers
215 views
hibernate search without database
Is it possible to use hibernate-search only for it's annotations (bean => document/document => bean mapping), without using a database at all? If so, are there any online samples that show basically ...
1
vote
1answer
196 views
Hibernate Search Fails with Double Type Greater than 5 Digits
I have the following fields on an entity:
@Field(index = Index.TOKENIZED, store = Store.YES)
@Column(name = "total_credit_amount", nullable = false)
@FieldBridge(impl = RoundedDoubleBridge.class)
...
1
vote
1answer
285 views
Beginner hibernate / spring / hiberante-search question (Configuration)
I am sure this is a fairly simple question but I can't seem to phrase it in a way google can help.
In the hibernate-search docs there is a programmatic API ...
1
vote
2answers
411 views
Error while starting Hibernate Search in Web app
can someone help, I placing hibernate search in my web app and getting the following error:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
...
1
vote
1answer
257 views
(HibernateSearch) MultiFieldQueryParser different analyzer per field
Some of my indexed fields use a Greek analyzer and I want to use an English analyzer for some other fields. My problem is: When searching for results (with a MultiFieldQueryParser currently), how can ...
1
vote
1answer
43 views
How to index attributes from associations?
When I'm indexing objects in my application (using hibernate search and lucene) I would like to store in the index some of the attributes of the object's associations. I need to store them in the ...
1
vote
1answer
77 views
Hibernate Search + GWT + Hibernate
I'm using hibernate search and I would like to do special thinks.
On the update of a person entity, the method that persist the entity duplicate this one + create new person entity.
Which means that ...
1
vote
3answers
420 views
Lucene wildcard matching fails on chemical notations(?)
Using Hibernate Search Annotations (mostly just @Field(index = Index.TOKENIZED)) I've indexed a number of fields related to a persisted class of mine called Compound. I've setup text search over all ...
1
vote
2answers
248 views
How to do SQL IN like query in hibernate search
A simulating scenario is:
Search for books whose content contains "success" AND author is in a list of passed names(could be thousands of).
I looked into filter:
...
1
vote
0answers
97 views
Hibernate Search synchronous execution in main thread
It seems that Hibernate Search synchronous execution uses other threads than the calling thread for parallel execution.
How do I execute the Hibernate Search executions serially in the calling ...
1
vote
1answer
436 views
Custom Lucene Sharding with Hibernate Search
Has anyone experience with custom Lucene sharding / paritioning using Hibernate Search?
The documentation of Hibernate Search says the following about Lucene Sharding :
In some cases, it is ...
1
vote
2answers
620 views
Problem using Hibernate-Search
I am using hibernate search for my application. It is well configured and running perfectly till some time back, when it stopped working suddenly.
The reason according to me being the number of my ...
1
vote
3answers
355 views
Lucene and access control (visibility of comments)
Imagine this simple scenario for full text search: Articles with Comments. I want to search articles also by text in comments. That alone is fairly simple to implement.
Not all comments are visible ...
0
votes
2answers
39 views
How to use aggregate function in lucene query string
I'm using apache lucene for indexing and searching in my application. Everything is working fine and now i've to integrate reporting and for that i need aggregate values. I've been stuck and couldn't ...
0
votes
0answers
24 views
hibernate search custom filter for search
I'm writing a CMS and in this system I have articles that every article is in a category.
I've implanted hibernate search to search with my local language and it works fine. but i wanna add a advanced ...
0
votes
1answer
36 views
Using multiple fields with ComplexPhraseQueryParser in Lucene
I am currently using Lucene's MultiFieldQueryParser to search the same query across multiple fields (ie a search for "value" produces field1:value field2:value field3:value). However, this uses the ...
0
votes
2answers
85 views
Hibernate search cfg file error
I'm new to hibernate search and I just started to make a sample search project using internet "how-to s". every thing seems fine except that when I try to run project I got the fallowing errors:
Jan ...
0
votes
0answers
20 views
When to open session with Hibernate
For Hibernate when should this be called:
Session session = HibernateUtil.getSessionFactory().openSession();
session.beginTransaction();
and when to call:
Session session = ...
0
votes
1answer
24 views
How to save hibernate search indexed files into project WEB-INF folder?
How can I save hibernate search using JPA indexed files into project WEB-INF folder?