You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ES and django seem to work fine except for deleting items. When delete an item, I can no longer access it via it's pk (eg localhost:9200/django/model-X/123). It returns "false".
However, it still appears at localhost:9200/django/model-X/_search. The hits total do not change when I delete an item.
Is there a particular way to remove items form the _search that is different from accessing them at their individual URL?
The text was updated successfully, but these errors were encountered:
Hello,
in Elasticsearch, when you issue an Index, Update or Delete command, you have to wait until the next refresh for the changes to be available, do you still have the issue after manually refreshing the index ? MyModel.es.do_update()
Hi,
ES and django seem to work fine except for deleting items. When delete an item, I can no longer access it via it's pk (eg
localhost:9200/django/model-X/123
). It returns "false".However, it still appears at
localhost:9200/django/model-X/_search
. Thehits total
do not change when I delete an item.Is there a particular way to remove items form the
_search
that is different from accessing them at their individual URL?The text was updated successfully, but these errors were encountered: