google appengine go 数据存储中最大的数据类型是什么。我遇到了字符串类型的限制,它只允许 500 个字符。谢谢!
问问题
89 次
1 回答
3
使用一个[]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 兆字节的数据。
于 2013-01-14T19:54:28.600 回答