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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:49:07+00:00 2026-05-24T06:49:07+00:00

There is going to be articles and tags in my App Engine application. And

  • 0

There is going to be “articles” and “tags” in my App Engine application.

And there are two techniques to implement that (thanks to Nick Johnson’s article):

# one entity just refers others
class Article(db.Model):
  tags = db.ListProperty(Tag)

# via separate "join" table
class ArticlesAndTags(db.Model):
  article = db.ReferenceProperty(Article)
  tag = db.ReferenceProperty(Tag)

Which one should I prefer according to the following tasks?

  • Create tag cloud (frequently),
  • Select articles by a tag (rather rarely)
  • 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-24T06:49:08+00:00Added an answer on May 24, 2026 at 6:49 am

    Because of the lack of a ‘reduce’ feature in appengine’s map reduce (nor an SQL group by like query), tag clouds are tricky to implement efficiently because you need to count all tags you have manually. Which ever implementation you go with, what I would suggest for the tag cloud is to have a separate model TagCounter that keeps track of how many tags you have. Otherwise the tag query could get expensive if you have a lot of them.

    class TagCounter:
       tag = db.ReferenceProperty(Tag)
       counter = db.IntegerProperty(default=0)
    

    Every time you choose to update your tags on an article, make sure you increment and decrement from this table accordingly.

    As for selecting articles by a tag, the first implementation is sufficient (the second is overly complex imo).

    class Article(db.Model):
      tags = db.ListProperty(Tag)
    
      @staticmethod
      def select_by_tag(tag):
        return Article.all().filter("tags", tag).run()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I think there must be something subtle going on here that I don't know
I'm creating a site that is going to have a wiki article database. Right
Assume, we have a model, let's call it Articles. There, we have two columns,
I have table with articles and there is around 150.000 of records, in that
Is there going to be a way with the 4.0 SDK to create a
I'm using the facedetect example and going from there. Right now it only detects
There is some magic going on with WCF deserialization. How does it instantiate an
There is a similar question going around, but it just got the same old
I'm going through MSIL and noticing there are a lot of nop instructions in
Is there any way to debug what is going on after my .NET code

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.