function apachesolr_update_6005 in Apache Solr Search 6
Same name and namespace in other branches
- 6.2 apachesolr.install \apachesolr_update_6005()
Add a separate cache table for more efficient cache clearing in memcached situations.
File
- ./
apachesolr.install, line 261 - Install and related hooks for apachesolr_search.
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;
}