Codebase list libchi-driver-redis-perl / e9219e9
Merge tag 'upstream/0.10' Upstream version 0.10 Christopher Hoskin 8 years ago
11 changed file(s) with 29 addition(s) and 19 deletion(s). Raw diff Collapse all Expand all
00 Revision history for CHI-Driver-Redis
1
2 0.10 January 22, 2016
3 * Doc fixes (#6)
14
25 0.09 February 24, 2015
36 * Change how parameters are stored and passed to the Redis constructor
99 ExtUtils::MakeMaker: 6.59
1010 distribution_type: module
1111 dynamic_config: 1
12 generated_by: 'Module::Install version 1.14'
12 generated_by: 'Module::Install version 1.16'
1313 license: perl
1414 meta-spec:
1515 url: http://module-build.sourceforge.net/META-spec-v1.4.html
2828 resources:
2929 license: http://dev.perl.org/licenses/
3030 repository: https://github.com/rentrak/chi-driver-redis
31 version: '0.09'
31 version: '0.10'
33 use strict 'vars';
44 use vars qw{$VERSION};
55 BEGIN {
6 $VERSION = '1.14';
6 $VERSION = '1.16';
77 }
88
99 # Suspend handler for "redefined" warnings
77
88 use vars qw{$VERSION @ISA $ISCORE};
99 BEGIN {
10 $VERSION = '1.14';
10 $VERSION = '1.16';
1111 @ISA = 'Module::Install::Base';
1212 $ISCORE = 1;
1313 }
55
66 use vars qw{$VERSION @ISA $ISCORE};
77 BEGIN {
8 $VERSION = '1.14';
8 $VERSION = '1.16';
99 @ISA = 'Module::Install::Base';
1010 $ISCORE = 1;
1111 }
77
88 use vars qw{$VERSION @ISA $ISCORE};
99 BEGIN {
10 $VERSION = '1.14';
10 $VERSION = '1.16';
1111 @ISA = 'Module::Install::Base';
1212 $ISCORE = 1;
1313 }
55
66 use vars qw{$VERSION @ISA $ISCORE};
77 BEGIN {
8 $VERSION = '1.14';
8 $VERSION = '1.16';
99 @ISA = 'Module::Install::Base';
1010 $ISCORE = 1;
1111 }
55
66 use vars qw{$VERSION @ISA $ISCORE};
77 BEGIN {
8 $VERSION = '1.14';
8 $VERSION = '1.16';
99 @ISA = 'Module::Install::Base';
1010 $ISCORE = 1;
1111 }
55
66 use vars qw{$VERSION @ISA $ISCORE};
77 BEGIN {
8 $VERSION = '1.14';
8 $VERSION = '1.16';
99 @ISA = qw{Module::Install::Base};
1010 $ISCORE = 1;
1111 }
3030 # This is not enforced yet, but will be some time in the next few
3131 # releases once we can make sure it won't clash with custom
3232 # Module::Install extensions.
33 $VERSION = '1.14';
33 $VERSION = '1.16';
3434
3535 # Storage for the pseudo-singleton
3636 $MAIN = undef;
55
66 extends 'CHI::Driver';
77
8 our $VERSION = '0.09';
8 our $VERSION = '0.10';
99
1010 has 'redis' => (
1111 is => 'ro',
171171 A CHI driver that uses C<Redis> to store the data. Care has been taken to
172172 not have this module fail in fiery ways if the cache is unavailable. It is my
173173 hope that if it is failing and the cache is not required for your work, you
174 can ignore it's warnings.
174 can ignore its warnings.
175175
176176 =head1 TECHNICAL DETAILS
177177
191191 encodes values to UTF-8. This driver sets the Redis encoding option
192192 to undef to disable automatic encoding.
193193
194 =head1 CONSTRUCTOR OPTIONS
195
196 =over 4
197
198 =item C<redis>
199
200 option for the constructed C<Redis> object
201
202 =item C<redis_options>
203
204 for hash of options to the C<Redis> constructor
205
194206 =back
195207
196 =head1 CONSTRUCTOR OPTIONS
197
198 C<redis> option for constructed C<Redis> object.
199
200 C<redis_options> for hash of optios to C<Redis> constructor
201
202 Other options, including C<server>, C<debug>, and C<password> are passed to C<Redis> constructor.
208 Other options, including C<server>, C<debug>, and C<password> are passed to
209 the C<Redis> constructor.
203210
204211 =head1 ATTRIBUTES
205212