NAME

DBIx::Class::Storage::CacheProxy - Caching layer for DBIx::Class

VERSION

Version 0.03

SYNOPSIS

Caching subsystem for DBIx::Class.

    package MyApp::Schema;
    use parent qw/DBIx::Class::Schema/;

    ...
    __PACKAGE__->storage_type('::CacheProxy');
    ...
    $schema->connect("dbi:...something...",{cache=>
        [
	  Memcached=>{
            servers=>[qw/127.0.0.1:11211/]
	  }
        ]
    })

or

    $schema->connect("dbi:...something...",{cache=>
        [
	  FastMmap=>{
	  }
        ]
    })

NOTE

This is unstable module.

METHODS

new

Creates new storage object.

connect_info

Params - cache => [ CLASSNAME, arguments to CLASSNAME->new]

insert

Hook for insert. Clears cache for table.

update

Hook for update. Clears cache for table+cache for modified items (if it can)

delete

Hook for delete. Work similar as update

select_single

Hook for selection of single row. Multiple rows support are in DBIx::Class::Storage::CacheProxy::Cursor

AUTHOR

Andrey Kostenko, <andrey at kostenko.name>

BUGS

Please report any bugs or feature requests to bug-dbix-class-storage-cacheproxy at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=DBIx-Class-Storage-CacheProxy. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc DBIx::Class::Storage::CacheProxy

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

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