# File lib/ramaze/cache/redis.rb, line 156
      def cache_store(key, value, ttl = nil, options = {})
        ttl = options[:ttl] || @options[:expires_in]
        @client.setex(key, ttl, value)

        return value
      end