You are here

public static function PHPExcel_Settings::setCacheStorageMethod in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Settings.php \PHPExcel_Settings::setCacheStorageMethod()

Set the method that should be used for cell cacheing

Parameters

string $method Name of the cacheing method:

array $arguments Optional configuration arguments for the cacheing method:

Return value

boolean Success or failure

3 calls to PHPExcel_Settings::setCacheStorageMethod()
06largescale-with-cellcaching-sqlite.php in vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching-sqlite.php
06largescale-with-cellcaching-sqlite3.php in vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching-sqlite3.php
06largescale-with-cellcaching.php in vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching.php

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Settings.php, line 176

Class

PHPExcel_Settings

Code

public static function setCacheStorageMethod($method = PHPExcel_CachedObjectStorageFactory::cache_in_memory, $arguments = array()) {
  return PHPExcel_CachedObjectStorageFactory::initialize($method, $arguments);
}