Thanks. Maybe I'm just being overly pessimistic about app engine's native
storage efficiency.

Pertti


On Thu, Mar 6, 2014 at 11:18 AM, timh <zutes...@gmail.com> wrote:

> A repeated IntegerProperty is not that inefficient, and explicitly turn
> off the index if you don't need it.
>
> Alternately you options are a BlobProperty (pickle the list first) or as
> you say store it as json.
>
> T
>
>
> On Thursday, March 6, 2014 4:50:56 PM UTC+8, Pertti Kellomäki wrote:
>>
>> I need to store lists of smallish integers. The lists consist of a few
>> tens of integers, and the integers are in the triple digit range.
>>
>> I could obviously use IntegerProperty(repeated=True), but since the
>> lists are basically only used at client side, this feels a bit overkill.
>> There is no need to search or index the lists.
>>
>> What would be the most efficient way to store these lists? I'm thinking
>> of simply storing them as json strings, but is there something else that I
>> could use?
>> --
>> Pertti Kellomäki, Kesanto Enterprises
>> Your training in the cloud: <http://www.trainingcommons.com>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To post to this group, send email to google-appengine@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-appengine.
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Pertti Kellomäki, Kesanto Enterprises
Your training in the cloud: <http://www.trainingcommons.com>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to