available?()
private

No documentation available.

# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 157
            def available?
              return @available if defined?(@available)
              silence_warnings { require "active_support/message_pack" }
              @available = true
            rescue LoadError
              @available = false
            end