英文:
GAE Go size of datastore
问题
有没有一种函数可以调用来获取GAE Go Datastore中应用程序的条目数量,而不需要查询整个数据库并计算输出?
英文:
Is there some function one can call to get the amount of entries in the GAE Go Datastore of an app, without querying it for the whole database and counting the output?
答案1
得分: 3
c := appengine.NewContext(r)
var result struct {
Bytes int64 datastore:"bytes"
Count int64 datastore:"count"
Timestamp datastore.Time datastore:"timestamp"
}
datastore.NewQuery("Stat_Total").Run(c).Next(&result)
c.Infof("count: %d", result.Count)
英文:
c := appengine.NewContext(r)
var result struct {
Bytes int64 `datastore:"bytes"`
Count int64 `datastore:"count"`
Timestamp datastore.Time `datastore:"timestamp"`
}
datastore.NewQuery("__Stat_Total__").Run(c).Next(&result)
c.Infof("count: %d", result.Count)
答案2
得分: 1
您可以在管理控制台的“数据”>“数据存储统计”下查看所有实体的大小。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论