Lucene.Net is a source code, class-per-class, API-per-API, algorithmic port of the Java Lucene search engine to the C# and .NET platform utilizing the Microsoft .NET Framework.

learn more… | top users | synonyms

0
votes
2answers
40 views

lucene API textSimilarity

i am writing a project on plagiarism detection with Java, in this case for the first step i need to do the following tasks : inputing file (txt, .pdf, .doc) convert the file content to text ...
2
votes
1answer
41 views

How to score similar documents in Lucene?

I want to score the similar documents in Lucene. Let me explain you my scenario. For example lets say I have the following records in my file on which I created index. ID|First Name|Last Name|DOB ...
1
vote
1answer
33 views

How to do a startsWith and then Contains Search using Lucene.NET 3.0?

What is the best way to search and Index in Lucene.NET 3.0 so that the results come out ordered in the following way: Results that start with the full query text (as a single word) e.g. "Bar Acme" ...
0
votes
1answer
17 views

How to retrieve the full directory path from Lucene.Net.Store.Directory?

I'm trying to access the directory path from Lucene.Net.Store.Directory, and I can't find any properties where it exists. If I call ToString() I see the path along with the type name, etc. and I would ...
0
votes
1answer
36 views

How to search an array of search strings with Lucene.Net

I want to know if we can search an array of values for one field in Lucene? For example: String s[] = {"John","Daniel", "Doe"---------------------------until 50 or 1000}; All the string values are ...
2
votes
2answers
15 views

Can't find Lucene.Net.Spatial.Tier namespace with the current version of Lucene.Net

In my search for a geolocation search implementation using lucene.net I encountered this article from leapinggorilla.com and download the source code but have no luck compiling, I added the reference ...
0
votes
2answers
31 views

Lucene.Net is not giving any results but Luke does

I have created a Lucene Index using StandardAnalyzer with following three fields. StreetName City State I am using below wrapper class to ease out writing boolean queries public interface IQuery ...
0
votes
1answer
48 views

Why is filter not working with text/string values in Lucene.Net?

I have made a filter in Lucene.Net to limit the result of the search. I am encountering a very strange issue. The filter is not working with Text Values but working with number values. For Example: ...
0
votes
1answer
39 views

How to use Lucene IKVMC port in .Net?

I just converted the Latest Lucene version(4.3.0) to Lucene.Net with IKVMC. When I am trying to open a file with FSDirectory its giving me the error Only valid arguments Java.io.File Sample: ...
1
vote
1answer
30 views

How to do pattern matching in Lucene.Net?

I have created a Lucene index which has unique street name as below StreetName ~~~~~~~~~ 13th Avenue 13th Street Now if I have a search-string as '1204 13th Avenue TAMPA', how can i create a query ...
0
votes
3answers
72 views

Building Examine (lucene.net) index with comma separated list of IDs

I have an Umbraco website that is using Examine search which is based on lucene.net. I am pretty much trying to do exactly what is described in the following article: Querying against a comma ...
0
votes
1answer
49 views

Lucene .NET 3 and Azure: unable to complete indexing

I'm trying to use the latest version of Lucene.NET (applied to my project via NuGet) in an Azure web role. The original web application (MVC4) has been created to be able to run in a traditional web ...
0
votes
1answer
59 views

Filtering results of Lucene search

Let me explain my problem. I am using Lucene to search and display the results in asp.net web page. When I am searching, the Lucene is displaying all the records associated with my search. For Example ...
0
votes
0answers
33 views

How to implement sort & search on dynamic fields?

Currently my application use MSSQL for Sorting and Searching. The data in the app is a list of Tasks, Every Task can have multiple dynamic values (unknown number). Example: Task1 – DynValue1, ...
0
votes
1answer
48 views

Lucene.net with large files

I was wondering if it was possible to index and store a number of large files each over 4GB in size. I had no problems doing so and searching the documents with one exception - I was not able to ...
0
votes
1answer
24 views

Lucene.net Server Farm / Multiple Servers

I haven't thought about this issue before as I was hosting the application on just one windows server 2008 and lucene.net stores the index on its local hard drive. (Basically, every time, when a ...
0
votes
1answer
58 views

In Sitecore how to run a date range query using Lucene?

I need to be able to run a date range query in Sitecore using Lucene and the newest Sitecore.Search framework. Does anyone know how to do this? I haven't been able to find a good example. I have ...
0
votes
1answer
84 views

Lucene search in sitecore with 2 websites

I integrated lucene search in my sitecore website which has one more website under content item in the content tree. I added a new searchindex.config file in app_congif/include folder. I've also ...
1
vote
1answer
80 views

C# Lucene.Net spellchecker

I have a site that give data to the user. I want to use Lucene.Net for my autocomplete. The thing is I want to be able to return results that correct spelling errors. I see that Lucene.Net has a ...
0
votes
0answers
21 views

Configure Lucene.Net's merge factor in NHibernate Search

I'm using NHibernate Search, and trying to speed up re-indexing a large database. How do I configure the merge factor? I'm doing this: ...
3
votes
1answer
40 views

How to implement Failover in Lucene?

I am currrently running a single server Lucene search engine for my platform - and would like to explore the possibility of deploying another server (mostly for failover reasons) I am using a ...
0
votes
2answers
93 views

Get total record count in Lucene or SQL SERVER Full Text Search

I have a table named Tags. Within this table I have a ID, an tag name. I would like to find total record count by group by when user type in some prefix words in a web page textbox. Same as ...
1
vote
1answer
60 views

How do I get a list of found words using Lucene.Net?

I have indexed documents. They have content: Document 1: Green table stood in the room. The room was small. Document 2: Green tables stood in the room. The room was large. I'm looking ...
0
votes
2answers
46 views

How to implement SQL SERVER NOT IN clause with Lucene

How to implement "SELECT * FROM Users WHERE ID NOT IN(4,5,6)" in Lucene
0
votes
1answer
44 views

Lucene.net search by numeric value(as string)

I indexes documents with text and numbers. To create an index I use analyser = new SnowballAnalyzer(Version.LUCENE_30, "English"); I use Snoschballanalyzer because I need morphology(table - ...
0
votes
1answer
30 views

What is the meaning of “must match” in Solr?

I have an requirement to modify the must match parameter in Solr. <str name="mm"> 2&lt;-1 5&lt;-2 6&lt;50% </str> I'm not able to understand the logic behind this syntax.
7
votes
1answer
205 views

Interesting Lucene.net Exception

According to this or this, I used the same indexsearcher by multiple thread. But when I switched from FsDirectory to MMapDirectory, I got interesting exceptions. This work fine: static void ...
1
vote
1answer
50 views

Lucene.Net persisting boost values

I have an Index created but it has lot of junk data. What I hope to accomplish is a voting system, where more votes equates to a higher boost value. Unfortunately the boost values are not saved back ...
0
votes
1answer
28 views

Is it possible to change document ranking in Lucene index?

What I would like to have is when a user searches for a specific term or phrase, I would like lucene to return a certain document as first result... Knowing that my documents are rows in a SQL server ...
1
vote
1answer
77 views

Get TermAttribute in TokenStream Lucene.Net

I use Lucene.NET3.0.3 how to get TermAttribute.I try my best but i can't get it here source: Analyzer analyzer = new ...
1
vote
0answers
169 views

Lucene.NET - Fuzzy Search - Finding Matching Requests

I have an index store which contains various phrases but some are mispelt, e.g.: - "Hallo World" "Qick Brown Fox" "Long tame no sees" I am running a fuzzy search using a boolean queries but if ...
1
vote
1answer
33 views

How to reject numeric values in Lucene.net?

I want to know whether is it possible to reject numeric phrases or numeric values while indexing or searching in Lucene.net. For example (this is one line), Hi all my no is 4756396 Now, when I ...
0
votes
1answer
65 views

When to use QueryParser vs. TermQuery?

I am studying Lucene and cannot get the difference between QueryParser and Term Query. It seems they are the same. Is this true? If not when should I use one over the other?
1
vote
1answer
53 views

How to achieve semi-perfect matches of fields in Lucene.Net?

I am trying to devise a duplication catching scheme for my Lucene.net app. My problem is it is hard to make a unique key since many of the fields will be the same. The only fields that I know will be ...
0
votes
1answer
63 views

Lucene query fails with mixed MUST/MUST_NOT

Given a document with this text, indexed in a field named Content: The dish ran away with the spoon. The following query fails to match that document: +Content:dish +(-Content:xyz) <-- no ...
1
vote
1answer
43 views

Is there a special way to do faceting on numeric fields in Lucene?

In an application using Lucene.Net, I have a numeric field that stores integers. The cardinality of the values is rather low (typically less than 20-30 different values). I'd like to do a faceted ...
0
votes
1answer
175 views

How to do a Lucene search with Sitecore item with specific date?

I've a Content item is Sitecore with the date field named 'EventDate'. I want to search those items with specific date using Lucene.Net. Below is the code I've tried but i am not getting the result: ...
0
votes
1answer
63 views

Sitecore Search Lucene Ranking

How can I set the priority of fields when I'm searching with Lucene .Net For example i have : Item 1 field 1 =contain "search text" field 2 ="bla bla" Item 2 field 1 = ...
1
vote
1answer
33 views

Searching for Public and Private documents with roles in Lucene

I am currently trying to build a search in Lucene (from Umbraco) which searches for public documents and protected documents which can be seen by the user's role only. The issue I am having is that ...
0
votes
1answer
70 views

Lucene.NET Italian Analyzer: Loading Stopwords from file system

I am using Lucene.NET 3.0.3 on a vb.net 3.5 framework application. I need to pass an Italian stopword file. Either using a FileInfo or a TextReader, I get always the English stop words, once I have ...
0
votes
1answer
56 views

How to Boost a Field In Lucene.Net 3

I want to boost a field in Lucene.Net 3.0.3. However the SetBoost Method doesnt appear to be defined anymore in Lucene. How do I boost a field, say, I want the "Title" of a document to carry more ...
1
vote
1answer
55 views

Ordering a query by the string length of one of the fields

In RavenDB (build 2330) I'm trying to order my results by the string length of one of the indexed terms. var result = session.Query<Entity, IndexDefinition>() ...
0
votes
1answer
75 views

Google like autosuggest with Lucene.net

I have a Lucene index that stores customers that basically includes a view model (documents fields that are stored and not indexed), an ID (field stored and indexed to permit find and update of ...
0
votes
1answer
187 views

Lucene Indexes in Sitecore getting corrupted (ArgumentOutOfRangeException)

We are having an issue with searching a Lucene Index in Sitecore. Everything works fine for a while, and then, after what appears to be a random amount of time, we start getting the following error on ...
0
votes
1answer
145 views

.NET Lucene: why won't MultiFieldQueryParser and WhitespaceAnalyzer query in BooleanQuery yield correct results, how to fix?

So, I have a short query that I want to construct. I'm using a boolean query to specify that the "type" field of the Document matched from the index must be "Idea", and then I have a search string ...
0
votes
1answer
130 views

Get all Terms of ConstantsScoreQuery using Lucene.NET 3.0.3

i am using Lucene.Net v3.0.3 with C# and have an issue retrieving all Terms from a ConstantScoreQuery. The Method ExtractTerms seems to be uncoded. The goal is to get all Terms matching a ...
3
votes
1answer
155 views

Lucene.NET 2.9 Custom Filter to add authorisation

Friends, I'm new to Lucene... I successfully created an index, added fields, I could search etc it works. Now, I've in my database a view that tell which users can see which document. This view is ...
2
votes
1answer
94 views

Storing List of Strings in Lucene.NET

I am working on a project that relies on Lucene.NET. Up to this point, I have had a class that had simple name/value properties (like int ID { get; set; }). However, I now need to add a new property ...
0
votes
1answer
101 views

Improve Lucene search speed with a hitcollector

Is it possible to reduce search time with the use of Lucene's Hitcollector and if so, how would this be properly implemented in the following situation? // search login here ie. // this is the ...
1
vote
1answer
77 views

Searching through elmah error log files(Perhaps in 1000's)

We have a folder of elmah error logs in XML format. These files will be in millions and each file might be upto 50 kb in size. We need to be able to search on the files(eg: What errors occured, what ...

1 2 3 4 5 22