當前位置: 首頁>>代碼示例>>Golang>>正文


Golang KVProto.Put方法代碼示例

本文整理匯總了Golang中kythe/io/kythe/go/storage/table.KVProto.Put方法的典型用法代碼示例。如果您正苦於以下問題:Golang KVProto.Put方法的具體用法?Golang KVProto.Put怎麽用?Golang KVProto.Put使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在kythe/io/kythe/go/storage/table.KVProto的用法示例。


在下文中一共展示了KVProto.Put方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: writeWithReverses

func writeWithReverses(ctx context.Context, tbl *table.KVProto, src, kind string, targets []string) error {
	if err := tbl.Put(ctx, []byte(src+tempTableKeySep+kind+tempTableKeySep), &srvpb.EdgeSet_Group{
		Kind:         kind,
		TargetTicket: targets,
	}); err != nil {
		return fmt.Errorf("error writing edges group: %v", err)
	}
	revGroup := &srvpb.EdgeSet_Group{
		Kind:         schema.MirrorEdge(kind),
		TargetTicket: []string{src},
	}
	for _, tgt := range targets {
		if err := tbl.Put(ctx, []byte(tgt+tempTableKeySep+revGroup.Kind+tempTableKeySep+src), revGroup); err != nil {
			return fmt.Errorf("error writing rev edges group: %v", err)
		}
	}
	return nil
}
開發者ID:kidaa,項目名稱:kythe,代碼行數:18,代碼來源:pipeline.go

示例2: createDecorationFragments

func createDecorationFragments(ctx context.Context, edges <-chan *srvpb.Edge, fragments *table.KVProto) error {
	fdb := &assemble.DecorationFragmentBuilder{
		Output: func(ctx context.Context, file string, fragment *srvpb.FileDecorations) error {
			key := file + tempTableKeySep
			if len(fragment.Decoration) != 0 {
				key += fragment.Decoration[0].Anchor.Ticket
			}
			return fragments.Put(ctx, []byte(key), fragment)
		},
	}

	for e := range edges {
		if err := fdb.AddEdge(ctx, e); err != nil {
			for range edges { // drain input channel
			}
			return err
		}
	}

	return fdb.Flush(ctx)
}
開發者ID:yenchih,項目名稱:kythe,代碼行數:21,代碼來源:pipeline.go

示例3: writeEdge

func writeEdge(ctx context.Context, edges *table.KVProto, e *srvpb.Edge) error {
	return edges.Put(ctx, []byte(e.Source.Ticket+tempTableKeySep+e.Kind+tempTableKeySep+e.Target.Ticket), e)
}
開發者ID:yenchih,項目名稱:kythe,代碼行數:3,代碼來源:pipeline.go


注:本文中的kythe/io/kythe/go/storage/table.KVProto.Put方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。