I deleted a record from django app, then I followed it up with up with update_index and the record was still searchable. I then used rebuild_index and that seemed to work when I ran the search again. But I do not know if my computer stuttered or what but when I when to my django app all my records were gone. but I panicked hit the refresh button on the browser a couple of times and they reappeared. What I'd like to be clear on is this is, after I delete a record from my django app I run
./manage.py rebuild_index
and when I add a record to my django app I do this
./manage.py update_index.
Is this correct syntax? I do not want to inadvertently delete all my records from a lack of understanding the aforementioned commands thanks. The docs are not fully clear to me.
update_index
only indexing missing results? or it updates everything again? because after runningrebuild_index
for the first time, I ranupdate_index
and it showedIndexing # results
with the total number of records. – Eliott