Skip to content

Remove job for updating full text search indices

Leon Merten Lohse requested to merge (removed):signalprocessor into master

django-haystack includes two (built-in) methods to update search indices:

  • the real-time signal processor class: Indices are updated in real-time. This method is suitable for deployments with low and moderate traffic.
  • the management command update_index: Indices are updated when the management command "update_index" is called, i.e. by a cron job.

This change removes the depency on lockfile.

Merge request reports