-
-
14 Jan 2022 20:46:00 UTC
- Distribution: Redis
- Module version: 1.999
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (25)
- Testers (59 / 22 / 0)
- Kwalitee
Bus factor: 2- 36.55% Coverage
- License: artistic_2
- Perl: v5.10.0
- Activity
24 month- Tools
- Download (64.77KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
NAME
Redis::List - tie Perl arrays to Redis lists
VERSION
version 1.999
SYNOPSYS
tie @my_list, 'Redis::List', 'list_name', @Redis_new_parameters; $value = $my_list[$index]; $my_list[$index] = $value; $count = @my_list; push @my_list, 'values'; $value = pop @my_list; unshift @my_list, 'values'; $value = shift @my_list; ## NOTE: fourth parameter of splice is *NOT* supported for now @other_list = splice(@my_list, 2, 3); @my_list = ();
AUTHORS
Pedro Melo <melo@cpan.org>
Damien Krotkine <dams@cpan.org>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2015 by Pedro Melo, Damien Krotkine.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
Module Install Instructions
To install Redis, copy and paste the appropriate command in to your terminal.
cpanm Redis
perl -MCPAN -e shell install Redis
For more information on module installation, please visit the detailed CPAN module installation guide.