Reputation: 1147
How I can manually remove specific record Index using Searchkick. There is option to reindex the specific record but i didnt find any option to delete a record index.
product = Product.find 10
product.reindex
Upvotes: 14
Views: 10813
Reputation: 574
What if you only have the id of the deleted model? eg. in the case where you are getting the call in a background worker?
Looking at the source code, searchkick only checks the class of the object to work out the index and grabs the id from the object, so you could do something like this to get around it:
# given value id holding the record id of the deleted model record (eg. Product with id 123)
prod = Product.new(id: id)
Product.searchkick_index.remove(prod)
Hacky but works :P
Upvotes: 5
Reputation: 1561
Given product = Product.find(10)
.
If product.should_index?
returns false
, product.reindex
will remove that record from the index.
If you need to manually remove a record though, Product.searchkick_index.remove(product)
is the way to go.
Upvotes: 5
Reputation: 1099
If anyone's looking for how to delete & blow away the entire index to start off fresh you can do it as so:
MyModel.searchkick_index.delete && MyModel.searchkick_index.create
Upvotes: 26
Reputation: 4802
To remove from index:
product = Product.find 10
Product.searchkick_index.remove(product)
Upvotes: 24