https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11998
Jacek Ablewicz <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #49029|0 |1 is obsolete| | --- Comment #160 from Jacek Ablewicz <[email protected]> --- Created attachment 49107 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=49107&action=edit Bug 11998: Add a L1 cache for sysprefs Accessing to the cache for each call to C4::Context->preference might have an impact on performances. To avoid that this patch introduces a L1 cache (simple hashref). It will be populated by accessing the L2 cache (Koha::Cache). If a pref is retrieved 10x, the first one will get the value from the L2 cache, then the L1 cache will be check. To do so we will need to clear the L1 cache every time a page is loaded. Signed-off-by: Tomas Cohen Arazi <[email protected]> Signed-off-by: Jacek Ablewicz <[email protected]> -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
