What's faster Model.get(keys) or Model.get_by_id(ids, parent=None)
Posted
by WooYek
on Stack Overflow
See other posts from Stack Overflow
or by WooYek
Published on 2010-03-29T13:04:25Z
Indexed on
2010/03/29
13:13 UTC
Read the original article
Hit count: 328
google-app-engine
|google-datastore
I'm wondering is there a difference in terms of computing cost for the Model.get(keys) and Model.get_by_id(ids, parent=None) methods?
Is there a server side computing advantage of using numeric id's over encoded string keys, or other way around? How big is the difference?
PS. Sorry, if it's a dupe. I'm sure I read an article about it, but I cannot find it now.
© Stack Overflow or respective owner