Google Appengine Go数据存储区中最大的数据类型是什么。我遇到了一个字符串类型的限制,该类型仅允许500个字符。谢谢!
1 回答
12345678_0001
TA贡献1802条经验 获得超5个赞
使用一个[]byte,它最多可以存储1兆字节。您可以使用将字符串转换为字节,然后使用[]byte("Foo")返回字符串 string()。
数据存储中允许的数据类型:
- signed integers (int, int8, int16, int32 and int64),
- bool,
- string,
- float32 and float64,
- any type whose underlying type is one of the above predeclared types,
- *Key,
- time.Time,
- appengine.BlobKey,
- []byte (up to 1 megabyte in length),
- slices of any of the above.
如果要存储较大的数据(如大图像),请改用Blobstore。最多允许32兆字节的数据。
- 1 回答
- 0 关注
- 180 浏览
添加回答
举报
0/150
提交
取消