| 5 node.module | node_update_index() |
| 6 node.module | node_update_index() |
| 7 node.module | node_update_index() |
| 8 node.module | node_update_index() |
Implements hook_update_index().
4 calls to node_update_index()
4 string references to 'node_update_index'
File
- core/
modules/ node/ node.module, line 2554 - The core module that allows content to be submitted to the site.
Code
function node_update_index() {
$limit = (int) variable_get('search_cron_limit', 100);
$result = db_query_range("SELECT n.nid FROM {node} n LEFT JOIN {search_dataset} d ON d.type = 'node' AND d.sid = n.nid WHERE d.sid IS NULL OR d.reindex <> 0 ORDER BY d.reindex ASC, n.nid ASC", 0, $limit, array(), array('target' => 'slave'));
$nids = $result->fetchCol();
if (!$nids) {
return;
}
foreach (node_load_multiple($nids) as $node) {
_node_index_node($node);
}
}
Login or register to post comments