Re: [GENERAL] Async triggers

2007-03-23 Thread Martijn van Oosterhout
On Fri, Mar 23, 2007 at 07:30:17PM +0200, Peter wrote: > Is this possible in PG somehow? Basically I need to call web service > whenever new row is inserted in a table - the lookup takes time up to > 10-15 seconds. Obviously I cant do this inside trigger proc as that > would delay inserts a lot.

[GENERAL] Async triggers

2007-03-23 Thread Peter
Is this possible in PG somehow? Basically I need to call web service whenever new row is inserted in a table - the lookup takes time up to 10-15 seconds. Obviously I cant do this inside trigger proc as that would delay inserts a lot. I suppose I could do a cron job to do webservice lookups peri