Google App Engine数据存储区中int或long的最大值是多少?

时间:2013-11-23 23:31:02

标签: google-app-engine google-cloud-datastore

Google App Engine Python中IntegerProperty,LongProperty的最大值是什么?

2 个答案:

答案 0 :(得分:4)

IntegerProperty是一个int或long:

int或long 一个整数值,最多64位。

Python int值在存储之前转换为Python long值。存储为int的值将作为long返回。

如果分配了大于64位的长度,则仅存储最低有效64位。

为了更加清晰,你可以使用sys.maxint来查找实际值(在shell中运行它和" import sys"首先)

答案 1 :(得分:4)

Google App Engine上没有LongProperty,但只有IntegerProperty,而且已经指出它是64位有符号整数。

此号码的最低−9,223,372,036,854,775,808和最高9,223,372,036,854,775,807