From c9d3f26646e55aaf48040185f878f86eabf8c3a3 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 7 Sep 2016 11:43:32 +0100 Subject: [PATCH] Bug 17189: Use delete to flush a L1 cache namespace Signed-off-by: Jacek Ablewicz --- Koha/Cache.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Cache.pm b/Koha/Cache.pm index 598c35b..ea2ebcb 100644 --- a/Koha/Cache.pm +++ b/Koha/Cache.pm @@ -403,7 +403,7 @@ sub flush_all { sub flush_L1_cache { my( $self ) = @_; - $L1_cache{$self->{namespace}} = (); + delete $L1_cache{$self->{namespace}}; } =head1 TIED INTERFACE -- 1.7.10.4