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
To remove from index:
product = Product.find 10
Product.searchkick_index.remove(product)