From: Mike Taylor Date: Tue, 17 Oct 2006 14:49:58 +0000 (+0000) Subject: Re-use ZOOM connection to IRSpy database. X-Git-Tag: CPAN-v1.02~54^2~906 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=83e8406f04599be5d205da37e8b8982c97256eeb;hp=80cb6980494a0df8fb85d85b130794e0c4c20bb6 Re-use ZOOM connection to IRSpy database. --- diff --git a/web/htdocs/details/found.mc b/web/htdocs/details/found.mc index 4bdf8d6..ecb4d70 100644 --- a/web/htdocs/details/found.mc +++ b/web/htdocs/details/found.mc @@ -1,4 +1,4 @@ -%# $Id: found.mc,v 1.11 2006-09-25 16:52:30 mike Exp $ +%# $Id: found.mc,v 1.12 2006-10-17 14:49:58 mike Exp $ <%once> use XML::LibXML; use XML::LibXML::XPathContext; @@ -23,6 +23,8 @@ sub navlink { return $url; } +# Just make this once; forge the connection on first use +our $conn = undef; <%perl> my %params = map { ( $_, $r->param($_)) } grep { $r->param($_) } $r->param(); @@ -48,10 +50,9 @@ if ($sort) { $query .= " 0"; } -### We can think about keeping the Connection object open to re-use -# for multiple requests, but that may not get us much. Same applies -# for the XML parser. -my $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1"); +if (!defined $conn) { + $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1"); +} $conn->option(elementSetName => "zeerex"); my $parser = new XML::LibXML();