├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .perltidyrc ├── Changes ├── MANIFEST.SKIP ├── Makefile.PL ├── README.md ├── cpanfile ├── examples ├── cache.pl ├── chat.pl └── twitter.pl ├── lib └── Mojo │ ├── Redis.pm │ └── Redis │ ├── Cache.pm │ ├── Connection.pm │ ├── Cursor.pm │ ├── Database.pm │ └── PubSub.pm └── t ├── 00-project.t ├── benchmark.t ├── cache-offline.t ├── cache.t ├── connection-auth.t ├── connection-lost.t ├── connection-sentinel.t ├── connection-unix.t ├── connection.t ├── cursor.t ├── db.t ├── geo.t ├── keyspace-listen.t ├── method-coverage.t ├── pipelining.t ├── pubsub-reconnect.t ├── pubsub.t ├── redis.t ├── scripting.t ├── txn.t └── xread.t /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.perltidyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/.perltidyrc -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/Changes -------------------------------------------------------------------------------- /MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/MANIFEST.SKIP -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/README.md -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/cpanfile -------------------------------------------------------------------------------- /examples/cache.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/examples/cache.pl -------------------------------------------------------------------------------- /examples/chat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/examples/chat.pl -------------------------------------------------------------------------------- /examples/twitter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/examples/twitter.pl -------------------------------------------------------------------------------- /lib/Mojo/Redis.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/lib/Mojo/Redis.pm -------------------------------------------------------------------------------- /lib/Mojo/Redis/Cache.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/lib/Mojo/Redis/Cache.pm -------------------------------------------------------------------------------- /lib/Mojo/Redis/Connection.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/lib/Mojo/Redis/Connection.pm -------------------------------------------------------------------------------- /lib/Mojo/Redis/Cursor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/lib/Mojo/Redis/Cursor.pm -------------------------------------------------------------------------------- /lib/Mojo/Redis/Database.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/lib/Mojo/Redis/Database.pm -------------------------------------------------------------------------------- /lib/Mojo/Redis/PubSub.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/lib/Mojo/Redis/PubSub.pm -------------------------------------------------------------------------------- /t/00-project.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/00-project.t -------------------------------------------------------------------------------- /t/benchmark.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/benchmark.t -------------------------------------------------------------------------------- /t/cache-offline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/cache-offline.t -------------------------------------------------------------------------------- /t/cache.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/cache.t -------------------------------------------------------------------------------- /t/connection-auth.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/connection-auth.t -------------------------------------------------------------------------------- /t/connection-lost.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/connection-lost.t -------------------------------------------------------------------------------- /t/connection-sentinel.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/connection-sentinel.t -------------------------------------------------------------------------------- /t/connection-unix.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/connection-unix.t -------------------------------------------------------------------------------- /t/connection.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/connection.t -------------------------------------------------------------------------------- /t/cursor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/cursor.t -------------------------------------------------------------------------------- /t/db.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/db.t -------------------------------------------------------------------------------- /t/geo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/geo.t -------------------------------------------------------------------------------- /t/keyspace-listen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/keyspace-listen.t -------------------------------------------------------------------------------- /t/method-coverage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/method-coverage.t -------------------------------------------------------------------------------- /t/pipelining.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/pipelining.t -------------------------------------------------------------------------------- /t/pubsub-reconnect.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/pubsub-reconnect.t -------------------------------------------------------------------------------- /t/pubsub.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/pubsub.t -------------------------------------------------------------------------------- /t/redis.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/redis.t -------------------------------------------------------------------------------- /t/scripting.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/scripting.t -------------------------------------------------------------------------------- /t/txn.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/txn.t -------------------------------------------------------------------------------- /t/xread.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhthorsen/mojo-redis/HEAD/t/xread.t --------------------------------------------------------------------------------