本文整理汇总了Golang中github.com/pavel-paulau/gateload/api.SyncGatewayClient.GetSingleDoc方法的典型用法代码示例。如果您正苦于以下问题:Golang SyncGatewayClient.GetSingleDoc方法的具体用法?Golang SyncGatewayClient.GetSingleDoc怎么用?Golang SyncGatewayClient.GetSingleDoc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/pavel-paulau/gateload/api.SyncGatewayClient
的用法示例。
在下文中一共展示了SyncGatewayClient.GetSingleDoc方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: readFeed
func readFeed(c *api.SyncGatewayClient, feedType, lastSeq string) string {
feed := c.GetChangesFeed(feedType, lastSeq)
ids := []string{}
for _, doc := range feed["results"].([]interface{}) {
ids = append(ids, doc.(map[string]interface{})["id"].(string))
}
if len(ids) == 1 {
c.GetSingleDoc(ids[0])
} else {
for docs := range RevsIterator(ids) {
c.GetBulkDocs(docs)
}
}
return feed["last_seq"].(string)
}
示例2: measurePullLatency
func measurePullLatency(c *api.SyncGatewayClient, doc api.Doc) (int64, float64) {
t0 := time.Now()
c.GetSingleDoc(doc.Id)
t1 := time.Now().Round(100 * time.Microsecond)
return t0.UnixNano(), float64(t1.Sub(t0.Round(100*time.Microsecond))) / math.Pow10(6)
}