Tagged Questions

Open Source Search Engine Library with bindings to allow use from Perl, Python, PHP, Java, Tcl, C#, Ruby and Lua

learn more… | top users | synonyms

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 ...
20
votes
7answers
2k views

Search engine solution for Django that actually works?

The story so far: Decided to go with Xapian as search backend because it has all search-engine features I was looking for, knows about Unicode, stemming, has few dependencies and requires no bloated ...
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 ...
6
votes
0answers
89 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
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 ...
5
votes
4answers
1k views

Full text search for Rails 3

I’m evaluating full text search methods for Rails 3 ATM. Does anyone here have a recommendation? Seems to me as if most of the known methods (Sunspot, Sphinx, Ferret, Xapian) aren’t yet ready for ...
4
votes
3answers
1k views

Fulltext search for django : Mysql not so bad ? (vs sphinx, xapian)

I am studying fulltext search engines for django. It must be simple to install, fast indexing, fast index update, not blocking while indexing, fast search. After reading many web pages, I put in ...
3
votes
1answer
348 views

What is the difference between searchlogic and other fulltext search plugins?

I am looking for an alternative to acts_as_solr or thinkingsphinx for fulltext search in my Rails app. Came across searchlogic. Does it support indexing? I am planning to host my app on heroku and I ...
2
votes
1answer
75 views

Is it possible to compile and use xapian, clucene or lucy on iOS?

I want to compile and use Xapian with xcode on iOS, is there any one with any experiments on this? Is it possible? Is there any other option for implementing full text search on iOS?I have tried ...
2
votes
1answer
290 views

Search performance of Sphinx vs. Haystack

I was wondering if anyone had or could point me in the direction of benchmark results of the performance of using Sphinx to do search vs. Haystack with a Xapian backend. I'm mainly concerned with full ...
2
votes
1answer
296 views

Document search on partial words

I am looking for a document search engine (like Xapian, Whoosh, Lucene, Solr, Sphinx or others) which is capable of searching partial terms. For example when searching for the term "brit" the search ...
2
votes
0answers
441 views

Install Xapian for Python 2.6 on CentOS 5.5

I'm using Django 1.2 for Python 2.6 on CentOS 5.5 and I'm trying to install Django Haystack with Xapian as the search backend. I've followed the installation instructions on ...
2
votes
4answers
736 views

xapian-full installed on mac os x snow leopard but failed with dlopen LoadError

Since I have tried to install xapian but failed, I try another alternative with xapian-full. Installation seems goes well, but when I try to write code with that I got toasted with error message ...
2
votes
2answers
547 views

haystack's RealTimeSearchIndex causes django to hang on data entry

I'm using django-haystack and a xapian backend with real time indexing (haystack.indexes.RealTimeSearchIndexing) of model data and it works fine on my Ubuntu server. However, it causes django to hang ...
2
votes
3answers
1k views

xapian and django-haystack

I have a problem with django-haystack. According to this tutorial I got this apps: django-haystack xapian-haystack I set everything but i have this error: ...
2
votes
1answer
321 views

Xapian multiple-language searching with stop words?

I have two Xapian databases, let's call one "EN" and the other "DE", and let's say the former contains some documents in English, and the latter in German. If I want users to be able to search both ...
2
votes
2answers
1k views

Crawler/parser for Xapian

I would like to implement a search engine which should crawl a set of web sites, extract specific information from the pages and create full-text index of that specific information. It seems to me ...
1
vote
2answers
93 views

Count total search objects count in template using django-haystack

I am using django haystack with xapian as the backend search engine. I am using FacetedSearchView and FacetedSearchForm for faceting over the search. I have passed searchqueryset to the ...
1
vote
1answer
51 views

Are there any APIs supporting “similar titles” suggestions like the ones for Stack Overflow?

I really love the way Stack Overflow provides suggestions ("Question with similar titles") during new question typing. So I decided to add it to a tickets management system I'm building for my company ...
1
vote
1answer
99 views

Qt + xapian library

I'm trying to use Xapian library in my Qt-project. I've just added header: #include <QtCore/QCoreApplication> #include <xapian.h> using namespace std; int main(int argc, char *argv[]) { ...
1
vote
1answer
119 views

Search range of int values using djapian

I'm using djapian as my search backend, and I'm looking to search for a range of values. For example: query = 'comments:(0..10)' Post.indexer.search(query) would search for Posts with between 0 and ...
1
vote
0answers
226 views

xapian auto-complete

Has anyone ever used Xapian for implementing an Auto-Complete/Auto-Suggest feature? i.e. providing possible set of suggestions as the user types a.k.a. Google's Auto-Suggest. I have about 2 million ...
1
vote
1answer
375 views

I've installed xapian via macports, so why does this python app tell me that xapian needs to be installed?

I'm trying to run a python application on my system. When I try to execute it I get a traceback which ends with something saying I need to install Xapian. So I went ahead an installed xapian-core and ...
1
vote
1answer
150 views

How to make django test framework read from live database?

I realize there's a similar question here, but this one has a different approach: I have a django app that does queries over data indexed with djapian ; I'd like to write unit tests for this app's ...
1
vote
3answers
593 views

Django Haystack exact filtering

I have a haystack search which has the following SearchIndex: class GrantIndex(indexes.SearchIndex): """ This provides the search index for the Grant application. """ text = ...
1
vote
1answer
155 views

DataBaseLock error with Django, Xapian and Haystack

I'm indexing a model with xapian/haystack. When i test it on my local machine everything works just fine, but when i try to save a model on the server Xapian throws a DatabaseLockError Exception ...
1
vote
2answers
597 views

Djapian - filtering results

I use Djapian to search for object by keywords, but I want to be able to filter results. It would be nice to use Django's QuerySet API for this, for example: if query.strip(): results = ...
1
vote
2answers
417 views

How to deal with xapian php exceptions

Help with using the xapian php wrapper. I have a couple of custom exception handlers for different categories of errors (I'm thinking of seperating them out more). Xapian handles errors by throwing ...
0
votes
1answer
81 views

xapian on centos 6 with php 5.3+

I've got a 64bit server with centos 6 and php 5.3 installed php-5.3.2-6.el6_0.1.x86_64 I've installed xapian using rpms from their website rpm-eprints-org-xapian-6-1.noarch ...
0
votes
0answers
35 views

djapian: stemming does not work

I'm using django for my web-application. My site should have fulltext search, so I've decided to use xapian + djapian. I've followed the official tutorials http://code.google.com/p/djapian/w/list, ...
0
votes
1answer
75 views

what is Haystack for Django?

I have been reading about Haystack,Whoosh,Xapian,etc. however I didn't really get what they are exactly used for and what is the relationship between them. For example, it is said that Enable ...
0
votes
1answer
37 views

What is the best way to represent a category hierarchy using term prefixes in Xapian?

Assume I have the following example hierarchy: US Michigan Detroit Grand Rapids Lansing Minnesota Grand Rapids Minneapolis St Paul Ohio Columbus Grand Rapids Sandusky I see two ways that I ...
0
votes
0answers
77 views

searching with haystack and xapian?

I've been trying to do this search: the post's title is 'help me' in my code it's: SearchQuerySet().filter(title=request.Get.copy()['search']) so if I search 'help', 'me', or 'help me' I get the ...
0
votes
0answers
30 views

xapian sort by a value more fast

i want to use xapian as my search engine , i use add_boolean_term(something) and add_value(0,sortable_serialise(get_timestamp())) to a doc. when search through ...
0
votes
0answers
309 views

Document search in Lucene/Solr, Whoosh, Sphinx, Xapian

I am comparing Lucene/Solr, Whoosh, Sphinx and Xapian for searching documents in DOC, DOCX, HTML and PDF. Only Solr is documented to have a document parser (Tika) which directly indexes documents. So ...
0
votes
1answer
249 views

Xapian vs Lucene.Net - Arabic documents text search

i am facing the problem of text search through a large amount of Arabic content documents (PDF and Doc files) in C# .Net. after a lot and a lot searching, i came up with 2 solutions, First, ...
0
votes
2answers
203 views

django xapian-haystack permission problem

I have been trying to get xapian working django haystack for a project im working on that requires some search functionality but have run into a bit of a wall!! Basically i got everything installed ...
0
votes
0answers
68 views

xapian nonword characters in search keywords

In our django haystack-xapian based search form, when we use '-' char in search queries like "test-product" xapian can not find anything but if we change '-' with whitespace like "test product" it ...
0
votes
1answer
81 views

xapian problems - 32-bit C# windows

with regards to How to compile and use Xapian on Windows with C#. I have the same problem but I am running a 32-bit windows and my platform is set to run on x86 also. what can I do? i also am not ...
0
votes
0answers
82 views

postgres error while building djapian index

I am running Django with djapian/xapian and postgres. The development system is 32 bit, the server system 48 bit. Building the djapian index (python manage.py index --rebuild) fails on both systems ...
0
votes
1answer
235 views

django centos xapian haystack

I just went through a bit of an installation process with django-haystack and xapian on my root user and eventually my other user and all the responses seem to be okay. even when I am in my ...
0
votes
1answer
211 views

Py_InitModule4 with Djapian/Xapian

I am trying to install Djapian on RedHat5 / Python2.6. I have already installed it successfully on my OSX 10.6 machine. I have built and compiled Xapian and Djapian without issue for Py2.6. I then ...
0
votes
1answer
137 views

Java CSS Crawler

I'm looking for a web crawler with the ability to grab the page's CSS. I don't need any other fancy crawling abilities. I'm trying to make my way through Xapian, Nutch and Heritrix. They all seem to ...
0
votes
1answer
135 views

Django-haystack using rebuild_index command gives error:

I get this error: xapian.WritableDatabase_swiginit(self,_xapian.new_WritableDatabase(*args)) xapian.DatabaseOpeningError: /home/xapian/mysite_index: No databases listed when running the "./manage.py ...
0
votes
2answers
306 views

xapian-bindings python compatibility

i am able to get xapian working as expected with python on my development server but i am having issues with my web server. i keep running into this error: import xapian ...
0
votes
1answer
155 views

Search Short Fields Using Solr, Etc. or Use Straight-Forward DB Index

My website stores several million entities. Visitors search for entities by typing words contained only in the titles. The titles are at most 100 characters long. This is not a case of classic ...
0
votes
1answer
384 views

Django + Haystack how to do this search

I'm new to Haystack and to the search world so I didn't know how to ask this question. What I want to achieve is the following. Having a search query like: one two I would like to get returned any ...
0
votes
6answers
471 views

I really want to use Xapian on a project, but for the life of me I can't figure out how to install it on Windows!

If this was on a linux box I'd be set, but there's a distinct lack of documentation! I want to use this with c# and the omega indexing app. There doesn't seem to be any documentation on how to ...
0
votes
1answer
154 views

Defining an index combining two tables with Djapian

I've got the following Restaurant and Comment models. I'm doing full text search on some fields of the Restaurant model, as shown below in the RestaurantIndexer class. How can I do a full text search ...
0
votes
1answer
539 views

“Permission Denied” in Django template using Djapian

I've followed the Djapian tutorial and setup everything "by the book" so that the indexshell commandline supplied by Djapian shows successful queries. However, when integrating the sample search from ...

1 2