On Sat, 30 Sep 2000, Yann Ramin wrote:

> #0  0x80a2605 in ap_table_get ()
> #1  0x808961e in XS_Apache__Table_FETCH ()
 
> package Magrathea::WebAPI;
... 
> my $driver;    

you cannot cache data that is tied to $r (e.g., notes table), because
the $r->pool is cleared after each request.  string values are ok, but not
objects such as Apache::Table objects which are tied to the r->pool.

Reply via email to