You are here

public static function fastcache::fastcache_persist in Drupal driver for SQL Server and SQL Azure 7.3

Same name and namespace in other branches
  1. 7.2 sqlsrv/fastcache.inc \fastcache::fastcache_persist()

Called on shutdown, persists the cache if necessary.

File

sqlsrv/fastcache.inc, line 170

Class

fastcache
Static caching layer.

Code

public static function fastcache_persist() {

  // Try to be the last of the last...
  register_shutdown_function(array(
    'fastcache',
    '_fastcache_persist',
  ));
}