X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Ffound.mc;h=ecb4d70f9ec1cd3f0ad2041d47d3b65e493e338c;hp=4bdf8d697eab7d6d44849d90e7d3b5b00125278b;hb=83e8406f04599be5d205da37e8b8982c97256eeb;hpb=80cb6980494a0df8fb85d85b130794e0c4c20bb6 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();