diff options
author | Valentin Popov <info@valentineus.link> | 2018-03-21 06:48:01 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-03-21 06:48:01 +0300 |
commit | 2b791958a7a4f21aaa850e9de5484244391d1590 (patch) | |
tree | 6ecceebcac43474b411b47800072567f31e92a3d | |
parent | 4833a44b519d1f85ef890a0d0e1be2beb92bf63b (diff) | |
download | local_webhooks-2b791958a7a4f21aaa850e9de5484244391d1590.tar.xz local_webhooks-2b791958a7a4f21aaa850e9de5484244391d1590.zip |
Redesigned cache name
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | lib.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -72,8 +72,8 @@ function local_webhooks_search_record($eventname, $limitfrom = 0, $limitnum = 0) } /* Checks for the presence of a cache */ - $namecache = "${eventname}_${limitfrom}_${limitnum}"; - if (is_array($records = local_webhooks_cache_get($namecache))) { + $cachename = crc32($limitnum . $limitfrom . $eventname); + if (is_array($records = local_webhooks_cache_get($cachename))) { return $records; } @@ -91,7 +91,7 @@ function local_webhooks_search_record($eventname, $limitfrom = 0, $limitnum = 0) $rs->close(); /* Saves the result in the cache */ - local_webhooks_cache_set($namecache, $result); + local_webhooks_cache_set($cachename, $result); return $result; } |