方法
- #
- D
包含的模块
实例公有方法
_load(entry) 链接
源代码: 显示 | 在 GitHub 上查看
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 57 def _load(entry) entry end
dump(entry) 链接
源代码: 显示 | 在 GitHub 上查看
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 49 def dump(entry) entry end
dump_compressed(entry, threshold) 链接
源代码: 显示 | 在 GitHub 上查看
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 53 def dump_compressed(entry, threshold) entry.compressed(threshold) end
dumped?(dumped) 链接
源代码: 显示 | 在 GitHub 上查看
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 61 def dumped?(dumped) dumped.is_a?(Cache::Entry) end