Updating indexes on placeholderfields in real time with django/haystack/solr
问题 Hello I am integrating searches on my django-cms project. I have made a wiki app, where the content of each page is stored in a PlaceholderField . I can initially index the content of the PlaceholderField with the sudo ./manage.py rebuild_index or update_index , and the search works perfectly. The issue is when I modify the PlaceholderField , the search indexes are not updating, even though I have in my settings.py: HAYSTACK_SIGNAL_PROCESSOR = 'haystack.signals.RealtimeSignalProcessor' Here