You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But the problem is my results are not showing or are showing for wrong language. Also it finds a blog article for english but it shows the title from nl from the blog article.
Had anyone also problems with the search?
Or is there a place where i can have support?
The text was updated successfully, but these errors were encountered:
the jsonfield is probably not a problem, plugins are rendered for the index. I have it working, but with woosh. also. one thing after another - blog articles might not be indexed correctly (the api, with inheritance, is a bit tricky and took me some time to learn).
Hello,
I have elasticsearch 2.4 setup active with pip package elasticsearch2.4 within my django-cms project.
Haystack setup is this;
`
HAYSTACK_CONNECTIONS = {
'default': {
'ENGINE': 'haystack.backends.elasticsearch2_backend.Elasticsearch2SearchEngine',
'URL': 'http://192.168.1.19:9200/',
'INDEX_NAME': 'haystack',
},
'nl': {
'ENGINE': 'haystack.backends.elasticsearch2_backend.Elasticsearch2SearchEngine',
'URL': 'http://192.168.1.19:9200/',
'INDEX_NAME': 'haystack-nl',
'TIMEOUT': 60 * 5,
'INCLUDE_SPELLING': True,
'BATCH_SIZE': 100,
},
'en': {
'ENGINE': 'haystack.backends.elasticsearch2_backend.Elasticsearch2SearchEngine',
'URL': 'http://192.168.1.19:9200/',
'INDEX_NAME': 'haystack-en',
'TIMEOUT': 60 * 5,
'INCLUDE_SPELLING': True,
'BATCH_SIZE': 100,
},
'fr': {
'ENGINE': 'haystack.backends.elasticsearch2_backend.Elasticsearch2SearchEngine',
'URL': 'http://192.168.1.19:9200/',
'INDEX_NAME': 'haystack-fr',
'TIMEOUT': 60 * 5,
'INCLUDE_SPELLING': True,
'BATCH_SIZE': 100,
},
}
HAYSTACK_ROUTERS = ['aldryn_search.router.LanguageRouter',]
`
manage.py rebuild_index and update_index works.
But the problem is my results are not showing or are showing for wrong language. Also it finds a blog article for english but it shows the title from nl from the blog article.
Had anyone also problems with the search?
Or is there a place where i can have support?
The text was updated successfully, but these errors were encountered: