thomlinton / celery-haystack

An app for integrating Celery with Haystack.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

celery-haystack

Build Status

This Django app allows you to utilize Celery for automatically updating and deleting objects in a Haystack search index.

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

By default a few dependencies will automatically be installed:

Setup

  1. Add 'celery_haystack' to INSTALLED_APPS.
  2. Alter all of your SearchIndex subclasses to inherit from celery_haystack.indexes.CelerySearchIndex (as well as haystack.indexes.Indexable if you use Haystack 2.X).
  3. 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 Github issue tracker for any bug reports or feature requests.

About

An app for integrating Celery with Haystack.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%