diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-12-09 14:39:12 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2015-12-09 14:39:12 +0100 |
commit | 0a80bf55739ef9d30cfef376377f5c54dd5a9a9c (patch) | |
tree | b398337d6aaf04ad08d71f356c62c660acbbf2fe /lib/public | |
parent | 5c95939bf388111a21ca94461e37b1b0b0b38159 (diff) | |
download | nextcloud-server-0a80bf55739ef9d30cfef376377f5c54dd5a9a9c.tar.gz nextcloud-server-0a80bf55739ef9d30cfef376377f5c54dd5a9a9c.zip |
Add interface for memcache backends that support setting ttl on exisiting keys
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/imemcachettl.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/public/imemcachettl.php b/lib/public/imemcachettl.php new file mode 100644 index 00000000000..aae26accb48 --- /dev/null +++ b/lib/public/imemcachettl.php @@ -0,0 +1,37 @@ +<?php +/** + * @author Robin Appelman <icewind@owncloud.com> + * + * @copyright Copyright (c) 2015, ownCloud, Inc. + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ + +namespace OCP; + +/** + * Interface for memcache backends that support setting ttl after the value is set + * + * @since 9.0.0 + */ +interface IMemcacheTTL extends IMemcache { + /** + * Set the ttl for an existing value + * + * @param string $key + * @param int $ttl time to live in seconds + */ + public function setTTL($key, $ttl); +} |