You are here

function apachesolr_nodeapi_delete in Apache Solr Search 6.2

Helper function for hook_nodeapi().

2 calls to apachesolr_nodeapi_delete()
apachesolr_cron in ./apachesolr.module
Implementation of hook_cron().
apachesolr_nodeapi in ./apachesolr.module
Implementation of hook_nodeapi().

File

./apachesolr.module, line 687
Integration with the Apache Solr search application.

Code

function apachesolr_nodeapi_delete($node, $set_message = TRUE) {
  if (apachesolr_delete_node_from_index($node)) {

    // There was no exception, so delete from the table.
    db_query("DELETE FROM {apachesolr_search_node} WHERE nid = %d", $node->nid);
    if ($set_message && user_access('administer search') && variable_get('apachesolr_set_nodeapi_messages', 1)) {
      apachesolr_set_stats_message('Deleted content will be removed from the Apache Solr search index in approximately @autocommit_time.');
    }
  }
}