Re: Caching/Indexing Function Output - Mailing list pgsql-general

From Michael Fuhr
Subject Re: Caching/Indexing Function Output
Date
Msg-id 20041224042044.GA89583@winnie.fuhr.org
Whole thread Raw
In response to Caching/Indexing Function Output  ("Mike" <mike@mrhost.ca>)
List pgsql-general
On Thu, Dec 23, 2004 at 01:22:42PM -0800, Mike wrote:

> My question is- is there anyway, since a call to sp_host('10.0.0.1') will
> always
> return the same value (the primary key/sequence value from the ip_addresses
> table), to cache/index that value somehow, so anytime I ever call that same
> function, with the same argument, it returns a cached/indexed value?

Some procedural languages (PL/Tcl, PL/Python; also PL/Perl in 8.0)
have global data that you could use as a cache.  The function would
still be called each time, but you could at least use the cache to
save the cost of a database query.

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

pgsql-general by date:

Previous
From: "Joshua D. Drake"
Date:
Subject: Re: duplicate msgs when delivery through commandprompt.com
Next
From: "Mike"
Date:
Subject: Re: Caching/Indexing Function Output