From 2b791958a7a4f21aaa850e9de5484244391d1590 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Wed, 21 Mar 2018 07:48:01 +0400 Subject: Redesigned cache name Signed-off-by: Valentin Popov --- lib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib.php b/lib.php index ce2bb8c..6289fd6 100644 --- a/lib.php +++ b/lib.php @@ -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; } -- cgit v1.2.3