Tagged Questions
Apache Solr is an open source search server based on the Lucene Java search library.
51
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 ...
40
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 ...
38
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 ...
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 ...
26
votes
4answers
621 views
How to search over huge non-text based data sets?
In a project I am working, the client has a an old and massive(terabyte range) RDBMS. Queries of all kinds are slow and there is no time to fix/refactor the schema. I've identified the sets of common ...
25
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, ...
15
votes
5answers
3k views
Solr delete not working for some reason
Just trying to delete all the documents, and did this:
http://localhost:8983/solr/update?stream.body=%3Cdelete%3E%3Cquery%3E*:*%3C/query%3E%3C/delete%3E
then committed:
...
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
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
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:
...
13
votes
2answers
2k 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
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.
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
6answers
7k views
How to start Solr automatically?
At the moment I have to go to /usr/java/apache-solr-1.4.0/example and then java -jar start.jar
Any ideas how to get this to start automatically on boot?
Im on a shared linux server.
Cheers
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
978 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
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
4answers
5k views
Book recomendation for Solr
I want to know how to get the best of Solr. Which books, tutorials, reference sites should I read to learn about it?
9
votes
12answers
4k views
What are some Search Servers out there?
I'm looking to find alternatives to Solr from the Apache Software Foundation.
For those that don't know, Solr is an enterprise search server. A client application uses a web-services like interface ...
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
1answer
2k views
Setup sunspot solr with rails in production environment
I have tried various links but I can't seem to find a good resource on creating a running solr instance that works with rails in production.
I understand that you have to setup the solr server for ...
8
votes
3answers
846 views
Using Solr search index as a database - is this “wrong”?
My team is working with a third party CMS that uses Solr as a search index. I've noticed that it seems like the authors are using Solr as a database of sorts in that each document returned contains ...
8
votes
3answers
637 views
Lucene as data store
Is it possible to use Lucene as full fledged data store (like other(mongo,couch) nosql variants).
I know there are some limitations like newly updated documents by one indexer will not be shown in ...
8
votes
4answers
4k views
How to select distinct field values using Solr?
I would like to do the equivalent of this SQL but with Solr as my data store.
SELECT
DISTINCT txt
FROM
my_table;
What syntax would force Solr to only give me distinct values?
...
8
votes
2answers
7k views
Using Nutch crawler with Solr
Am I able to integrate Apache Nutch crawler with the Solr Index server?
Edit:
One of our devs came up with a solution from these posts
Running Nutch and Solr
Update for Running Nutch and Solr
...
7
votes
1answer
154 views
Solr sorting issue
I am getting this weird error message can not sort on multivalued field: fieldname on all the indexed fields. This is the full error message from solr
</head><body><h1>HTTP Status ...
7
votes
3answers
985 views
Solr 3.1 DataImportHandler from MS SQL and receive java.lang.OutOfMemoryError: Java heap space
I am trying to import a large dataset (41million records) into a new Solr index. I have setup the core, it works, I inserted some test docs, they work. I have setup the data-config.xml as below and ...
7
votes
1answer
1k views
Zend_Search_Lucene vs SOLR
I have recenlty stumbled into Zend Lucene port of Lucene project. I have a little bit experience with SOLR so I would like to know what is the difference between two of them especially from ...
7
votes
2answers
2k views
how do i find out version of currently running solr
Please tell me how can i determine the version number of currently running solr ?
Thanks in advance.
7
votes
1answer
3k views
Update specific field on SOLR index
I want to using solr for search on articles
I have 3 table:
Group (id , group name)
ArticleBase (id, groupId, some other field)
Article(id, articleBaseId, title, date, ...)
in solr schema.xml ...
7
votes
4answers
2k views
Apache solr search part of the word
I'm using apache solr search engine for indexing my website database..
I'm using django+http://haystacksearch.org/
So let's say I have document that have word "Chicken"
When I search for "chicken" ...
7
votes
1answer
3k views
Searching for date range or null/no field in Solr
I want to perform a search on a text field in Solr. I want to return all matches in a range or where there is no value. The two searches word independently:
myfield:[start TO finish]
-myfield:[* TO ...
7
votes
3answers
3k views
Django haystack and whoosh
Does anyone have any experience using django-haystack with the whoosh backend?
I'm looking to use it for a categorized live-search type tool. Is it gonna be fast/efficient enough in a production ...
7
votes
10answers
5k views
How do we create a simple search engine using Lucene, Solr or Nutch?
Our company has thousands of PDF documents. How do we create a simple search engine using Lucene, Solr or Nutch? We'll provide a basic Java/JSP web page were people can type in words and perform ...
6
votes
0answers
87 views
Xapian vs Apache Solr
I'm trying to get a good natural language search going in a website, and trying to understand the advantages of Apache Solr vs Xapian. Xapian seems easier to set up. Do both offer good natural ...
6
votes
3answers
1k views
ElasticSearch / Solr on AWS Elastic Beanstalk
Has anyone tried / planning to try deploying ElasticSearch / Solr on the new AWS Elastic Beanstalk service?
Solr has some info on deploying under Tomcat (which is part of Elastic Beanstalk), couldn't ...
6
votes
2answers
2k views
Do you need Solr/Lucene for MongoDB, CouchDB and Cassandra?
If you have RDBMS you probably have to use Solr to index your relational tables to fully nested documents.
Im new to non-sql databases like Mongodb, CouchDB and Cassandra, but it seems to me that the ...
6
votes
1answer
1k views
use of Solr (Lucene) search on Google App Engine
Currently use of Solr or Lucene is not fully supported on Google App Engine, there are hacks around the issue but none seems perfect.
If I setup the Solr server via a cloud offering somewhere else, ...
6
votes
2answers
1k views
Full text search: Whoosh Vs SOLR
I am working on a Django project, where I need to implement full text search. I have seen SOLR and found some good comments for the same. But as its implemented in Java and would need java enviroment ...
6
votes
1answer
2k views
Solr vs. Sphinx for spatial search
I'm tasked with choosing the fulltext search engine we're going to be using on an upcoming projects. Based on what I've read, I'm leaning toward Solr, but I'm a little concerned about spatial search. ...
6
votes
2answers
2k views
OutOfMemoryError: Java heap space error when start solr
I start indexing DB articles with solr, but after add about 58 million article (and about 113 GB size of disk) , i get below error message on tomcat log error
Note1: i already set Init memory pool ...
6
votes
3answers
503 views
Solr in a multi-tenant environment
I am considering using Solr in a multi-tenant application and I am wondering if there are any best practices or things I should watch out for?
One question in particular is would it make sense to ...
6
votes
1answer
2k views
solr vs xapian: which one gives you the most meaningful results?
I am currently using whoosh to dev a website, and I'll need to choose something more powerful once the website will be in production.
If anyone of you used both of these engines, which one gave you ...
6
votes
5answers
3k views
How to make sure Solr/Lucene won't die with java.lang.OutOfMemoryError?
I'm really puzzled why it keeps dying with java.lang.OutOfMemoryError during indexing even though it has a few GBs of memory.
Is there a fundamental reason why it needs manual tweaking of config ...
6
votes
5answers
11k views
HTTP ERROR: 404 missing core name in path with solr
I am new to Solr, after installing it in ubuntu 8.10, when I was trying exampledocs to index , as per this link, I got this error "HTTP ERROR: 404 missing core name in path" (in jetty)
What shall I ...
6
votes
1answer
1k views
Dedicated faceted search engine for dealing with dynamic taxonomies - helps just with performance or also flexibilty?
I've been thinking for a while about modeling typical ecommerce site with ebay-like taxonomy and attributes dependent on a particular product category.
First attempt was choosing between EAV and ...
6
votes
1answer
1k views
How can I use Verity to index and search database content in ColdFusion 9?
I have tried to use ColdFusion 9 to build search engine in my site. The key is Verity which I read it is the best tool to do the indexing and searching in my database content.
But I search around ...
6
votes
2answers
2k views
Solr DIH — How to handle deleted documents?
I'm playing around with a Solr-powered search for my webapp, and I figured it'd be best to use the DataImportHandler to handle syncing with the app via the database. I like the elegance of just ...