aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2017-08-06 12:07:52 +0200
committerTristan Darricau <github@nicofuma.fr>2017-08-06 12:07:52 +0200
commitd9a5c8e9182e0dffdebf09f4db33bd76e9574765 (patch)
tree3be12448f6676f820e0a8532c18a83c889519500 /phpBB/phpbb
parent327333e3284db8b7e99912d45c2a605177b8dbb8 (diff)
parent7f408e4b4184e4c850156090e648fc120985c975 (diff)
downloadforums-d9a5c8e9182e0dffdebf09f4db33bd76e9574765.tar
forums-d9a5c8e9182e0dffdebf09f4db33bd76e9574765.tar.gz
forums-d9a5c8e9182e0dffdebf09f4db33bd76e9574765.tar.bz2
forums-d9a5c8e9182e0dffdebf09f4db33bd76e9574765.tar.xz
forums-d9a5c8e9182e0dffdebf09f4db33bd76e9574765.zip
Merge pull request #4861 from v12mike/PHPBB3-15247
[PHPBB3-15247] Add support for php v7 APCu cache API * github.com:phpbb/phpbb: [PHPBB3-15247] Add support for php v7 APCu cache API
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/cache/driver/apcu.php70
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);
+ }
+}