1. Java + JPA: Search User in Database By first and last name return too many results. Is there a better way? stackoverflow.comRight now my implementation is like this, so if the user type is
|
2. Using Hibernate Search to Rate Result stackoverflow.comIs it possible for hibernate search to sort result according to best match after it has search result from the database |
3. How to group search results in hibernate search? stackoverflow.comI get a different results by searching from different entities. How can I group them? Some entities have generic and I want to show them respectively. How can I do that? Thanks |
4. Merging Hibernate Search results with relational database query stackoverflow.comI 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 restrictions ... |
5. get result count in hibernate search with lucene forum.hibernate.orghi, See the below code: Criteria criteria = fSession.createCriteria(c) .add(Restrictions.eq("sentiment", new Long(-12))); fullTextQuery = fullextSession.createFullTextQuery(lucenceQuery, myclass.class).setCriteriaQuery(criteria); fullTextQuery.list(); - Here i am geting expected results But if use fullTextQuery.getResultSize(); - Here i am getting wong results.It's give total records which is before applying criteria query. another thing is,if i call fullTextQuery.list() , SQL query is printing in console.But if call fullTextQuery.getResultSize() is ... |
6. hibernate search results details forum.hibernate.orgHi everybody, So I have successfully managed to integrate Hibernate Search in my application and everything works as expected. I just have a simple question ... Hibernate Search will search for the given text only in the selected fields. As a result I get a list of Objects. Is there a way to know in which field of the object the ... |
7. How can i print the search result forum.hibernate.org |
8. searching for libraries that sorts results forum.hibernate.orgHi, I am wondering if there is some kind of library based on hibernate or not, that would return for a search : - results that corresponds to the criterias - plus results that do not exactly correspond to the criterias ordered by relevance For instance if you have 5 criterias : I would like to get the results that have ... |
9. combining search results forum.hibernate.org@Entity @Table(name = "IMAGES") public class Image{ private Set |
10. search results using criteria forum.hibernate.org |
11. Duplicate results appearing in Hibernate Search query forum.hibernate.orgHello, I'm a bit new to Hibernate and Hibernate Search, and I'm having a problem getting my full text search to work across fields in the database. My table looks like this: Code: create table Entry ( entry_id bigint unsigned not null auto_increment, category_id smallint unsigned not null, entry_title varchar(300) not null, entry_question ... |