Re: Temporarily disable rule, is this possible?

From: Stephan Szabo <sszabo(at)bigpanda(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Temporarily disable rule, is this possible?
Date: 2004-11-07 18:47:49
Message-ID: p5ujd.24545$TF6.12565@fe45.usenetserver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

mailinglists(at)net-virtual(dot)com ("Net Virtual Mailing Lists") wrote:

>CREATE OR REPLACE RULE sometable_delete ON DELETE DO delete FROM cache
>WHERE tablename='sometable';
>CREATE OR REPLACE RULE sometable_insert ON INSERT DO delete FROM cache
>WHERE tablename='sometable';
>CREATE OR REPLACE RULE sometable_update ON UPDATE DO delete FROM cache
>WHERE tablename='sometable';
>
>And what I have is set of objects which for certain queries will populate
>a serialized variable into the cache table, like this:
>
>INSERT INTO cache (tablename, cache_key, datavalue) VALUES ('sometable',
>'some_md5_hash', 'serialized_data');
>
>
>Using this method it is possible for me to just do a:
>
>SELECT datavalue FROM cache WHERE tablename='sometable' AND
>cache_key='some_md5_hash';
>
>.. and if I get an empty value for datavalue then execute the query
>normally, process it, then store the serialized data back into the cache...
>
>This all works very well for this situation, it has sped up my
>application about 20 times for 95% of the requests....
>
>The problem I have is there are frequently times I need to update
>sometable and not have the rule execute, specifically when I am updating
>something in the table which does not affect aggregate results.
>
>Is there a way to cause the rules to be temporarily disabled for these
>types of queries?

Not that I know of (apart from doing a remove/add). However, possibly
if you were to add a view which had update rules to do the update on the
real table as well as the cache changes you could then update the real table
manually and not affect the cache (although you could then not guarantee
that someone wouldn't do something that would affect the cache directly).

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Greg Sabino Mullane 2004-11-07 18:54:39 FTP mirror problems
Previous Message Gary L. Burnore 2004-11-07 17:19:14 Re: RFD: comp.databases.postgresql.general