dpyoh6553 2018-01-01 10:32
浏览 69
已采纳

如何在Golang Google数据存储包中正确使用上下文?

I've started using Google Cloud Datastore in one of the project in the company I currently work in.

https://godoc.org/cloud.google.com/go/datastore

In the provided example, they use a context and pass it to the connection instance

ctx := context.Background()
dsClient, err := datastore.NewClient(ctx, "my-project")

Through the documentation you will see that they pass a context to all the functions that makes operations on the database, I am not sure if they are passing the same pointer or create a new pointer for each operation.

The current setup that I have is a global variable for the context in a package called "store" which I keep all the structs functions that communicate with the db, and I use that global variable each time. I don't know what is the effect of that, I am not sure why the context is used, Should I get reference of context.Background() each time I make operations on the database ?

  • 写回答

1条回答 默认 最新

  • doucan957495 2018-01-02 06:53
    关注

    context.Background is the global context--so no need for you global variable. Most of the time you'll want to use a child of that context, with a cancel or a timeout.

    ctx, cancel := context.WithCancel(context.Background)
    //or
    ctx, cancel := context.WithTimeout(context.Background, time.Second * 30) 
    

    Then you can use the cancel function to close down your application nicely, or cancel and retry if a request is hanging. If you never plan on canceling or timing out operations, then using context.Background is fine.

    Also context.Context is an interface so it's always passed by reference, so all uses of a certain instance point to the same context.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 QTableWidget重绘程序崩溃
  • ¥15 51寻迹小车定点寻迹
  • ¥15 谁能帮我看看这拒稿理由啥意思啊阿啊
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含
  • ¥15 麒麟V10桌面版SP1如何配置bonding