Sure!

Here is the model, every new post by a user is stored as a new entity:

class Entry(db.Model):
  author = db.StringProperty()(indexed = False)
  postid = db.StringProperty()(indexed = False)
  post = db.TextProperty()(required=True)
  category_tag = db.StringProperty()


The issue is that thousands of users post with the same category_tag.
My question is - if they do, will this cause contention anywhere? Note
that every post is a different instance/entity of the class Entry. But
as category_tag woud be same in a lot of entities at the same time,
does this hinder index building?

The simiar question wil arrise if I add the location property to the
above if a lot of users post at the same time from the same city.

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to