diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-03-14 11:05:46 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-03-14 11:05:46 +0100 |
commit | c3c491689b2243b88fe88f4ffb1f8274575d2029 (patch) | |
tree | 05116294c26753fca188a1c43e4ac44a4e5c042c /lib/private/route | |
parent | e0998c27ff205566db7799dce177192d2b776bc1 (diff) | |
download | nextcloud-server-c3c491689b2243b88fe88f4ffb1f8274575d2029.tar.gz nextcloud-server-c3c491689b2243b88fe88f4ffb1f8274575d2029.zip |
Shorter cache key for URL entries
Diffstat (limited to 'lib/private/route')
-rw-r--r-- | lib/private/route/cachingrouter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/route/cachingrouter.php b/lib/private/route/cachingrouter.php index 4c702bb8e04..d6270dcf2c7 100644 --- a/lib/private/route/cachingrouter.php +++ b/lib/private/route/cachingrouter.php @@ -49,7 +49,7 @@ class CachingRouter extends Router { */ public function generate($name, $parameters = array(), $absolute = false) { asort($parameters); - $key = $this->context->getHost() . '#' . $this->context->getBaseUrl() . $name . json_encode($parameters) . intval($absolute); + $key = $this->context->getHost() . '#' . $this->context->getBaseUrl() . $name . sha1(json_encode($parameters)) . intval($absolute); if ($this->cache->hasKey($key)) { return $this->cache->get($key); } else { |