]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Cache/ProfilerCache.php
Merge pull request #8996 from MrPetovan/bug/8995-profile-contacts-is-owner
[friendica.git] / src / Core / Cache / ProfilerCache.php
index d59b885609d6947766c8fceb216dd8d8cfd49df6..7c4802077ab07d99b1ae9db724854f34425fa109 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * 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
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Core\Cache;
 
@@ -37,7 +56,7 @@ class ProfilerCache implements ICache, IMemoryCache
 
                $return = $this->cache->getAllKeys($prefix);
 
-               $this->profiler->saveTimestamp($time, 'cache', System::callstack());
+               $this->profiler->saveTimestamp($time, 'cache');
 
                return $return;
        }
@@ -51,7 +70,7 @@ class ProfilerCache implements ICache, IMemoryCache
 
                $return = $this->cache->get($key);
 
-               $this->profiler->saveTimestamp($time, 'cache', System::callstack());
+               $this->profiler->saveTimestamp($time, 'cache');
 
                return $return;
        }
@@ -59,13 +78,13 @@ class ProfilerCache implements ICache, IMemoryCache
        /**
         * {@inheritDoc}
         */
-       public function set($key, $value, $ttl = Cache::FIVE_MINUTES)
+       public function set($key, $value, $ttl = Duration::FIVE_MINUTES)
        {
                $time = microtime(true);
 
                $return = $this->cache->set($key, $value, $ttl);
 
-               $this->profiler->saveTimestamp($time, 'cache', System::callstack());
+               $this->profiler->saveTimestamp($time, 'cache');
 
                return $return;
        }
@@ -79,7 +98,7 @@ class ProfilerCache implements ICache, IMemoryCache
 
                $return = $this->cache->delete($key);
 
-               $this->profiler->saveTimestamp($time, 'cache', System::callstack());
+               $this->profiler->saveTimestamp($time, 'cache');
 
                return $return;
        }
@@ -93,7 +112,7 @@ class ProfilerCache implements ICache, IMemoryCache
 
                $return = $this->cache->clear($outdated);
 
-               $this->profiler->saveTimestamp($time, 'cache', System::callstack());
+               $this->profiler->saveTimestamp($time, 'cache');
 
                return $return;
        }
@@ -101,14 +120,14 @@ class ProfilerCache implements ICache, IMemoryCache
        /**
         * {@inheritDoc}
         */
-       public function add($key, $value, $ttl = Cache::FIVE_MINUTES)
+       public function add($key, $value, $ttl = Duration::FIVE_MINUTES)
        {
                if ($this->cache instanceof IMemoryCache) {
                        $time = microtime(true);
 
                        $return = $this->cache->add($key, $value, $ttl);
 
-                       $this->profiler->saveTimestamp($time, 'cache', System::callstack());
+                       $this->profiler->saveTimestamp($time, 'cache');
 
                        return $return;
                } else {
@@ -119,14 +138,14 @@ class ProfilerCache implements ICache, IMemoryCache
        /**
         * {@inheritDoc}
         */
-       public function compareSet($key, $oldValue, $newValue, $ttl = Cache::FIVE_MINUTES)
+       public function compareSet($key, $oldValue, $newValue, $ttl = Duration::FIVE_MINUTES)
        {
                if ($this->cache instanceof IMemoryCache) {
                        $time = microtime(true);
 
                        $return = $this->cache->compareSet($key, $oldValue, $newValue, $ttl);
 
-                       $this->profiler->saveTimestamp($time, 'cache', System::callstack());
+                       $this->profiler->saveTimestamp($time, 'cache');
 
                        return $return;
                } else {
@@ -144,7 +163,7 @@ class ProfilerCache implements ICache, IMemoryCache
 
                        $return = $this->cache->compareDelete($key, $value);
 
-                       $this->profiler->saveTimestamp($time, 'cache', System::callstack());
+                       $this->profiler->saveTimestamp($time, 'cache');
 
                        return $return;
                } else {