Re: How to implement full-text search in Django?

2017-12-16 Thread Etienne Robillard
Thanks Egor. Django-haystack looks quite flexible and well-designed. My current plan is to use redisearch plugin for Redis: http://redisearch.io/ I'm thinking that I could write a script to import into redis a list of URLs by fetching a RSS file as input and then use redisearch to perform a

Re: How to implement full-text search in Django?

2017-12-16 Thread Egor Smolyakov
Check out this library https://github.com/django-haystack/django-haystack It supports a wide range of backends. On 16/12/2017, Etienne Robillard wrote: > Hi all, > > I would like some input on implementing a full-text search engine for my > website and blog. > > I really

How to implement full-text search in Django?

2017-12-16 Thread Etienne Robillard
Hi all, I would like some input on implementing a full-text search engine for my website and blog. I really don't want to use Google search API or a external webservice to index my documents. Also, my blog is powered by ZODB while my main website uses Durus. Ideally, i would like to use