You are here

function apachesolr_update_6005 in Apache Solr Search 6.2

Same name and namespace in other branches
  1. 6 apachesolr.install \apachesolr_update_6005()

Add a separate cache table for more efficient cache clearing in memcached situations.

File

./apachesolr.install, line 259
Install, update and uninstall functions for the apachesolr module.

Code

function apachesolr_update_6005() {
  $ret = array();
  $table = drupal_get_schema_unprocessed('system', 'cache');
  $table['description'] = 'Cache table for apachesolr to store Luke data and indexing information.';
  db_create_table($ret, 'cache_apachesolr', $table);
  return $ret;
}