Methods

Included Modules

Instance Public methods

_load(entry)

📝 Source code
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 57
          def _load(entry)
            entry
          end
🔎 See on GitHub

dump(entry)

📝 Source code
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 49
          def dump(entry)
            entry
          end
🔎 See on GitHub

dump_compressed(entry, threshold)

📝 Source code
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 53
          def dump_compressed(entry, threshold)
            entry.compressed(threshold)
          end
🔎 See on GitHub

dumped?(dumped)

📝 Source code
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 61
          def dumped?(dumped)
            dumped.is_a?(Cache::Entry)
          end
🔎 See on GitHub