You are here

function apachesolr_index_get_last_updated in Apache Solr Search 6.2

Get the timestamp of the last index update.

Return value

integer (timestamp)

3 calls to apachesolr_index_get_last_updated()
apachesolr_cron in ./apachesolr.module
Implementation of hook_cron().
apachesolr_index_page in ./apachesolr.admin.inc
Gets information about the fields already in solr index.
apachesolr_index_report in ./apachesolr.admin.inc

File

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

Code

function apachesolr_index_get_last_updated() {
  return variable_get('apachesolr_index_updated', 0);
}