You are here

static function ApacheSolrUpdate::reset in Apache Solr Search 5

3 calls to ApacheSolrUpdate::reset()
apachesolr_multisitesearch_search in contrib/apachesolr_multisitesearch/apachesolr_multisitesearch.module
Implementation of hook_search().
apachesolr_nodeaccess_rebuild_nodeaccess in contrib/apachesolr_nodeaccess/apachesolr_nodeaccess.module
Forces Solr to do a total re-index. This is unfortunate because not every node is going to be affected, but there is little we can do.
apachesolr_search_search in ./apachesolr_search.module
Implementation of hook_search().

File

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

Class

ApacheSolrUpdate
The point of this class is to manage the update index needs of multiple search modules. Each one needs to track its own list of nodes that need updating.

Code

static function reset($namespace) {
  variable_del($namespace . '_last_change');
  variable_del($namespace . '_last_id');
}