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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T08:55:22+00:00 2026-05-31T08:55:22+00:00

Is it possible to get object with comments related to it? Right now django

  • 0

Is it possible to get object with comments related to it? Right now django comment framework creates query for every object which has related comments and another queries for comments owners. Can I somehow avoid this? I use django 1.4 so prefetch_related is allowed.

  • 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-31T08:55:23+00:00Added an answer on May 31, 2026 at 8:55 am

    You could create a function that caches the count:

    from django.contrib.contenttypes.models import ContentType
    from django.contrib import comments
    
    def get_comment_count_key(model):
        content_type = ContentType.objects.get_for_model(model)
        return 'comment_count_%s_%s' % (content_type.pk, model.pk)
    
    def get_comment_count(model):
        key = get_comment_count_key(model)
        value = cache.get(key)
        if value is None:
            value = comments.get_model().objects.filter(
                content_type = ContentType.objects.get_for_model(model),
                object_pk = model.pk,
                site__pk = settings.SITE_ID
            ).count()
            cache.set(key, value)
        return value
    

    You could extend the Comment model and add get_comment_count there. Or put get_comment_count as a template filter. It doesn’t matter.

    Of course, you would also need cache invalidation when a new comment is posted:

    from django.db.models import signals
    from django.contrib import comments
    
    def refresh_comment_count(sender, instance, **kwargs):
        cache.delete(get_comment_count_key(instance.content_object))
        get_comment_count(instance.content_object)
    post_save.connect(refresh_comment_count, sender=comments.get_model())
    post_delete.connect(refresh_comment_count, sender=comments.get_model())
    

    You could improve this last snippet, by using cache.incr() on comment_was_posted, and cache.decr() on post_delete but that’s left as an exercise for you 🙂

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

Sidebar

Related Questions

Is it possible to get an Object's attribute through the property tag in struts?
Possible Duplicate: What are the reasons why Map.get(Object key) is not (fully) generic According
Is it possible to get the originating port from an ActionExecutingContext object? If so,
Is it possible to get the expiry DateTime of an HttpRuntime.Cache object? If so,
Is it possible to get the raw HTTP Request from the HttpServletRequest object? I
Is it possible to get the size(in bytes) of a Session object after storing
Possible Duplicate: PHP ToString() equivalent I get this error: Catchable fatal error: Object of
Is it possible in Ruby to get a reference to methods of an object
Is it possible in JSP to get the type of Object in List, just
Possible Duplicate: Error : get property of non-object I am new to codeigniter model,

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.