Closed wenzhengjiang closed 6 years ago
apc extension is not supported in PHP7. Instead, we should use apcu This diff does below things:
apc
apcu
apc_*
apcu_*
APCIterator
APCUIterator
This won't work with PHP 5.6. I guess you have to include https://packagist.org/packages/symfony/polyfill-apcu or similar.
Closed via #62.
apc
extension is not supported in PHP7. Instead, we should useapcu
This diff does below things:apc_*
withapcu_*
APCIterator
withAPCUIterator
in PHP7 environment.