├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Changes ├── MANIFEST ├── Makefile.PL ├── README ├── eg ├── no_raise_error_1.pl └── server_failover.pl ├── lib ├── RedisDB.pm ├── RedisDB │ ├── Cluster.pm │ ├── Error.pm │ └── Sentinel.pm └── Test │ └── RedisDB.pm ├── t ├── 00-load.t ├── auth.t ├── basic_redis.t ├── cluster.t ├── network.t ├── no-leak.t ├── parse_cluster_nodes.t ├── redis_commands.t ├── restore_subscriptions.t ├── send_command_cb.t ├── subscribe.t ├── transactions.t ├── url.t └── utf8.t ├── util ├── benchmark.pl ├── generate_key_positions.pl └── pipeline.pl └── xt ├── manifest.t ├── pod.t └── podspell.t /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/Changes -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/MANIFEST -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/README -------------------------------------------------------------------------------- /eg/no_raise_error_1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/eg/no_raise_error_1.pl -------------------------------------------------------------------------------- /eg/server_failover.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/eg/server_failover.pl -------------------------------------------------------------------------------- /lib/RedisDB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/lib/RedisDB.pm -------------------------------------------------------------------------------- /lib/RedisDB/Cluster.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/lib/RedisDB/Cluster.pm -------------------------------------------------------------------------------- /lib/RedisDB/Error.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/lib/RedisDB/Error.pm -------------------------------------------------------------------------------- /lib/RedisDB/Sentinel.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/lib/RedisDB/Sentinel.pm -------------------------------------------------------------------------------- /lib/Test/RedisDB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/lib/Test/RedisDB.pm -------------------------------------------------------------------------------- /t/00-load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/00-load.t -------------------------------------------------------------------------------- /t/auth.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/auth.t -------------------------------------------------------------------------------- /t/basic_redis.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/basic_redis.t -------------------------------------------------------------------------------- /t/cluster.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/cluster.t -------------------------------------------------------------------------------- /t/network.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/network.t -------------------------------------------------------------------------------- /t/no-leak.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/no-leak.t -------------------------------------------------------------------------------- /t/parse_cluster_nodes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/parse_cluster_nodes.t -------------------------------------------------------------------------------- /t/redis_commands.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/redis_commands.t -------------------------------------------------------------------------------- /t/restore_subscriptions.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/restore_subscriptions.t -------------------------------------------------------------------------------- /t/send_command_cb.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/send_command_cb.t -------------------------------------------------------------------------------- /t/subscribe.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/subscribe.t -------------------------------------------------------------------------------- /t/transactions.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/transactions.t -------------------------------------------------------------------------------- /t/url.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/url.t -------------------------------------------------------------------------------- /t/utf8.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/t/utf8.t -------------------------------------------------------------------------------- /util/benchmark.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/util/benchmark.pl -------------------------------------------------------------------------------- /util/generate_key_positions.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/util/generate_key_positions.pl -------------------------------------------------------------------------------- /util/pipeline.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/util/pipeline.pl -------------------------------------------------------------------------------- /xt/manifest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/xt/manifest.t -------------------------------------------------------------------------------- /xt/pod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/xt/pod.t -------------------------------------------------------------------------------- /xt/podspell.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p5-RedisDB/RedisDB/HEAD/xt/podspell.t --------------------------------------------------------------------------------