Re: Search Engine using Django-Python

2015-07-24 Thread Ajeeb K P
I think you have to head this way. https://docs.djangoproject.com/en/1.8/topics/db/managers/ According to this docs, A Manager is the interface through which database query operations are > provided to Django models. At least one Manager exists for every model in a > Django application. >

Re: Search Engine using Django-Python

2015-07-21 Thread Manoj Bawane
Hi Daniel, Yes, I read about Haystack and I am implementing it with Solr and Database I am using MySQL. While integrating it I am getting error for ManyToMany Model field. I am getting this error and I am not understand what is going wrong or what to do: Traceback (most recent call last):

Re: Search Engine using Django-Python

2015-07-06 Thread Daniel França
Hi Manoj, have you tried Haystack? http://haystacksearch.org/ It's a simple API to make a search engine using Django, and you can attach any of the available backends (Solr, Elasticsearch, Whoosh or Xapian). Best, Daniel Em seg, 6 de jul de 2015 às 18:01, Manoj Bawane

Search Engine using Django-Python

2015-07-06 Thread Manoj Bawane
Hi All, I am planning to create a search engine for my city. Can you please suggest me Which technology I should prefer? I am new with Django, before that I have work with some web application using Java Spring. But now, I recently working in one project where I found Django is also nice