Reset (wipe) search index

If you want to wipe out current search index, because you maybe made custom search module to quickly wipe out search tables run this into devel/php and you are starting from scratch

  $schema = drupal_get_schema_unprocessed('search');
  foreach ($schema as $table_name => $table) {
    // Truncate search related tables.
    db_truncate($table_name)->execute();
  }