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 244231
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:59:15+00:00 2026-05-11T20:59:15+00:00

How can I roll my own counter cache for a self-referential many-to-many relationship that

  • 0

How can I roll my own counter cache for a self-referential many-to-many relationship that uses has_many :through?

I need to track the number of citations and references for each article

I’m using roughly the code from the answer to this question:

class Publication < ActiveRecord::Base
  has_many :citations
  has_many :cited_publications, :through => :citations, :source => :reference
  has_many :references, :foreign_key => "reference_id", :class_name => "Citation"
  has_many :refered_publications, :through => :references, :source => :publication
end

class Citation < ActiveRecord::Base
  belongs_to :publication
  belongs_to :reference, :class_name => "Publication"
end
  • 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-11T20:59:15+00:00Added an answer on May 11, 2026 at 8:59 pm

    The Rails counter cache mechanism uses the increment_counter and decrement_counter methods internally. You should just be able to invoke those methods from the standard ActiveRecord callbacks.

    Something like this should give you the idea:

    class Citation < ActiveRecord::Base
      belongs_to :publication
      belongs_to :reference, :class_name => "Publication"
    
      after_create  :increment_counter_cache
      after_destroy :decrement_counter_cache
    
      private
      def decrement_counter_cache
        Publication.decrement_counter("citations_counter", publication_id)
      end
    
      def increment_counter_cache
        Publication.increment_counter("citations_counter", publication_id)
      end
    

    end

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

Sidebar

Related Questions

I need to interface a Linux app to a server that uses bstr data.
I know I can use System.DirectoryServices to roll my own GAL Name/email selector control
I'm trying to roll my own implementation of IShellBrowser because I need to have
I've worked my way through Don Stewart's Roll your own IRC bot tutorial ,
Out of interest: In ASP.net MVC you can roll your own ControllerFactory. I just
Anything like this exist in the open source world? I can roll my own,
I need a Dictionary like object that can store multiple entries with the same
can I make my own headers in HTTP request ? e.g. This is normal
Do I have to roll my own caching mechanism for data I'd like to
I am looking to roll my own simple web stats script. The only major

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.