diff options
author | v12mike <v12mike@ingenious.co.nz> | 2017-06-26 12:43:23 +0100 |
---|---|---|
committer | v12mike <v12mike@ingenious.co.nz> | 2017-06-26 12:43:23 +0100 |
commit | 7f408e4b4184e4c850156090e648fc120985c975 (patch) | |
tree | 6c58aa07c66365eb1a18882543ad36a1be7564be /phpBB/phpbb/cache | |
parent | aef138d8bc2cc2c74bc9951d136c7bc1e0cf3ad7 (diff) | |
download | forums-7f408e4b4184e4c850156090e648fc120985c975.tar forums-7f408e4b4184e4c850156090e648fc120985c975.tar.gz forums-7f408e4b4184e4c850156090e648fc120985c975.tar.bz2 forums-7f408e4b4184e4c850156090e648fc120985c975.tar.xz forums-7f408e4b4184e4c850156090e648fc120985c975.zip |
[PHPBB3-15247] Add support for php v7 APCu cache API
Add new cache driver apcu.php (based closely on existing APC cache driver)
Add new unit test apcu_driver_test.php for the new driver
Update RUNNING_TESTS.md to clarify requirements for apc, apcu and apc_bc extensions
and add a couple of general hints to RUNNING_TESTS.md
PHPBB3-15247
Diffstat (limited to 'phpBB/phpbb/cache')
-rw-r--r-- | phpBB/phpbb/cache/driver/apcu.php | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/phpBB/phpbb/cache/driver/apcu.php b/phpBB/phpbb/cache/driver/apcu.php new file mode 100644 index 0000000000..40192e4026 --- /dev/null +++ b/phpBB/phpbb/cache/driver/apcu.php @@ -0,0 +1,70 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\cache\driver; + +/** +* ACM for APCU +*/ +class apcu extends \phpbb\cache\driver\memory +{ + var $extension = 'apcu'; + + /** + * {@inheritDoc} + */ + function purge() + { + apcu_clear_cache(); + + parent::purge(); + } + + /** + * Fetch an item from the cache + * + * @access protected + * @param string $var Cache key + * @return mixed Cached data + */ + function _read($var) + { + return apcu_fetch($this->key_prefix . $var); + } + + /** + * Store data in the cache + * + * @access protected + * @param string $var Cache key + * @param mixed $data Data to store + * @param int $ttl Time-to-live of cached data + * @return bool True if the operation succeeded + */ + function _write($var, $data, $ttl = 2592000) + { + return apcu_store($this->key_prefix . $var, $data, $ttl); + } + + /** + * Remove an item from the cache + * + * @access protected + * @param string $var Cache key + * @return bool True if the operation succeeded + */ + function _delete($var) + { + return apcu_delete($this->key_prefix . $var); + } +} |