
Security News
pnpm 10.12 Introduces Global Virtual Store and Expanded Version Catalogs
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.
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_.
You also need to install your choice of one of the supported search engines for Haystack and one of the supported backends for Celery.
.. _Haystack: http://haystacksearch.org .. _celery-haystack: https://github.com/django-haystack/celery-haystack
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.
.. _django-transaction-hooks: https://github.com/carljm/django-transaction-hooks
Add 'celery_haystack'
to the INSTALLED_APPS
setting
.. code:: python
INSTALLED_APPS = [ # .. 'celery_haystack', ]
Enable the celery-haystack signal processor in the settings
.. code:: python
HAYSTACK_SIGNAL_PROCESSOR = 'celery_haystack.signals.CelerySignalProcessor'
Alter all of your SearchIndex
subclasses to inherit from
celery_haystack.indexes.CelerySearchIndex
and
haystack.indexes.Indexable
.. code:: python
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.
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.
.. _queued_search: https://github.com/toastdriven/queued_search/ .. _Celery: http://celeryproject.org/ .. _queues: http://code.google.com/p/queues/
Please use the EduGit issue tracker
_ for any bug reports or feature
requests.
.. _EduGit issue tracker
: https://edugit.org/AlekSIS/libs/celery-haystack-ng/-/issues
FAQs
An app for integrating Celery with Haystack
We found that celery-haystack-ng demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.
Security News
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.