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

        @client.setex(namespaced_key(key), ttl, ::Marshal.dump(value))

        return value
      end