Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7088051
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:44:59+00:00 2026-05-28T07:44:59+00:00

This is probably one of the things that all new users find out about

  • 0

This is probably one of the things that all new users find out about Rails sooner or later. I just realized that rails is updating all fields with the serialize keyword, without checking if anything really changed inside. In a way that is the sensible thing to do for the generic framework.

But is there a way to override this behavior? If I can keep track of whether the values in a serialized fields have changed or not, is there a way to prevent it from being pushed in the update statement? I tried using “update_attributes” and limiting the hash to the fields of interest, but rails still updates all the serialized fields.

Suggestions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T07:45:00+00:00Added an answer on May 28, 2026 at 7:45 am

    Yes, that was bugging me too. This is what I did for Rails 2.3.14 (or lower):

    # config/initializers/nopupdateserialize.rb
    
    module ActiveRecord
      class Base
        class_attribute :no_serialize_update
        self.no_serialize_update = false
      end
    end
    
    module ActiveRecord2
      module Dirty
    
        def self.included(receiver)
          receiver.alias_method_chain :update, :dirty2
        end
    
        private 
    
        def update_with_dirty2
          if partial_updates?
            if self.no_serialize_update
              update_without_dirty(changed)
            else
              update_without_dirty(changed | (attributes.keys & self.class.serialized_attributes.keys))
            end
          else
            update_without_dirty
          end
        end
    
      end
    end
    
    ActiveRecord::Base.send :include, ActiveRecord2::Dirty
    

    Then in your controller use:

    model_item.no_serialize_update = true
    model_item.update_attributes(params[:model_item])
    model_item.increment!(:hits)
    model_item.update_attribute(:nonserializedfield => "update me")
    
    etc.
    

    Or define it in your model if you do not expect any changes to the serialized field once created (but update_attribute(:serialized_field => “update me” still works!)

    class Model < ActiveRecord::Base
      serialize :serialized_field
    
      def no_serialize_update
        true
      end
    
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is probably a simple one but I can't seem to figure it out.
Morning y'all This is probably an easy one but I barely got any sleep
This is probably a really simple question but one I've never quite worked out
This is probably a long shot but I asked a question about converting one
This is probably a basic html/css question... I have a simple one-button form that
Ok this is probably just me not knowing enough about php but here it
This probably has a one click solution, i know debugging web pages in VS2010
This is probably a simple one to answer, but I'm stuck, so here goes.
This is probably an easy one, but I'm missing something I guess. The problem
So this one is probably very simple, but I'm having a bit of trouble

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.