Module: Sequel::Plugins::SerializationModificationDetection
- Defined in:
- lib/sequel/plugins/serialization_modification_detection.rb
Overview
This plugin extends the serialization plugin and enables it to detect changes in serialized values by checking whether the current deserialized value is the same as the original deserialized value. The serialization plugin does not do such checks by default, as they often aren’t needed and can hurt performance.
Note that for this plugin to work correctly, the values you are serializing must roundtrip correctly (i.e. deserialize(serialize(value)) should equal value). This is true in most cases, but not in all. For example, ruby symbols round trip through yaml, but not json (as they get turned into strings in json).
Example
require 'sequel'
require 'json'
class User < Sequel::Model
plugin :serialization, :json, :permissions
plugin :serialization_modification_detection
end
user = User.create(permissions: {})
user.[:global] = 'read-only'
user.save_changes
Defined Under Namespace
Modules: InstanceMethods
Class Method Summary collapse
-
.apply(model) ⇒ Object
Load the serialization plugin automatically.
Class Method Details
.apply(model) ⇒ Object
Load the serialization plugin automatically.
30 31 32 |
# File 'lib/sequel/plugins/serialization_modification_detection.rb', line 30 def self.apply(model) model.plugin :serialization end |