I have a "description" field indexed in Lucene.This field contains a book's description.
How do i achieve "All of these words" functionality on this field using BooleanQuery class?
For example if a user ...
I'm working on "all of these words" feature using Lucene.
I'm using StandardAnalyzer without any stop words.
When user types in words which contain "the", "and" etc, lucene does not return any result.
If ...
I have a site which is searchable using Lucene. I've noticed from logs that users sometimes don't find what they're looking for because they enter a singular term, but only ...
Its Ershad here.I am working on lucene.
Now i am able to search the word.But if i type part of word, i am unable to get the results.
Can you pls suggest what ...
I am playing with lucene for a location search off of a city and state, and everything is going pretty well. the query parser fails when i pass it "state:OR" ...
I want lucene to search for hyphenated words,
for eg: energy-efficient or "energy-efficient" as one single word
So if the input is energy-efficient the tokenizer generates terms like
energy or efficient or energy ...
I have indexed a list of words such as 'just saw','just passed','just met'.. I have a list of sentences and I want to extract only those sentences which have these keywords ...
I'm trying to get search results just like the stack overflow Related questions, when you ask a new question.
How can I do with lucene, a search which would match all words ...
I have an application that iterates over a directory of pdf files and searches for a string. I am using PDFBox to extract the text from the PDF and the ...