You might want to consider some way of keeping the strings used for these
tags as small as possible to reduce the impact on the size of your indexes
but no, it wouldn't hinder building your indexes.

On Tue, Aug 10, 2010 at 12:10 PM, Nikita <[email protected]> wrote:

> 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]<google-appengine%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>


-- 
--
Jeff

-- 
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