├── .gitignore ├── .travis.yml ├── Changes ├── README.pod ├── dist.ini ├── lib ├── Redis.pm └── Redis │ ├── Hash.pm │ ├── List.pm │ └── Sentinel.pm ├── scripts ├── publish.pl └── redis-benchmark.pl ├── t ├── 01-basic.t ├── 02-responses.t ├── 03-pubsub.t ├── 04-pipeline.t ├── 05-nonblock.t ├── 06-on-connect.t ├── 07-reconnect.t ├── 08-unix-socket.t ├── 09-env-redis-server.t ├── 10-tie-list.t ├── 11-timeout.t ├── 12-scan-callback.t ├── 20-tie-hash.t ├── 30-scripts.t ├── 42-client_cmds.t ├── 44-no-unicode-bug.t ├── 50-fork_safe.t ├── 60-sentinel.t ├── stunnel │ ├── cert.pem │ └── key.pem └── tlib │ └── Test │ ├── SpawnRedisServer.pm │ └── SpawnRedisTimeoutServer.pm └── tools ├── benchmarks ├── read_vs_sysread.pl └── readline_vs_sysread_vs_recv │ ├── client-readline.pl │ ├── client-recv.pl │ ├── client-sysread.pl │ ├── run.pl │ └── server-generator.pl └── html_doc_scrapper.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/Changes -------------------------------------------------------------------------------- /README.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/README.pod -------------------------------------------------------------------------------- /dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/dist.ini -------------------------------------------------------------------------------- /lib/Redis.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/lib/Redis.pm -------------------------------------------------------------------------------- /lib/Redis/Hash.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/lib/Redis/Hash.pm -------------------------------------------------------------------------------- /lib/Redis/List.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/lib/Redis/List.pm -------------------------------------------------------------------------------- /lib/Redis/Sentinel.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/lib/Redis/Sentinel.pm -------------------------------------------------------------------------------- /scripts/publish.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/scripts/publish.pl -------------------------------------------------------------------------------- /scripts/redis-benchmark.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/scripts/redis-benchmark.pl -------------------------------------------------------------------------------- /t/01-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/01-basic.t -------------------------------------------------------------------------------- /t/02-responses.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/02-responses.t -------------------------------------------------------------------------------- /t/03-pubsub.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/03-pubsub.t -------------------------------------------------------------------------------- /t/04-pipeline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/04-pipeline.t -------------------------------------------------------------------------------- /t/05-nonblock.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/05-nonblock.t -------------------------------------------------------------------------------- /t/06-on-connect.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/06-on-connect.t -------------------------------------------------------------------------------- /t/07-reconnect.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/07-reconnect.t -------------------------------------------------------------------------------- /t/08-unix-socket.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/08-unix-socket.t -------------------------------------------------------------------------------- /t/09-env-redis-server.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/09-env-redis-server.t -------------------------------------------------------------------------------- /t/10-tie-list.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/10-tie-list.t -------------------------------------------------------------------------------- /t/11-timeout.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/11-timeout.t -------------------------------------------------------------------------------- /t/12-scan-callback.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/12-scan-callback.t -------------------------------------------------------------------------------- /t/20-tie-hash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/20-tie-hash.t -------------------------------------------------------------------------------- /t/30-scripts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/30-scripts.t -------------------------------------------------------------------------------- /t/42-client_cmds.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/42-client_cmds.t -------------------------------------------------------------------------------- /t/44-no-unicode-bug.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/44-no-unicode-bug.t -------------------------------------------------------------------------------- /t/50-fork_safe.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/50-fork_safe.t -------------------------------------------------------------------------------- /t/60-sentinel.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/60-sentinel.t -------------------------------------------------------------------------------- /t/stunnel/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/stunnel/cert.pem -------------------------------------------------------------------------------- /t/stunnel/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/stunnel/key.pem -------------------------------------------------------------------------------- /t/tlib/Test/SpawnRedisServer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/tlib/Test/SpawnRedisServer.pm -------------------------------------------------------------------------------- /t/tlib/Test/SpawnRedisTimeoutServer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/t/tlib/Test/SpawnRedisTimeoutServer.pm -------------------------------------------------------------------------------- /tools/benchmarks/read_vs_sysread.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/tools/benchmarks/read_vs_sysread.pl -------------------------------------------------------------------------------- /tools/benchmarks/readline_vs_sysread_vs_recv/client-readline.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/tools/benchmarks/readline_vs_sysread_vs_recv/client-readline.pl -------------------------------------------------------------------------------- /tools/benchmarks/readline_vs_sysread_vs_recv/client-recv.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/tools/benchmarks/readline_vs_sysread_vs_recv/client-recv.pl -------------------------------------------------------------------------------- /tools/benchmarks/readline_vs_sysread_vs_recv/client-sysread.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/tools/benchmarks/readline_vs_sysread_vs_recv/client-sysread.pl -------------------------------------------------------------------------------- /tools/benchmarks/readline_vs_sysread_vs_recv/run.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/tools/benchmarks/readline_vs_sysread_vs_recv/run.pl -------------------------------------------------------------------------------- /tools/benchmarks/readline_vs_sysread_vs_recv/server-generator.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/tools/benchmarks/readline_vs_sysread_vs_recv/server-generator.pl -------------------------------------------------------------------------------- /tools/html_doc_scrapper.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerlRedis/perl-redis/HEAD/tools/html_doc_scrapper.pl --------------------------------------------------------------------------------