Re: [RDBO] Anyone done more advanced caching with rdbo?

2008-02-07 Thread Kevin McGrath
I don't really know if the list is the right place to do this, but attached is a hack of what I had for my Cached FastMmap module converted over to CHI. I've tested the basic functionality, but don't know if this is really the correct way to implement it. I like the idea of CHI and would like to

Re: [RDBO] Anyone done more advanced caching with rdbo?

2008-02-07 Thread Sam Tregar
On Feb 7, 2008 9:40 AM, Kevin McGrath <[EMAIL PROTECTED]> wrote: > I've actually been working on a Cached::FastMmap module for my own project > a > My::DB::Object::Cached::FastMmap type module. I wanted to test using > FastMmap because I want my application to use the same cache across > differen

Re: [RDBO] Anyone done more advanced caching with rdbo?

2008-02-07 Thread Kevin McGrath
I've actually been working on a Cached::FastMmap module for my own project a My::DB::Object::Cached::FastMmap type module. I wanted to test using FastMmap because I want my application to use the same cache across different processes. So far it's been a success and I've now been working on trying

Re: [RDBO] Having trouble making tables_are_singular work

2008-02-07 Thread John Siracusa
On 2/6/08 5:12 PM, Ben Tilly wrote: > Here is some non-working code: > > my $class = "ReportHistory::Installation"; > no strict 'refs'; > @{"$class\::ISA"} = 'ReportHistory::Object'; > > $class->meta->convention_manager->tables_are_singular(1); > $class->meta->auto_initialize(); > prin