Tagged Questions

The term Lucene refers to the Java fulltext search engine library, but also to the entire eco-system that grew around it, including lucene.net, solr and zend-search-lucene.

learn more… | top users | synonyms

86
votes
6answers
25k views

Comparison of full text search engine - Lucene, Sphinx, Postgresql, MySQL?

I'm building a Django site and I am looking for a search engine. A few candidates: Lucene/Lucene with Compass/Solr Sphinx Postgresql built-in full text search MySQl built-in full text search ...
54
votes
6answers
14k views

Choosing a stand-alone full-text search server: Sphinx or SOLR?

I'm looking for a stand-alone full-text search server with the following properties: Must operate as a stand-alone server that can serve search requests from multiple clients Must be able to do ...
42
votes
11answers
17k views

ElasticSearch, Sphinx, Lucene, Solr, Xapian. Which fits for which usage?

I'm currently looking at other search methods rather than having a huge SQL query. I saw elasticsearch recently and played with woosh (a python implementation of a search engine). Can you argument ...
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 ...
40
votes
2answers
5k views

NoSQL (MongoDB) vs Lucene (or Solr) as your database

With the NoSQL movement growing based on document-based databases, I've looked at MongoDB lately. I have noticed a striking similarity with how to treat items as "Documents", just like Lucene does ...
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 ...
26
votes
5answers
3k views

How to evaluate hosted full text search solutions?

What are the options when it comes to SaaS/hosted full text search? How should I evaluate the different options available? I'm looking for something that uses Lucene, solr, or sphinx on the backend, ...
24
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 ...
18
votes
8answers
4k views

Is MongoDB a valid alternative to relational db + lucene?

On a new project I need a hard use of lucene for a searcher implementation. This searcher will be a very important (and big) piece of the project. Is valid or convenient replacing Relational Database ...
17
votes
1answer
3k views

Lucene indexing: Store and indexing modes explained

I think I'm still not understanding the lucene indexing options. The following options are Store.Yes Store.No and Index.Tokenized Index.Un_Tokenized Index.No Index.No_Norms I don't really ...
16
votes
6answers
6k views

Full Text Searching with Rails

I've been looking into searching plugins/gems for Rails. Most of the articles compare Ferret (Lucene) to Ultrasphinx or possibly Thinking Sphinx, but none that talk about SearchLogic. Does anyone ...
15
votes
4answers
2k views

Why are document stores like Lucene / Solr not included in NoSQL conversations?

All of us have come across the recent hype of no-SQL solutions lately. MongoDB, CouchDB, BigTable, Cassandra, and others have been listed as no-SQL options. Here's an example: ...
15
votes
4answers
6k views

Is Solr available for .Net?

I want to learn Solr.May i know some good tutorial/links for the same? Is Solr available for .net too?
14
votes
1answer
204 views

Questions on Upgrading Lucene from 2.2 to 2.9 to 3.1

I have an existing piece of software that is using Lucene 2.2.x and I need to upgrade to 3.1. To do this upgrade I've read documentation that suggests upgrading to 2.9.x first, removing all ...
14
votes
5answers
786 views

Best way to keep index real time?

I have a Solr/Lucene index file of approximately 700 Gb. The documents that I need to index are being read in real-time, roughly 1000 docs every 30 minutes are submitted and need to be indexed. In my ...
14
votes
8answers
4k views

Is there a pure Python Lucene?

The ruby folks have Ferret. Someone know of any similar initiative for Python? We're using PyLucene at current, but I'd like to investigate moving to pure Python searching.
13
votes
1answer
410 views

Precision recall in lucene java

I want to use Lucene to calculate Precision and Recall. I did these steps: Made some index files. To do this I used indexer code and indexed .txt files which exist in this path C:/inn (there are 4 ...
13
votes
1answer
345 views

My java process's file descriptors going “bad” and I have no idea why

I have a java webapp, built with Lucene, and I keep getting various "file already closed" exceptions - depending on which Directory implementation I use. I've been able to get "java.io.IOException ...
13
votes
2answers
3k views

How to query SOLR for empty fields?

I have a large solr index, and I have noticed some fields are not updated correctly (the index is dynamic). This has resulted in some fields having an empty "id" field. I have tried these queries, ...
13
votes
1answer
5k views

How to get a Token from a Lucene TokenStream?

I'm trying to use Apache Lucene for tokenizing, and I am baffled at the process to obtain Tokens from a TokenStream. The worst part is that I'm looking at the comments in the JavaDocs that address my ...
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 ...
13
votes
2answers
948 views

Lucene Hebrew analyzer

Does anybody know whether one exists? I've been googling this for monthes... Thanks
13
votes
7answers
5k views

“Did you mean?” feature in Lucene.net

Can someone please let me know how do I implement "Did you mean" feature in Lucene.net? Thanks!
13
votes
6answers
5k views

Recommendations for a spidering tool to use with Lucene or Solr?

What is a good crawler (spider) to use against HTML and XML documents (local or web-based) and that works well in the Lucene / Solr solution space? Could be Java-based but does not have to be.
13
votes
5answers
6k views

Using Lucene to count results in categories

I am trying to use Lucene Java 2.3.2 to implement search on a catalog of products. Apart from the regular fields for a product, there is field called 'Category'. A product can fall in multiple ...
12
votes
3answers
13k views

How to do query auto-completion/suggestions in Lucene?

I'm looking for a way to do query auto-completion/suggestions in Lucene. I've Googled around a bit and played around a bit, but all of the examples I've seen seem to be setting up filters in Solr. We ...
12
votes
3answers
2k views

Lucene Score results

In Lucene if you had an multiple indexes that covered only one partition each. Why does the same search on different indexes return results with different scores? The results from the different ...
11
votes
6answers
1k views

Beginners Lucene tutorial

I've never done anything in Java before but I'd like to use Lucene for the search on a site. I'm having trouble find a good step by step tutorial for a complete beginner at this. Can anyone ...
11
votes
4answers
2k views

Situations to prefer Apache Lucene over Solr?

There are several advantages to use Solr 1.4 (out-of-the-box facetting search, grouping, replication, http administration vs. luke, ...). Even if I embed a search-functionality in my Java application ...
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
905 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
2answers
2k views

How does Lucene work

I am trying to find out how lucene search works so fast. Cant find any useful docs on the web. If you have anything (short of lucene source code) to read, let me know. A text search query using ...
10
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?
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
1answer
190 views

How to improve Lucene performance in a distributed environment?

I'm facing long search times (order of 10s of seconds) while searching on a master - shard implementation in a distributed environment. However the same query via Luke returns in milliseconds. 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
4answers
982 views

Indexing different type of Entities/Objects with Solr Lucene

Let's say I want to index my shop using Solr Lucene. I have many types of entities : Products, Product Reviews, Articles How do I get my Lucene to index those types, but each type with different ...
9
votes
3answers
4k views

Boost Solr results based on the field that contained the hit

I was browsing the web looking for an indexing and search framework and stumbled upon Solr. A functionality that we absolutely need is to boost results based on what field contained the hit. A small ...
9
votes
3answers
3k views

mahout lucene document clustering howto?

I'm reading that i can create mahout vectors from a lucene index that can be used to apply the mahout clustering algorithms. ...
9
votes
5answers
2k views

Ruby alternative for Lucene

I have heard about Lucene a lot, that it's one of the best search engine library in JAVA, is there any similar(as powerful) library for Ruby.
9
votes
2answers
5k views

php mysql fulltext search: lucene, sphinx, or?

This is admittedly similar to (but not a duplicate of) http://stackoverflow.com/questions/737275/pros-cons-of-full-text-search-engine-lucene-sphinx-postgresql-full-text-search, however what I am ...
9
votes
3answers
15k views

using OR and NOT in solr query

I'm working on a solr query similar to the following: ((myField:superneat AND myOtherField:somethingElse) OR NOT myField:superneat) When running this, no results are returned. Using criteria on ...
9
votes
5answers
3k views

Best full text search for mysql?

We're currently running MySQL on a LAMP stack and have been looking at implementing a more thorough, full-text search on our site. We've looked at MySQL's own freetext search, but it doesn't seem to ...
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
1answer
269 views

Best way to filter fields stored in a remote database in solr/lucene?

I have an index of about 100k documents that represent a movie entity. Users can put films on various lists (like favorites etc.) These lists are stored in a mysql database and are not indexed in ...
8
votes
2answers
339 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 ...

1 2 3 4 5 48