如何在Golang中定义未编制索引的数据存储区属性?

时间:2014-04-18 20:07:31

标签: google-app-engine go

我可以在应用引擎上使用Golang定义未编制索引的数据存储属性吗?

2 个答案:

答案 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