We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2e1a2cc + 6564a58 commit 0cba995Copy full SHA for 0cba995
phpfastcache/3.0.0/phpfastcache.php
@@ -112,10 +112,7 @@ public static function getAutoClass($config) {
112
$path = self::getPath(false,$config);
113
if(is_writeable($path)) {
114
$driver = "files";
115
- }else if(extension_loaded('pdo_sqlite') && is_writeable($path)) {
116
- $driver = "sqlite";
117
- }else if(extension_loaded('apc') && ini_get('apc.enabled') && strpos(PHP_SAPI,"CGI") === false)
118
- {
+ }else if(extension_loaded('apc') && ini_get('apc.enabled') && strpos(PHP_SAPI,"CGI") === false) {
119
$driver = "apc";
120
}else if(class_exists("memcached")) {
121
$driver = "memcached";
0 commit comments