GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Catalyst::Plugin::Cache::FastMmap(3) User Contributed Perl Documentation Catalyst::Plugin::Cache::FastMmap(3)

Catalyst::Plugin::Cache::FastMmap - DEPRECATED FastMmap cache

    use Catalyst qw[Cache::FastMmap];

    MyApp->config(
        cache => {
            storage => '/tmp/cache',
            xpires => 3600,
        },
    );

    my $data;

    unless ( $data = $c->cache->get('data') ) {
        $data = MyApp::Model::Data->retrieve('data');
        $c->cache->set( 'data', $data );
    }

    $c->response->body($data);

This package is part of the Catalyst Cache family. It allows integration of Cache::FastMmap and Catalyst

This module extends the Catalyst application class with a "mmap" cache.

This module is not recommended for production use, as Cache::FastMmap can segfault and/or unexpectedly throw away your data.

setup
Sets up the cache
cache
Returns an instance of "Cache::FastMmap"

Cache::FastMmap, Catalyst.

Christian Hansen, "ch@ngmedia.com"

Sebastian Riedel, "sri@oook.de"

This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.

Copyright (c) 2005-2011, the above mentioned AUTHORs.
2011-03-22 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.