filter « lucene.net « Java Lucene Q&A

Home
Java Lucene Q&A
1.Database
2.Development
3.document
4.Field
5.index
6.lucene
7.lucene.net
8.nutch
9.query
10.solr
11.Tools
Java Lucene Q&A » lucene.net » filter 

1. Lucene RangeQuery doesn't filter appropriately    stackoverflow.com

I'm using RangeQuery to get all the documents which have amount between say 0 to 2. When i execute the query, Lucene gives me documents which have amount greater than 2 also. ...

2. How do I pass a list of 'allowed' IDs to filter a Lucene search?    stackoverflow.com

I need to return just the documents that a user has access to from a Lucene search. I can get a list of IDs from a database that make up the ...

3. How do you implement a custom filter with Lucene.net?    stackoverflow.com

The code below is from the Lucene In Action book (originally in Java). It's for building a list of 'allowed' documents (from a user permission point of view) to filter search ...

4. how do i filter my lucene search results?    stackoverflow.com

Say my requirement is

"search for all users by name, who are over 18"
If i were using SQL, i might write something like:
Select * from [Users]
Where ([firstname] like '%' + @searchTerm + ...

5. Search filters with Lucene.NET    stackoverflow.com

I'm using Lucene.Net to create a website to search books, articles, etc, stored as PDFs. I need to be able to filter my search results based on author name, for ...

6. How to combine full-text searching and filtering with lucene.Net    stackoverflow.com

I'm constructing a simple search form for our support ticket database using Lucene.Net, and I want to add the ability to filter, for example to filter results by ticket status. ...

7. How to use multifieldquery and filters in Lucene.net    stackoverflow.com

I want to perform a multi field search on a lucene.net index but filter the results based on one of the fields. Here's what I'm currently doing: To index the fields ...

8. Lucene adding additional filter returns no results    stackoverflow.com

I am attempting query some results using a Boolean Query. However the query does not return any results. Here is the FilterQuery I am running. This returns no results, even though ...

9. Filtering by date range in Lucene    stackoverflow.com

I know the title might suggest it is a duplicate but I haven't been able to find the answer to this specific issue: I have to filter search results based on a ...

10. Lucene: What is the difference between Query and Filter    stackoverflow.com

Lucene query vs filter? They both does similar things like termquery filters by term value, filter i guess is there for similar purpose. When would you use filter and when query? Just starting on ...

11. Lucene filters and the "AND" operator    stackoverflow.com

I'm building an e-commerce search and I am using Lucene.Net as my search engine. I am having trouble filtering my queries, though. This is one of the documents I have indexed, with ...

12. Lucene.NET: Query or Filter?    stackoverflow.com

It is my understanding that documents are found based on a query, and then that result is then filtered by the filter. The Query is the only that that will effect the ...

13. Lucene.Net: How can I add a date filter to my search results?    stackoverflow.com

I've got my searcher working really well, however it does tend to return results that are obsolete. My site is much like NerdDinner whereby events in the past become irrelevant. I'm ...

14. How to filter Lucene search with a field by 2 values?    stackoverflow.com

I have a lucene search where i was trying to filter my search with LanguageIds, but i was unable to do that. I was passing my Languageids like "1,2,3",but its not ...

15. Filtering the results of a sorted query in Lucene.NET    stackoverflow.com

I'm using Lucene.NET, which is currently up to date with Lucene 2.9. I'm trying to implement a kind of select distinct, but without the need to drill down into any groups. ...

16. Multiple filters in Lucene.net    stackoverflow.com

How to combine multiple filters within one search? For example I have record with analyzable field title and not analyzable fields id1, id2, id3, release_date. I want to find all records using ...

17. Filter index for searching in Lucene.net    stackoverflow.com

I am currently working on a project involving the Lucene library within C# however I have reached an issue with design of my project concerning the retrevial of documents within the ...

18. Lucene.net: Querying and using a filter to limit results    stackoverflow.com

As usual I turn to the massive brain power that is the Stackoverflow user base to help solve a Lucene.NET problem I am battling with. First off, I am a ...

19. How to Filter by Id    stackoverflow.com

I am using Lucene.Net MoreLikeThis feature. I am trying to figure out how to filter a MoreLikeThis Query by an id. For example, i do not want any records with an ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.