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
# Enqueues removal of the record from Meilisearch when an enqueue handler is configured; otherwise performs removal immediately.
948
+
# If an enqueue handler is configured and indexing is not disabled, invokes the handler with the record and `true` (requesting removal). If no handler is configured, calls ms_remove_from_index! with the provided synchronous preference or the record's synchronous setting.
949
+
# @param [Boolean] synchronous - If `true`, prefer synchronous removal when performing the operation immediately.
# Enqueues or performs indexing or removal for the current record according to the model's Meilisearch configuration.
962
+
# If the record is indexable, this will enqueue an index job when an enqueue handler is configured, otherwise it indexes immediately.
963
+
# If the record is not indexable but conditional indexing is enabled, this will enqueue a removal job when an enqueue handler is configured, otherwise it removes the record from the index.
964
+
# When using an enqueue handler, the method checks the model's indexing-disabled condition and skips enqueuing if indexing is disabled.
965
+
# @param [Boolean] synchronous - When performed immediately (no enqueue handler) controls whether the index/remove operation runs synchronously.
0 commit comments