method

write_serialized_entry

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: ActiveSupport::Cache::Strategy::LocalCache
write_serialized_entry(key, payload, **) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/cache/strategy/local_cache.rb, line 135
          def write_serialized_entry(key, payload, **)
            if return_value = super
              local_cache.write_entry(key, payload) if local_cache
            else
              local_cache.delete_entry(key) if local_cache
            end
            return_value
          end
Register or log in to add new notes.