You are here

function d8cache_node_update_index in Drupal 8 Cache Backport 7

Implements hook_node_update_index().

File

includes/node.inc, line 15
Node functions and hooks for the D8 caching system backport.

Code

function d8cache_node_update_index($node) {

  // Invalidate the node search index.
  drupal_invalidate_cache_tags(array(
    'search_index:node',
  ));
  return '';
}