Bugzilla – Attachment 40428 Details for
Bug 14207
Improving circulation performance by caching yaml file
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 14207 - Improving circulation performance
SIGNED-OFF-Bug-14207---Improving-circulation-perfo.patch (text/plain), 1.75 KB, created by
Bernardo Gonzalez Kriegel
on 2015-06-19 23:49:55 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 14207 - Improving circulation performance
Filename:
MIME Type:
Creator:
Bernardo Gonzalez Kriegel
Created:
2015-06-19 23:49:55 UTC
Size:
1.75 KB
patch
obsolete
>From cca71082eff8573381f39e233e00c7106217fbab Mon Sep 17 00:00:00 2001 >From: Julian FIOL <julian.fiol@biblibre.com> >Date: Tue, 26 May 2015 14:49:20 +0200 >Subject: [PATCH] [SIGNED-OFF] Bug 14207 - Improving circulation performance > >by caching yaml file This patch improve circulation performance by caching yaml file With this patch we saved between 300ms and 500ms on circulation page. > >Following Comment #3 : >No useless warn >No tidy > >Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> >Less lines, same result. >Comments were useful on testing :) >No errors >--- > C4/Utils/DataTables/ColumnsSettings.pm | 17 +++++++++++------ > 1 file changed, 11 insertions(+), 6 deletions(-) > >diff --git a/C4/Utils/DataTables/ColumnsSettings.pm b/C4/Utils/DataTables/ColumnsSettings.pm >index ed8d9ac..6f1c0cd 100644 >--- a/C4/Utils/DataTables/ColumnsSettings.pm >+++ b/C4/Utils/DataTables/ColumnsSettings.pm >@@ -5,14 +5,19 @@ use List::Util qw( first ); > use YAML; > use C4::Context; > use Koha::Database; >+use Koha::Cache; > > sub get_yaml { >- my $yml_path = >- C4::Context->config('intranetdir') . '/admin/columns_settings.yml'; >- my $yaml = eval { YAML::LoadFile($yml_path) }; >- warn >-"ERROR: the yaml file for DT::ColumnsSettings is not correctly formated: $@" >- if $@; >+ my $yml_path = C4::Context->config('intranetdir') . '/admin/columns_settings.yml'; >+ my $cache = Koha::Cache->get_instance(); >+ my $yaml = $cache->get_from_cache('ColumnsSettingsYaml'); >+ >+ unless ($yaml) { >+ $yaml = eval { YAML::LoadFile($yml_path) }; >+ warn "ERROR: the yaml file for DT::ColumnsSettings is not correctly formated: $@" >+ if $@; >+ $cache->set_in_cache( 'ColumnsSettingsYaml', $yaml, { expiry => 3600 } ); >+ } > return $yaml; > } > >-- >1.7.9.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 14207
:
39210
|
39211
|
39233
|
39514
|
40428
|
40457