[Koha-bugs] [Bug 11998] Syspref caching issues

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Mar 10 11:11:49 CET 2016


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11998

--- Comment #137 from Jonathan Druart <jonathan.druart at bugs.koha-community.org> ---
Created attachment 48935
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=48935&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.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list