You are here

private static property PHPExcel_CachedObjectStorageFactory::$_storageMethodDefaultParameters in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorageFactory.php \PHPExcel_CachedObjectStorageFactory::_storageMethodDefaultParameters

Default arguments for each cache storage method

Type: array of mixed array

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorageFactory.php, line 92

Class

PHPExcel_CachedObjectStorageFactory
PHPExcel_CachedObjectStorageFactory

Code

private static $_storageMethodDefaultParameters = array(
  self::cache_in_memory => array(),
  self::cache_in_memory_gzip => array(),
  self::cache_in_memory_serialized => array(),
  self::cache_igbinary => array(),
  self::cache_to_phpTemp => array(
    'memoryCacheSize' => '1MB',
  ),
  self::cache_to_discISAM => array(
    'dir' => NULL,
  ),
  self::cache_to_apc => array(
    'cacheTime' => 600,
  ),
  self::cache_to_memcache => array(
    'memcacheServer' => 'localhost',
    'memcachePort' => 11211,
    'cacheTime' => 600,
  ),
  self::cache_to_wincache => array(
    'cacheTime' => 600,
  ),
  self::cache_to_sqlite => array(),
  self::cache_to_sqlite3 => array(),
);