Tagged Questions

PyLucene is a Python extension for accessing Java Lucene. Its goal is to allow you to use Lucene's text indexing and searching capabilities from Python.

learn more… | top users | synonyms

4
votes
4answers
2k views

Python 2.6 + JCC + Pylucene issue

Greetings, I'm trying to use pylucene in Python 2.6. Since there's no windows build for 2.6, I try to build the source code. First of all, I build JCC (windows, using cygwin) python setup.py build ...
3
votes
1answer
403 views

Installing PyLucene 3.0.3 on Ubuntu 10.04

I'm attempting to install PyLucene 3.0.3 on Ubuntu 10.04. This has proven considerably challenging, but so far I've: Patched setuptools to allow building of JCC, as instructed in the PyLucene docs. ...
3
votes
2answers
781 views

How do I use StandardAnalyzer with TermQuery?

I'm trying to produce something similar to what QueryParser in lucene does, but without the parser, i.e. run a string through StandardAnalyzer, tokenize this and use TermQuery:s in a BooleanQuery to ...
3
votes
2answers
332 views

jcc.initVM() doesn't return when mod_wsgi is configured as daemon mode

I am using mod-wsgi with django, and in django I use pylucene to do full text search. While mod-wsgi is configured to be embedded mode, there is no problem at all. But when mod-wsgi is configured to ...
3
votes
3answers
943 views

Windows build for PyLucene+JCC on python 2.6

Where can I download a PyLucene+JCC Windows build compiled for python 2.6? Jose
2
votes
1answer
109 views

Where is the best place to do initVM and attachCurrentThread when using pylucene in Django

I'm using pylucene in a django based site and I was wondering if anyone knew where the best place to start up the jvm and attach threads would be. I don't want to have to start a new jvm every time ...
2
votes
2answers
410 views

Lucene QueryParser interprets 'AND OR' as a command?

I am calling Lucene using the following code (PyLucene, to be precise): analyzer = StandardAnalyzer(Version.LUCENE_30) queryparser = QueryParser(Version.LUCENE_30, "text", analyzer) query = ...
2
votes
1answer
136 views

writing a custom anaylzer in pylucene/inheritance using jcc?

I want to write a custom analyzer in pylucene. Usually in java lucene , when you write a analyzer class , your class inherits lucene's Analyzer class. but pylucene uses jcc , the java to ...
1
vote
0answers
40 views

pylucene windows

So, I try to make pylucene 3.5.0 under Windows7 64, JDK 1.6.30, ANT 1.8.2, Gnu Make32, Python27 Makefile # Windows (Win32, Python 2.7, Java 1.6, ant 1.8.1, Java not on PATH) ...
1
vote
1answer
44 views

pylucene: install error

UPDATE question: Thanks Favoretti! I installed jcc using apt-get and the makefile under pylucene ran a little bit and threw a java error and I dont have a clue. Here it is. Can you please let me ...
1
vote
2answers
265 views

pyLucene Installation

I am on Ubuntu 10.04, Python 2.6.5 & having some trouble installing pyLucene. Here's what I have done so far, installed these packages - sudo apt-get install ant sudo apt-get install ...
1
vote
1answer
422 views

Lucene: search within search using FuzzyQuery

I need to make a FuzzyQuery using an index that contains around 8 million lines. That kind of query is pretty slow, needing about 20 seconds for every match. The fact is that I can narrow down the ...
1
vote
4answers
369 views

ImportError: no module named _jcc

I'm trying to install pylucene on python 2.7 (windows) since four days. It requires JCC to build and install. After thousands and thousands different errors I handled myself, at last JCC sucessfully ...
0
votes
1answer
31 views

Lucene automatic indexer

I have just started learning Lucene and would like to use it for indexing the hard drive and my email, what i'm wondering whether Lucene has something for helping me with that or I have to build ...
0
votes
1answer
51 views

PyLucene Custom TokenStream using PythonTokenStream

I am attempting to build a TokenStream from a Python Sequence. Just for fun I want to be able to pass my own Tokens directly to pylucene.Field("MyField", MyTokenStream) I tried to make ...
0
votes
1answer
49 views

Is apache killing my process?

I have a strange problem regarding lucene and apache. I am using lucene for full text search and for a search I need to call: initVM() I found out that after this call nothing gets executed. So ...
0
votes
0answers
73 views

How to limit thread count in Lucene/PyLucene?

I am trying to run parallel Lucene queries using PyLucene and Python's Multiprocessing package. I run it on a large server machine with thousands of cores. The problem that I am running into is that ...
0
votes
1answer
150 views

Using SnowBallAnalyzer with PyLucene

I'm trying to use SnowBallAnalyzer in PyLucene but I always get an error saying: InvalidArgsError when I try to create an instance of it like this: analyzer = SnowBallAnalyzer("Spanish") or ...
0
votes
2answers
126 views

Using PyLucene as a K-NN Classifier

I have a dataset composed of millions of examples, where each example contains 128 continuous-value features classified with a name. I'm trying to find a large robust database/index to use to use as a ...
0
votes
1answer
382 views

Problems with installing jcc and pylucene

I'm trying to install pylucene on Windows XP. I installed JDK on C:\Programme\Java\jdk1.6.0_18 . I also installed Visual Studio C++ Express to have a C++ compiler. As first step I'm trying to ...
0
votes
1answer
117 views

Pylucene eclipse plugin

Is there a Pylucene eclipse plugin? or am I missing something? I want it for Auto complete. Is the import structure same as java lucene
0
votes
3answers
687 views

Pylucene in Python 2.6 + MacOs Snow Leopard

Greetings, I'm trying to install Pylucene on my 32-bit python running on Snow Leopard. I compiled JCC with success. But I get warnings while making pylucene: ld: warning: in ...