我可以在应用引擎上使用Golang定义未编制索引的数据存储属性吗?
答案 0 :(得分:2)
当然,只需添加" noindex"结构字段标记:https://developers.google.com/appengine/docs/go/datastore/indexes#Go_Unindexed_properties
答案 1 :(得分:0)
您可以控制数据存储区如何使用struct标记处理结构字段。要避免索引字段,请执行以下操作:
type Person struct {
Age int `datastore:",noindex"`
}
有关详细信息,请参阅the documentation。