The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Sledge::Cache::FastMmap - fastmmap plugin for sledge

SYNOPSIS

    package Your::Config;
    use vars qw(%C);
    *Config = \%C;
    $C{CACHE_FASTMMAP_OPTS} = {raw_values => 1};

    package Your::Pages;
    use Sledge::Plugin::Cache;
    use Sledge::Cache::FastMmap;
    sub create_cache { Sledge::Cache::FastMmap->new(shift) }

DESCRIPTION

Sledge::Cache::FastMmap is FastMmap subclass of Sledge::Cache.

AUTHOR

MATSUNO Tokuhiro <tokuhiro at mobilefactory.jp>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Sledge::Cache, Bundle::Sledge