Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using SOLR with NUTCH

I have successfully configure both and Solr is giving me the desired results

Now i want to integrate this in my Django project

Can anyone suggest me how to do it ...

share|improve this question

1 Answer

up vote 1 down vote accepted

it depends on what you need:

IF YOUR SOLR INSTANCE IS BOUND TO THE DJANGO'S MODEL

you probably are looking for django-haystack: it's pretty easy to setup and to use inside your django views, but it's not suited for huge amount of data

IF YOU'RE USING SOLR WITHOUT ANY RELATION TO DJANGO MODELS

this means that your results are retrieved as pure array, and you just need a python interface to solr. you have some choices

you have to try them out and find out which one satisfies you more (check their websites too, to see if the project is mantained. also, stumble into their source code, to check if there's all you need). being a python interface implies that you have to do a little bit more of work inside your views

i hope this can help you

share|improve this answer
thank you buddy – Muhammad Umair Mar 1 '12 at 6:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.