function apachesolr_search_update_index in Apache Solr Search 5.2
Same name and namespace in other branches
- 6 apachesolr_search.module \apachesolr_search_update_index()
Implementation of hook_update_index().
File
- ./
apachesolr_search.module, line 67 - Provides a content search implementation for node content for use with the Apache Solr search application.
Code
function apachesolr_search_update_index() {
$cron_limit = variable_get('apachesolr_cron_limit', 50);
$rows = apachesolr_get_nodes_to_index('apachesolr_search', $cron_limit);
apachesolr_index_nodes($rows, 'apachesolr_search');
}