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. ... |
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 ... |
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 ... |
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 + ...
|
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 ... |
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. ... |
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 ... |
|
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 ... |
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 ... |
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 ... |
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 ... |
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 ... |
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 ... |
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 ... |
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. ... |
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 ... |
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 ... |
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 ... |
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 ... |