Re: query cache - Mailing list pgsql-hackers

From Greg Stark
Subject Re: query cache
Date
Msg-id CAM-w4HMUOspiO-GEnPrTx7GPsBdMccRfiurSvecsdePX=WUPKg@mail.gmail.com
Whole thread Raw
In response to Re: query cache  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: query cache  (Billy Earney <billy.earney@gmail.com>)
Re: query cache  (Robert Haas <robertmhaas@gmail.com>)
List pgsql-hackers
On Fri, Mar 23, 2012 at 3:49 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> The complication, opportunities for bugs, and general slowdown
> associated with that would outweigh any possible gain, in the opinion
> of most hackers who have thought about this.

I wouldn't be quite so pessimistic. I think the problem is that the
hard part in doing this for real is all the parts the proposal glosses
over. How much memory is it worth dedicating to the cache before the
cost of that memory costs more than it helps? How do you invalidate
cache entries efficiently enough that it doesn't become a bottleneck?

Also, you need to identify the specific advantages you hope a built-in
cache would have over one implemented in the ORM or database library.
If there aren't any advantages then those solutions are much simpler.
And they have other advantages as well -- one of the main reason
people implement caches is so they can move the load away from the
bottleneck of the database to the more easily scaled out application.


-- 
greg


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: [COMMITTERS] pgsql: Add notion of a "transform function" that can simplify function
Next
From: Billy Earney
Date:
Subject: Re: query cache