# File lib/peek/adapters/redis.rb, line 7
      def initialize(options = {})
        @client = options.fetch(:client, ::Redis.new)
        @expires_in = Integer(options.fetch(:expires_in, 60 * 30))
      end