diff options
author | Robin Appelman <icewind@owncloud.com> | 2016-01-27 15:51:39 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2016-01-27 15:51:39 +0100 |
commit | 6682f3107493f738ab015a0ac9515e801c87c39f (patch) | |
tree | 5add892b7cfe4648f79dcd367c1e334d76b960e4 /lib/public | |
parent | 308396b770f3b1b41ba31ff0ee889d485b14d14a (diff) | |
download | nextcloud-server-6682f3107493f738ab015a0ac9515e801c87c39f.tar.gz nextcloud-server-6682f3107493f738ab015a0ac9515e801c87c39f.zip |
clean cache interface
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/files/cache/icache.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/public/files/cache/icache.php b/lib/public/files/cache/icache.php index 07396db4588..3fbf310148d 100644 --- a/lib/public/files/cache/icache.php +++ b/lib/public/files/cache/icache.php @@ -157,13 +157,6 @@ interface ICache { public function moveFromCache(ICache $sourceCache, $sourcePath, $targetPath); /** - * remove all entries for files that are stored on the storage from the cache - * - * @since 9.0.0 - */ - public function clear(); - - /** * Get the scan status of a file * * - ICache::NOT_FOUND: File is not in the cache @@ -210,14 +203,6 @@ interface ICache { public function searchByTag($tag, $userId); /** - * get all file ids on the files on the storage - * - * @return int[] - * @since 9.0.0 - */ - public function getAll(); - - /** * find a folder in the cache which has not been fully scanned * * If multiple incomplete folders are in the cache, the one with the highest id will be returned, |