An app for integrating Celery with Haystack
Project description
This Django app allows you to utilize Celery for automatically updating and deleting objects in a Haystack search index.
Forked from the original celery-haystack.
Requirements
You also need to install your choice of one of the supported search engines for Haystack and one of the supported backends for Celery.
Installation
Use your favorite Python package manager to install the app from PyPI, e.g.:
pip install celery-haystack-ng
For Django < 1.9 you need to install and configure django-transaction-hooks – an app that brings transaction commit hooks to Django.
Usage
Add 'celery_haystack' to the INSTALLED_APPS setting
INSTALLED_APPS = [ # .. 'celery_haystack', ]
Enable the celery-haystack signal processor in the settings
HAYSTACK_SIGNAL_PROCESSOR = 'celery_haystack.signals.CelerySignalProcessor'
Alter all of your SearchIndex subclasses to inherit from celery_haystack.indexes.CelerySearchIndex and haystack.indexes.Indexable
from haystack import indexes from celery_haystack.indexes import CelerySearchIndex from myapp.models import Note class NoteIndex(CelerySearchIndex, indexes.Indexable): text = indexes.CharField(document=True, model_attr='content') def get_model(self): return Note
Ensure your Celery instance is running.
Thanks
This app is a blatant rip-off of Daniel Lindsley’s queued_search app but uses Ask Solem Hoel’s Celery instead of the equally awesome queues library by Matt Croyden.
Issues
Please use the EduGit issue tracker for any bug reports or feature requests.
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
Built Distribution
Hashes for celery-haystack-ng-2.0rc1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9d88d110a5372296ac00d1b2bb187372d99ff69d7cd22df9ad06402210d2915 |
|
MD5 | ca746d5abd97ecc62986e3b9f93f416b |
|
BLAKE2b-256 | b797f3bae9ca9c91cea5d450a60582074de9d743000252208481fbdde5c15e9a |
Hashes for celery_haystack_ng-2.0rc1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72692e84478dc4ee1db273a23cddb16f5f9934624020ee7b91cb5d6b10c044ba |
|
MD5 | 252130fc155ab559a4609b28e90250cc |
|
BLAKE2b-256 | 25ac018585e097f80510a36ca9dc11d2785d890d7eb09bed3b474705c767cc5f |