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

  • SEARCH
  • Home
  • 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 4073768
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T17:04:15+00:00 2026-05-20T17:04:15+00:00

So I have these two methods in my Video model. The first one takes

  • 0

So I have these two methods in my Video model. The first one takes the parameter store and does some funky math to it to return rounded_num. The second method should be setting rank_sum in the database to the value of rounded_num by passing the value of vote_sum to the rank_sum method. Here are the methods:

def rank_sum(score)
  order = Math.log10(([score.abs,1].max))

  if score > 0
    sign = 1
  elsif score < 0
    sign = -1
  else
    sign = 0
  end

  seconds = self.created_at - DateTime.new(1970,1,1)
  long_num = order + sign * seconds / 45000
  return rounded_num = (long_num * 10**7).round.to_f / (10**7)
end

def update_rank_sum
  new_rank = rank_sum(self.vote_sum)
  video.update_attributes!(:rank_sum => new_rank)
end

However, rank_sum is not being set. The value for each video’s rank_sum is still nil. How do I fix this?

  • 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-20T17:04:16+00:00Added an answer on May 20, 2026 at 5:04 pm

    Since your rank_sum method doesn’t directly interact with an instance of the Video model (e.g. one specific video) and instead simply does some calculation, I would make it a class method. This also makes it so that your method isn’t overwriting Active Record’s own rank_sum method, which it created based on the columns in your database.

    Changing some of the names to be more descriptive and cleaning up the return statement in your first method, I would try something like this:

    class Video < ActiveRecord::Base
      before_update :update_rank_sum
    
      def self.calculate_rank_sum(score, created_at)
        order = Math.log10(([score.abs,1].max))
    
        if score > 0
          sign = 1
        elsif score < 0
          sign = -1
        else
          sign = 0
        end
    
        seconds = created_at - DateTime.new(1970,1,1)
        long_num = order + sign * seconds / 45000
        (long_num * 10**7).round.to_f / (10**7)
      end
    
      def update_rank_sum
        self.rank_sum = Video.calculate_rank_sum(self.vote_sum, self.created_at)
      end
    end
    

    This will recalculate the rank_sum column every time the record is saved. If you only want to recalculate it if a certain field was changed, you can implement that logic in your update_rank_sum callback. For example, to only calculate a new rank_sum if the vote_sum has been changed:

    def update_rank_sum
      if self.vote_sum_changed?
        self.rank_sum = Video.calculate_rank_sum(self.vote_sum, self.created_at)
      end
      true
    end
    

    You can replace vote_sum in vote_sum_changed? with whatever column you want to check.

    [Edit] You may need to return a non false or nil value in the callback to make sure the record still saves (if you return false from a before_ callback it cancels the save). I’ve updated the last code block.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have these two methods on a class that differ only in one method
All -- I have these two methods in one of my classes: public static
I have these two methods that I would like to combine into one. But
I have these two methods below. One returns a list of manufacturers based on
I have these two methods I am working on. One saves and one loads.
I have these two methods in my signeduser model: def build_invitation self.create_invitation end def
So these two methods have the same signature but different constraints public static void
I have these two methods on a service: public Offer GetOffer(int id, string languageCode
I have these two methods and Java can't find the return in getNumEmails(). All
I have added these two methods to the 1st unit of my Delphi 5

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.