The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WebService::Amazon::Route53::Caching::Store::Redis - Redis-based cache-storage.

SYNOPSIS

This module implements several methods which makes it possible to get/set/delete cached values by a string-key.

The module will expect to be passed an open/valid Redis handle in the constructor:

    my $redis = Redis->new();
    my $cache = WebService::Amazon::Route53::Caching::Store::Redis->new( redis => $redis );