17 Mar
2016
17 Mar
'16
3:32 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16044 --- Comment #19 from Jacek Ablewicz <abl@biblos.pk.edu.pl> --- BTW, that part of the 1st followup: my $get_sub = $self->{ref($self->{$cache}) . "_get"}; - return $get_sub ? $get_sub->($key) : $self->{$cache}->get($key); + my $value = $get_sub ? $get_sub->($key) : $self->{$cache}->get($key); + + $L1_cache{$key} = $value; + + return $value; is essential if you want to test this bug with L2 = memcache; without it, L1 cache is not getting populated in such setups. Which explains case 1) from comment #17 ;) -- You are receiving this mail because: You are watching all bug changes.