I want my Lucene query to contain something similar to:
companyNam:mercedes trucks
Where it will do an exact match for the string "mercedes trucks" in the companyName field.
The companyName is ... |
I'm working on a company search API using Lucene.
My Lucene company index has got 2 companies:
1.Abigail Adams National Bancorp, Inc.
2.National Bancorp
If the user types in National Bancorp, then only company # ... |
I have a Lucene index that contains documents that have a "type" field, this field can be one of three values "article", "forum" or "blog". I want the user to be ... |
I'm using Lucene.net and C# to carry out a wildcard search on a folder containing text documents. The content of the text documents is contained in the field using a ... |
To illustrate my requirements consider the following directory structure:
C:\Dev
C:\Dev\Projects
C:\Dev\Projects\Test Project
C:\Dev\Projects\Test Project\Test.cs
C:\Dev\Projects\Foo
C:\Dev\Projects\Foo\foo.cs (containing the word test)
The basic document will have id, type, name and content fields, where type will ... |
I need to search a term (or more terms) inside huge csv files.
I foud Lucene.Net as the best way to make a fast query on them.
Well, l'm able to create an ... |
I want to search a lucene index specifying search criteria for a number of fields.
All fields are exact matches except for "title" and "content". A search term must appear in either ... |
|
I am looking to perform a query for the purposes of maintaining internal integrity; for example, removing all traces of a particular field/value from the index. Therefore it's important that I ... |
I am looking for a way to find the terms that matched in the document using waldcard search in Lucene. I used the explainer to try and find the terms but ... |
I was searching for a term "in the" in my index, My requirement is to get the Exact match, AND, OR ,Not Matches from that.For that what i have done is ... |
My search text goes as "ma" and i have two lucene document which have ma as the text in it. But in return i only get one document.
Below is the ... |
In Lucene.Net, I need to create a query to limit a search to a specific list of terms for a specific field.
For example, I need "AutoMake" to be "Ford" or "Chevy." ... |
I'm using Lucene.net to implement fulltext search feature in an Asp.net application. The search result page should high light the match items. I got the instance of Lucene.Net.Search.Hits and used .Doc(int ... |