this repo has no description
1NAME 2 CHI::Driver::MongoDB - Use MongoDB for cache storage 3 4VERSION 5 version 0.01 6 7SYNOPSIS 8 use CHI; 9 10 # Supply a MongoDB database handle 11 # 12 my $cache = CHI->new( driver => 'MongoDB', 13 db => MongoDB::Connection->new->get_database('db_name') ); 14 15 # Or supply a MongoDB Connection handla and database name 16 # 17 my $cache = CHI->new( driver => 'MongoDB', 18 conn => MongoDB::Connection->new, 19 db_name => 'db_name' ); 20 21DESCRIPTION 22 This driver uses a MongoDB table to store the cache. 23 24AUTHORS 25 Nick Mohoric <nick.mohoric@gmail.com> 26 27COPYRIGHT AND LICENSE 28 This software is copyright (c) 2011 by Nick Mohoric. 29 30 This is free software; you can redistribute it and/or modify it under 31 the same terms as the Perl 5 programming language system itself. 32