FWIW the only search solution I managed to get flying after trying all
of the proposals in this thread was a PyLucene based "search servce"
running on an XML-RPC server (using SimpleXMLRPCServer). This is because
PyLucene doesn't play friendly with threads unless you use this:

from PyLucene import PythonThread
import threading
threading.Thread = PythonThread

However that seemed to make CherryPy go *blort*

-Rob

Ben Lee wrote:
> 2 pieces of useful data:
> 
> 1) http://wiki.apache.org/jakarta-lucene/LucyProposal
> 
> Doug Cutting, Dave Balmain, Marvin Humphrey have got ASF approval for a
> C backend to lucene for all dynamic languages (Perl, Ruby, Java, et
> al.)  I expect a Python port to soon follow.
> 
> 2) generalized inverted indexes are coming to postgresql, which should
> enable much better in database full-text indexes.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---

Reply via email to