Re: "iscachable" functions - Mailing list pgsql-general

From Jeff Eckermann
Subject Re: "iscachable" functions
Date
Msg-id 20030214213827.17386.qmail@web20809.mail.yahoo.com
Whole thread Raw
In response to "iscachable" functions  (Eric B.Ridge <ebr@tcdi.com>)
Responses Re: "iscachable" functions
List pgsql-general
--- "Eric B.Ridge" <ebr@tcdi.com> wrote:
> For the "iscachable" parameter of CREATE FUNCTION,
> the 7.2.x
> documentation states:
>     "Iscachable indicates that the function always
> returns the same result
> when given the same argument values (i.e., it does
> not do database
> lookups or otherwise use information not directly
> present in its
> parameter list). The optimizer uses iscachable to
> know whether it is
> safe to pre-evaluate a call of the function."
>
> But where is this cache?  Is it per backend
> connection, or is it shared
> among all backends?  Also, is there a way to
> invalidate this cache or
> otherwise expire the values?
>
There isn't any cache: the choice of name is
misleading.  "iscachable" means nothing more than the
docs quote says.  The usefulness of it lies in being
able to index the return value of the function.

__________________________________________________
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine's Day
http://shopping.yahoo.com

pgsql-general by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: In 7.3.1, will I be able to reindex toast?
Next
From: Dennis Gearon
Date:
Subject: Re: operators and bit field