Re: Cache::FastMmap

2004-07-29 Thread Mike Ward
quite large, which might > mean you hit some BSD::Resource or 'ulimits' you set previously that you > thought were sane, but aren't anymore. > > - > > Rob > > > > - Original Message - > From: "Mike Ward" <[EMAIL PROTECTED]>

Re: Cache::FastMmap

2004-07-29 Thread Rob Mueller
- Original Message - From: "Mike Ward" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 29, 2004 7:52 AM Subject: Re: Cache::FastMmap This one is more or less just out of curosity - I noticed when trying to install on one of our webservers that Fas

Re: Cache::FastMmap

2004-07-29 Thread Mike Ward
This one is more or less just out of curosity - I noticed when trying to install on one of our webservers that FastMmap requires perl 5.8.0 or later. Is it impossible to use with earlier versions? -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/m

Re: Cache::FastMmap

2004-07-29 Thread Mike Ward
ROTECTED]> > To: "Mike Ward" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Wednesday, July 28, 2004 2:08 PM > Subject: Re: Cache::FastMmap > > > >I think when you don't use raw_values => 1 as parameter you have > > to pass your data

Re: Cache::FastMmap

2004-07-28 Thread Rob Mueller
I'll update the documentation on the next release. Rob - Original Message - From: "Thomas Schindl" <[EMAIL PROTECTED]> To: "Mike Ward" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, July 28, 2004 2:08 PM Subject: Re: Cache::FastM

Re: Cache::FastMmap

2004-07-28 Thread Thomas Schindl
I think when you don't use raw_values => 1 as parameter you have to pass your data as references because Storable expects references. Maybe you could point the module author to mention that in the modules man-page. When searching how to use things often the test-suite gives you a good pointers wh

Re: Cache::FastMmap

2004-07-28 Thread Mike Ward
Nevermind, I've got it. In case anyone else has the problem, set the following option: my $cache = Cache::FastMmap->new( raw_values => 1, ); On Wed, 28 Jul 2004 13:19:05 -0400, Mike Ward <[EMAIL PROTECTED]> wrote: > I'm having some trouble with Cache::FastMmap and haven't found > a