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 subscr

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://

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
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 PyLuce

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 django-u

Re: PyLucene

2006-12-30 Thread Cam
sed xapian 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. --~--~-~--~~~---~--~~ Y

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 sub

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 compile

Re: Tips for integrate pyLucene in django?

2006-06-09 Thread Joshua D. Drake
mamcxyz wrote: > Yes I do. > > I'm building a "community" site for know, see and review local > restaurant... This for restaurant with geographic information, food > type, music played, bla bla... full of tags and trees...The idea is > have more or less 1000+ before the end of this year and I expe

Re: Tips for integrate pyLucene in django?

2006-06-09 Thread mamcxyz
Yes I do. I'm building a "community" site for know, see and review local restaurant... This for restaurant with geographic information, food type, music played, bla bla... full of tags and trees...The idea is have more or less 1000+ before the end of this year and I expect a large amount of visit

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 django-users@goo

Re: Tips for integrate pyLucene in django?

2006-06-09 Thread Jeremy Dunck
On 6/9/06, mamcxyz <[EMAIL PROTECTED]> 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. See this post's comments for a discussion of various python in

Re: Tips for integrate pyLucene in django?

2006-06-09 Thread Wade Leftwich
You might also check out NXLucene (http://www.cps-project.org/sections/projects/nxlucene), built with PyLucene and Zope3 components. I'm looking at this along with SOLR (which is Java of course and runs on Tomcat.) The basic idea is the same for SOLR and NXLucene -- it's a standal

Re: Tips for integrate pyLucene in django?

2006-06-09 Thread mamcxyz
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. Not exis a way to build a permanent thread/process under django? or something like application? Or a way to lock acce

Re: Tips for integrate pyLucene in django?

2006-06-09 Thread Ian Holsman
not with python directly (but I plan to) but I've seen it used in companies i work with and it works pretty well. On 09/06/2006, at 8:53 PM, Gábor Farkas wrote: > > Ian Holsman wrote: >> another option you might want to look at is using SolR - http:// >> incubator.apache.org/projects/solr.html ,

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 usin

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 littl

Re: Tips for integrate pyLucene in django?

2006-06-08 Thread mamcxyz
I think that complicate a little the things... Any hint in how do that? Also, for clarity, the rule is: only ONE writer object at time can acces the index. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django u

Re: Tips for integrate pyLucene in django?

2006-06-08 Thread gabor
mamcxyz wrote: > > The thing I'm not sure is about thread safety. I'm confident in the > Lucene stuuf (in fact I'm working in a port of Lucene to Delphi) but > not know in the context of django what to do. > > The rule is only have a GLOBAL writer object, and I can do concurrent > reading operat

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&rnum=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 PyLuce