I am using Django Haystack with elasticsearch as my search backend.
When I add a new app to my project, it seems I have to run the following command to rebuild the index:
./manage.py rebuild_index
The problem is, I have some very large apps that are already indexed.
How can I only index the new app, given the fact that the app starts initially with thousands of records and not collected one by one.
Thanks.