A drop-in replacement for the Haystack Elasticsearch backend which allows multilingual indexes for Django.
Project description
A multilingual Haystack plugin for Django and Elasticsearch. The module is a drop-in replacement for the Haystack ElasticsearchSearchEngine.
Instead of a single index it creates an index for each language specified in settings.LANGUAGES.
A query is routed to the index of the currently active language.
Currently, support for Django 1.10 is not guaranteed.
Installation
Install with pip:
pip install django-multilingual-search
The major and minor versions of this project correspond to the Haystack version the package was tested against. This version is for Haystack 2.4.
Configuration
The app provides a drop-in replacement for the ElasticsearchEngine of Haystack. To use it, specify this engine in settings.py:
HAYSTACK_CONNECTIONS = { 'default': { 'ENGINE': 'multilingual.elasticsearch_backend.ElasticsearchMultilingualSearchEngine', 'URL': 'http://127.0.0.1:9200/', 'INDEX_NAME': 'myproject', }, }
For automatic indexing of new entries the Haystack signal processors can be used without modification. It is recommended that a custom SignalProcessor be used instead of the RealtimeSignalProcessor because of server timeout issues with the latter.
Contributing
Please read the Contributing guide. Any help is greatly appreciated.
My current company is not using Python, so I won’t be able to maintain and keep this library updated.
Release History
2.4.2: Support Haystack 2.4.1
2.4.1: Add compatibility with Django-parler.
2.4.0: Update code for compatibility with Haystack 2.4
2.3.0: First release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-multilingual-search-2.4.1.tar.gz
.
File metadata
- Download URL: django-multilingual-search-2.4.1.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84038dc8546619df1eae8582ac5e49127885efc2c778ddedd9f67ac53243d63a |
|
MD5 | 2b4c4bde314877b95531f33b6d6fdaee |
|
BLAKE2b-256 | f1e633e39a3bffa922fb6bce27b7080188e5c21df816c65f300e819e2f3dfce1 |