static function ApacheSolrUpdate::success in Apache Solr Search 5
1 call to ApacheSolrUpdate::success()
- ApacheSolrUpdate::update_index in ./apachesolr.module
File
- ./apachesolr.module, line 298
- 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 success($namespace, $last_change, $last_id) {
self::$_namespaces[$namespace] = array(
'last_change' => $last_change,
'last_id' => $last_id,
);
}