Elastic search. Fuck you, Solr.

master
Nick Sergeant 2012-07-25 22:51:32 -04:00
parent 2bec6e82a6
commit bf21af8dcf
2 changed files with 5 additions and 3 deletions

View File

@ -13,8 +13,8 @@ gunicorn
lxml
parsedatetime
psycopg2
pyelasticsearch
Pygments
pysolr
python-memcached
python-postmark
pyyaml
@ -26,6 +26,7 @@ Werkzeug
git+git://github.com/dlo/bottlenose.git
git+git://github.com/yoavaviram/python-amazon-simple-product-api.git
git+git://github.com/toastdriven/pyelasticsearch.git
git+https://github.com/toastdriven/django-haystack.git@master#egg=django-haystack
hg+https://bitbucket.org/ubernostrum/django-registration#egg=django-registration
git+https://github.com/toastdriven/django-tastypie.git#egg=django-tastypie

View File

@ -218,8 +218,9 @@ AUTH_PROFILE_MODULE = 'accounts.UserProfile'
# Search
HAYSTACK_CONNECTIONS = {
'default': {
'ENGINE': 'haystack.backends.solr_backend.SolrEngine',
'URL': 'http://127.0.0.1:8983/solr'
'ENGINE': 'haystack.backends.elasticsearch_backend.ElasticsearchSearchEngine',
'URL': 'http://127.0.0.1:9200/',
'INDEX_NAME': 'haystack',
},
}