Re: Need a replacement of pyLucene :(

2008-01-11 Thread mamcxyz
I think that load the java runtime and setup a jar server could put the VPS under memory limits. This have the option to go on facebook, so I must care how load it. However is a option, thanks. --~--~-~--~~~---~--~~ You received this message because you are

Re: Need a replacement of pyLucene :(

2008-01-11 Thread Udi
I've had good luck with solr. It's basically an http rest interface to your Lucene index. So, this way you can avoid all the threading issues and whatnot that crop up with pylucene. It's java based, so I guess it'll run on windows. http://lucene.apache.org/solr/ http://wiki.apache.org/solr

Re: Need a replacement of pyLucene :(

2008-01-11 Thread Brett Parker
On 11 Jan 07:46, mamcxyz wrote: > > Hi, > > Because the issue here > http://www.opensolaris.org/jive/post!reply.jspa?messageID=192094 > I need a working & viable alternative to pyLucene that: > > - Work on Solaris & Windows (A must) and maybe linux > -

Re: Need a replacement of pyLucene :(

2008-01-11 Thread Alex Koshelev
http://xapian.org/ On 11 янв, 18:46, mamcxyz <[EMAIL PROTECTED]> wrote: > Hi, > > Because the issue > herehttp://www.opensolaris.org/jive/post!reply.jspa?messageID=192094 > I need a working & viable alternative to pyLucene that: > > - Work on Solaris & Window

Need a replacement of pyLucene :(

2008-01-11 Thread mamcxyz
Hi, Because the issue here http://www.opensolaris.org/jive/post!reply.jspa?messageID=192094 I need a working & viable alternative to pyLucene that: - Work on Solaris & Windows (A must) and maybe linux - Open source/Free - Search engine library - Basic NOT, AND, OR - Reasonable fast

Re: Pylucene

2007-11-28 Thread VK
Thanks Jarek. I appreciate sharing your thoughts on this matter. VK On Nov 28, 2007 3:49 AM, Jarek Zgoda <[EMAIL PROTECTED]> wrote: > > [EMAIL PROTECTED] napisał(a): > > > It would be very helpful to know if the Django Dev. team has any plans > > to inclu

Re: Pylucene

2007-11-28 Thread Jarek Zgoda
[EMAIL PROTECTED] napisał(a): > It would be very helpful to know if the Django Dev. team has any plans > to include support for > Pylucene/ Django.contrib.search feature in the near future? PyLucene poses very specific problems. Basically, there are 2 flavors, GCJ-based PyLucene and

Re: Pylucene

2007-11-27 Thread Thejaswi Puthraya
On Nov 28, 6:42 am, [EMAIL PROTECTED] wrote: > Hello, > > It would be very helpful to know if the Django Dev. team has any plans > to include support for > Pylucene/ Django.contrib.search feature in the near future? There is already a branch that has been created for addding

Pylucene

2007-11-27 Thread vkblogger
Hello, It would be very helpful to know if the Django Dev. team has any plans to include support for Pylucene/ Django.contrib.search feature in the near future? Thanks, VK --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: PyLucene

2006-12-30 Thread Joseph Heck
wrote: > > Hi, > > Has anyone managed to get PyLucene working with Django? > > It all works perfectly in unittests etc., but I using the development > server import PyLucene causes python to crash (I suspect because the > thread doesn't subclass PyLucene.PythonThread).

Re: PyLucene

2006-12-30 Thread [EMAIL PROTECTED]
I've used Lupy - old DivMod project. A howto is here: http://www.rkblog.rk.edu.pl/w/p/django-lupy/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: PyLucene

2006-12-30 Thread Cam
pian for a few things in the past and highly recommend it. On of the key benefits of PyLucene in a multi-platform development shop is index compatibility with Lucene - that's why I'm using it here. Thanks again. cheers, Cam. --~--~-~--~~~---~--~~ You received this mes

Re: PyLucene

2006-12-30 Thread Brett Parker
On Thu, Dec 28, 2006 at 08:53:43PM -0800, Cam wrote: Hi, Has anyone managed to get PyLucene working with Django? It all works perfectly in unittests etc., but I using the development server import PyLucene causes python to crash (I suspect because the thread doesn't subclass

PyLucene

2006-12-28 Thread Cam
Hi, Has anyone managed to get PyLucene working with Django? It all works perfectly in unittests etc., but I using the development server import PyLucene causes python to crash (I suspect because the thread doesn't subclass PyLucene.PythonThread). On OS X 10.4.8 with Apache 2.0.59 compiled

Re: Tips for integrate pyLucene in django?

2006-06-09 Thread gabor
mamcxyz wrote: > No exist a way directly in python or django? > > My first release of this thing become under a low-end vps and putting > another memory dog (I have a limit of 10 process?) is a issue. > btw. do you really need a sophisticated search system? for example, i only needed a simple

Re: Tips for integrate pyLucene in django?

2006-06-09 Thread mamcxyz
Ok, but still is not convincent. Maybe pair this with Pyro (http://pyro.sourceforge.net/)? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: Tips for integrate pyLucene in django?

2006-06-09 Thread Gábor Farkas
Ian Holsman wrote: > another option you might want to look at is using SolR - http:// > incubator.apache.org/projects/solr.html , which is a search server > which uses lucene. > you could then use a regular HTTP client to communicate with it. great, thanks for the link... have you tried

Re: Tips for integrate pyLucene in django?

2006-06-08 Thread Ian Holsman
another option you might want to look at is using SolR - http:// incubator.apache.org/projects/solr.html , which is a search server which uses lucene. you could then use a regular HTTP client to communicate with it. On 09/06/2006, at 9:36 AM, mamcxyz wrote: > > I think that complicate a

Tips for integrate pyLucene in django?

2006-06-08 Thread mamcxyz
I already read http://groups.google.com/group/django-users/browse_thread/thread/57e862310c2bf664/4e187a95a5651934?q=pylucene=1#4e187a95a5651934 However, I need use pyLucene inside a django app I'm working. Just now, is working all fine. I have this: import os from PyLucene import IndexWriter