brydon schrieb:
> I'm curious what people are currently using for search frameworks on
> django based projects. I've done a fair bit of research here and
> elsewhere and I still haven't landed on a clear decision. What are
> people successfully using with django to get robust search
> capabilities a la lucene etc? Are pylucene, xapian working?
>
>
>   
Since my projects are based on postgres, I have choosen tsearch2 for 
full text search. Big
advantage: It is part of the transaction system.

It took me some time to find out, that the methods to_tsvector and 
to_tsquery can be
replaced by own methods. You just need to return a properly formated 
string and cast
it to tsvector. [1]

I am happy with the speed. It is much faster than the old solution (htdig).

Tsearch2 covers indexing of unicode data only. If you want to index 
HTML, office formats, ... you
need a way to convert them to unicode.

HTH,
  Thomas Güttler

[1]: 
http://www.postgresql.org/docs/current/interactive/datatype-textsearch.html

-- 
Thomas Guettler, http://www.thomas-guettler.de/
E-Mail: guettli (*) thomas-guettler + de


--~--~---------~--~----~------------~-------~--~----~
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@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to