method
should_compress?
v3.2.1 -
Show latest stable
-
0 notes -
Class: ActiveSupport::Cache::Entry
- 1.0.0
- 1.1.0
- 1.1.1
- 1.1.6
- 1.2.0
- 1.2.6
- 2.0.0
- 2.0.1
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.2
- 2.3.8
- 3.0.0 (0)
- 3.0.5 (0)
- 3.0.7 (0)
- 3.0.9 (0)
- 3.1.0 (0)
- 3.2.1 (0)
- 3.2.3 (0)
- 3.2.8 (0)
- 3.2.13 (0)
- What's this?
should_compress?(serialized_value, options)
private
Hide source
# File activesupport/lib/active_support/cache.rb, line 630 def should_compress?(serialized_value, options) if options[:compress] compress_threshold = options[:compress_threshold] || DEFAULT_COMPRESS_LIMIT return true if serialized_value.size >= compress_threshold end false end


