TYPO3 CMS  TYPO3_6-2
QueryCache.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Dbal;
3 
21 class QueryCache {
22 
29  static public function getCacheKey($config) {
30  if (is_array($config)) {
31  return md5(serialize($config));
32  } else {
33  return $config;
34  }
35  }
36 
37 }
static getCacheKey($config)
Definition: QueryCache.php:29