Tagged Questions

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

41
votes
5answers
2k views

How would one use Lucene.NET to help implement search on a site like StackOverflow?

I've asked a simlar question on Meta StackOverflow, but that deals specifically with whether or not Lucene.NET is used on StackOverflow. The purpose of the question here is more of a hypotetical, as ...
38
votes
11answers
1k views

What is best and most active open source .Net search technology?

I'm trying to decide on an open source search/indexing technology for a .Net project. It seems like the standard out there for Java projects is Lucene, but as far as .Net is concerned, the Lucene.Net ...
31
votes
5answers
7k views

Lucene.Net and SQL Server

Has anyone used Lucene.NET rather than using the full text search that comes with sql server? If so I would be interested on how you implemented it. Did you for example write a windows service ...
29
votes
7answers
13k views

Search Engine - Lucene or Solr

We need to integrate a search engine in our Product Catalog management software. the catalog is expected to have more than 4-5 mn. records with relational data spread over several tables. Our dev ...
23
votes
6answers
4k views

Lucene.Net Best Practices

What are the best practices in using Lucene.Net? or where can I find a good lucene.net usage sample?
19
votes
5answers
3k views

What are some good resources on using Lucene.Net?

Does anyone know where I can find out more information on Lucene.Net? I am looking for a tutorial or videos on how to use Lucene.Net that stack overflow users can personally recommend.
19
votes
6answers
6k views

SQL Server 2008 Full Text Search (FTS) versus Lucene.NET

I know there have been questions in the past about SQL 2005 versus Lucene.NET but since 2008 came out and they made a lot of changes to it and was wondering if anyone can give me pros/cons (or link to ...
14
votes
5answers
5k views

Looking for an example of using Lucene.net with ASP.NET

How do you implement the search capabilities of Lucene.net in asp.net? If possible, please include links or example code.
13
votes
3answers
1k views

Concurency in Lucene.NET

I want to use Lucene.NET for fulltext search shared between two apps: one is an ASP.NET MVC application and the other one is a console application. Both applications are supposed to search and update ...
12
votes
2answers
292 views

Are there any recommendations for integrating Lucene.NET into an ASP.NET MVC application?

I'm wondering if there are any recommendations, best practises or top-tips for integrating a Lucene.NET based search into an ASP.NET MVC web application? Things I've read (or think I've read) in ...
11
votes
1answer
2k views

Using Server.MapPath() inside a static field in ASP.NET MVC

I'm building an ASP.NET MVC site where I'm using Lucene.Net for search queries. I asked a question here about how to properly structure Lucene.Net usage in an ASP.NET MVC application and was told that ...
11
votes
2answers
1k views

Is Lucene.Net suitable as the search engine for frequently changing content?

Is Lucene.Net suitable as the search engine for frequently changing content? Or more specificically, can anybody give a subjective opinion on how quickly lucene.net indexes can be updated. Any other ...
10
votes
2answers
900 views

Proper structuring of Lucene.Net usage in an ASP.NET MVC site

I'm building an ASP.NET MVC site where I plan to use Lucene.Net. I've envisioned a way to structure the usage of Lucene, but not sure whether my planned architecture is OK and efficient. My Plan: ...
10
votes
3answers
3k views

Does Lucene.Net manage multiple threads accessing the same index, one indexing while the other is searching?

When using Lucene.Net with ASP.NET, I can imagine that one web request can trigger an update to the index while another web request is performing a search. Does Lucene.Net have built in it the ...
9
votes
4answers
2k views

Indexing .PDF, .XLS, .DOC, .PPT using Lucene.NET

I've heard of Lucene.Net and I've heard of Apache Tika. The question is - how do I index these documents using C# vs Java? I think the issue is that there is no .Net equivalent of Tika which ...
9
votes
6answers
6k views

Optimizing Lucene performance

What are the various ways of optimizing Lucene performance? Shall I use caching API to store my lucene search query so that I save on the overhead of building the query again?
9
votes
7answers
7k views

How to update a Lucene.NET index?

I'm developing a Desktop Search Engine in Visual Basic 9 (VS2008) using Lucene.NET (v2.0). I use the following code to initialize the IndexWriter Private writer As IndexWriter writer = New ...
9
votes
3answers
6k views

How to incorporate multiple fields in QueryParser?

Dim qp1 As New QueryParser("filename", New StandardAnalyzer()) Dim qp2 As New QueryParser("filetext", New StandardAnalyzer()) . . Instead of creating 2 separate QueryParser objects and using them to ...
9
votes
2answers
1k views

Can someone give me a high overview of how lucene.net works?

I have an MS SQL database and have a varchar field that I would like to do queries like where name like '%searchTerm%'. But right now it is too slow, even with sql enterprise's full text indexing. ...
8
votes
2answers
337 views

Getting terms matched in a document when searching using a wildcard search

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 this failed. A portion of the relevant code is ...
8
votes
2answers
455 views

Avoid removal of current Lucene.NET index during rebuild

I'm new to Lucene.NET but I'm using an open source tool built for Sitecore CMS that uses Lucene.NET to index lots of content from the CMS. I confirmed yesterday that when I rebuild my indexes, the ...
8
votes
6answers
6k views

How to make the Lucene QueryParser more forgiving?

I'm using Lucene.net, but I am tagging this question for both .NET and Java versions because the API is the same and I'm hoping there are solutions on both platforms. I'm sure other people have ...
7
votes
3answers
2k views

Synonyms using Lucene

What is the best way to handle synonyms (phrases) using Lucene? Especially, when I need to execute queries like :a OR b OR c NOT d How about adding a new field called "synonyms" to each document ...
7
votes
2answers
1k views

In lucene.net can we search for a content without giving field name..and it will search in all fields that are indexed?

In lucene.net can we search for a content without giving field name..and it will search in all fields that are indexed.
7
votes
2answers
8k views

Exact phrase search using Lucene.net

I am having trouble searching for an exact phrase using Lucene.NET 2.0.0.4 For example I am searching for "scope attribute sets the variable" (including quotes) but receive no matches, I have ...
7
votes
3answers
2k views

What is the best way to parse Microsoft Office and PDF documents?

I'm developing a Desktop Search Engine using VB9 (VS2008) and Lucene.NET. The Indexer in Lucene.NET accepts only raw text data and it is not possible to directly extract raw text from a Microsoft ...
6
votes
1answer
356 views

Lucene.net multi field searches

In an attempt to get some more contextually relevant search results I've decided to have a play with lucene.net although I'm very new to it and I've found it not to be the most intuitive library I've ...
6
votes
2answers
2k views

How do i implement tag searching? with lucene?

I havent used lucene. Last time i ask (many months ago, maybe a year) people suggested lucene. If i shouldnt use lucene what should i use? As am example say there are items tagged like this apples ...
6
votes
3answers
775 views

How to secure/encrypt a Lucene index?

I am working on a desktop app that will use Lucerne as search engine. The app will be installed on the user's machine and the index will be stored on the local hard disk. The data is potentially ...
6
votes
2answers
251 views

Are there any books on Lucene.NET

I have searched on amazon and could not find a book on lucene.net. Have you guys came across a decent book on lucene.net?
6
votes
1answer
680 views

Lucene.NET Search Highlighting that respects HTML Tags

I am trying to highlight search terms in a block of HTML, the problem is if a user does a search for "color", this: <span style='color: white'>White</span> becomes: <span ...
6
votes
2answers
4k views

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

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 results with. The problem ...
6
votes
3answers
1k views

Syncing Lucene.net indexes across multiple app servers

we are designing the search architecture for a corporate web application. We'll be using Lucene.net for this. The indexes will not be big (about 100,000 documents), but the search service must be ...
6
votes
3answers
364 views

Lucene.Net and incubation status

I'm evaluating options to make our search more powerful on our .Net website. I need to look into whether we purchase software/hardware such as the Google Search Appliance (GSA) or develop the ...
6
votes
2answers
3k views

Paging using Lucene.net

I'm working on a .Net application which uses Asp.net 3.5 and Lucene.Net I am showing search results given by Lucene.Net in an asp.net datagrid. I need to implement Paging(10 records on each page) for ...
6
votes
2answers
3k views

Lucene.Net Search result to highlight search keywords

I use Lucene.Net to index some documents. I want to show the user a couple of lines as to why that document is in the result set. just like when you use google to search and it shows the link and ...
5
votes
2answers
275 views

Fast in-memory inverted index

I am looking for a fast in-memory implementation of a generic inverted index. All I need is to store features with weights for a couple million entities and use the inverted index to compute ...
5
votes
2answers
264 views

NHibernate-based Full-Text Search

I want to integrate full-text search into a .NET application with [Fluent] NHibernate-based data access. So far Lucene.NET and NHibernate Search combination appears to be the most reasonable option ...
5
votes
2answers
330 views

StructureMap 'conditional singleton' for Lucene.Net IndexReader

I have a threadsafe object that is expensive to create and needs to be available through my application (a Lucene.Net IndexReader). The object can become invalid, at which point I need to recreate it ...
5
votes
2answers
2k views

Lucene: What is the difference between Query and Filter

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 ...
5
votes
1answer
579 views

Lucene.NET 2.9 and BitArray/DocIdSet

I found a great example on grabbing facet counts on a base query. It stores the bitarray of the base query to improve the performance each time the a facet gets counted. var genreQuery = new ...
5
votes
1answer
3k views

Lucene QueryParser two Fields

hello i read [LUCENE.NET] How to incorporate multiple fields in QueryParser? but i didn't get it. at the moment i have a very strange construction like: parser = New QueryParser("bodytext", ...
5
votes
3answers
709 views

How far behind the original is Lucene.Net?

I've noticed that Lucene recently released v2.9 (on 25th September this year - 2009), whereas Lucene.Net appears to be v2.0 (released back in 2007): Does the v2.0 of Lucene.net correspond to the ...
5
votes
3answers
205 views

Lucene query - “Match exactly one of x, y, z”

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 able to search within these types ...
5
votes
1answer
2k views

lucene.net combine multiple filters and no search terms

How can I do a Filter across multiple fields in Lucene.Net? On one field I simply do: TermQuery tool = new TermQuery(new Term("Tool", "Nail")); Filter f = new QueryFilter(tool); If I now wanted to ...
5
votes
2answers
2k views

How to enable stemming when searching using lucene.net?

How to enable stemming when searching using lucene.net?
5
votes
4answers
2k views

Lucene.Net and I/O Threading issue

I have an indexing function named "Execute()" using IndexWriter to index my site's content. It works great if I simply called it from a web page, but failed when I have it as a delegate parameter into ...
5
votes
4answers
1k views

How to: Increase Lucene .net Indexing Speed

I am trying to create an lucene of around 2 million records. The indexing time is around 9 hours. Could you please suggest how to increase performance?
5
votes
3answers
598 views

Tips/recommendations for using Lucene

I'm working on a job portal using asp.net 3.5 I've used Lucene for job and resume search functionality. Would like to know tips/recommendations if any with respect to Lucene performance optimization, ...
4
votes
1answer
181 views

Implement Lucene on Existing .NET / SQL Server stack with multiple webservers

I want to look at using Lucene for a fulltext search solution for a site that I currently manage. The site is built entirely on SQL Server 2008 / C# .NET 4 technologies. The data I'm looking to index ...

1 2 3 4 5 15