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 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 a script that appends some rows to a table. One of the
We manage a site for a medical charity. They have a number of links
I have a login.jsp page which contains a login form. Once logged in the
I have several USB mass storage flash drives connected to a Ubuntu Linux computer
I have found this example on StackOverflow: var people = new List<Person> { new
This is beyond both making sense and my control. That being said here is
I am trying to redirect to a specific path based on HTTP_HOST or SERVER_NAME
I am playing with TFS 2010, and am trying to setup a build process
There doesn't seem to be any tried and true set of best practices to
Is there a way to test if a collection is already initialized? try-catch only?

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.