From ac9f88315264bf3f7c9520c5838e0488e251f923 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 10 Feb 2025 13:09:31 +0000 Subject: [PATCH] Bug 39076: Use state variable to avoid creating extra ES connections As elsewhere in the code, we should use a state variable for our 'bib_searcher' object to avoid overhead of extra ES connections. Worth noting - we don't actually use the 'bib_searcher' at all during record auto linking as we pass skipmetadata To test: 0 - Apply patch 1 - Enable biblio auto linking AutoLinkBiblios, CatalogModuleRelink, LinkerRelink 2 - Stage and import a marc file 3 - Confirm record authorities link as expected 4 - Search authorities in the staff interface 5 - Confirm usage counts are shown for results Signed-off-by: Tomas Cohen Arazi Signed-off-by: David Cook --- Koha/SearchEngine/Elasticsearch/Search.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Koha/SearchEngine/Elasticsearch/Search.pm b/Koha/SearchEngine/Elasticsearch/Search.pm index 171c00c729..e584391b04 100644 --- a/Koha/SearchEngine/Elasticsearch/Search.pm +++ b/Koha/SearchEngine/Elasticsearch/Search.pm @@ -214,7 +214,8 @@ sub search_auth_compat { my $schema = $database->schema(); my $res = $self->search($query, undef, $count, %options); - my $bib_searcher = Koha::SearchEngine::Elasticsearch::Search->new({index => 'biblios'}); + # Use state variables to avoid recreating the objects every time. + state $bib_searcher = Koha::SearchEngine::Elasticsearch::Search->new({index => 'biblios'}); my @records; my $hits = $res->{'hits'}; foreach my $es_record (@{$hits->{'hits'}}) { -- 2.39.5