Skip to content

Instantly share code, notes, and snippets.

@ArunGupta25
Created February 17, 2015 20:03
Show Gist options
  • Save ArunGupta25/dcc72a153349f5ded90d to your computer and use it in GitHub Desktop.
Save ArunGupta25/dcc72a153349f5ded90d to your computer and use it in GitHub Desktop.
def cached_unread_messages_count
Rails.cache.fetch([self, "unread_messages_count"]) { Receipt.where(receiver_id: self.id, mailbox_type: 'inbox', is_read: false).size }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment