Last time I benchmarked there was very little, if any difference, based on the size of an entity (ie 10kb vs 900kb).
What makes a very noticeable difference is serialization. If you've got a 2kb entity with a 500 item list it will likely perform worse than a 900kb entity with a single blob property -- especially if the list is indexed. This is why I often serialize data and stick it in a blob/text property myself when 1) I don't need it indexed and 2) I don't need to access it every time I access the entity. Robert On Tue, Feb 14, 2012 at 13:38, Daniel Florey <[email protected]> wrote: > I do not have a graph but you should keep in mind that entities with large > list properties may cause increased serialization time. > See: > http://youtu.be/AgaL6NGpkB8?t=14m31s > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/google-appengine/-/zNpScQ7BHaEJ. > > 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. -- 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.
