douju2012 2019-07-10 22:00
浏览 191
已采纳

在golang中使用全局mongo(mgo)数据库有何弊端? [关闭]

Are there any downsides if we use a global variable to handle database operations instead of passing it as an argument to functions and methods or storing it as a field in structs?

What are these downsides (if there are)?

Let's say we create a package inside a project called database, inside that package define a variable called DB var DB *mgo.Database, and then in project's main function fill it with our mongo database:

func main() {
    session, err := mgo.Dial("localhost")
    if err != nil {
        fmt.Println(err)
        return
    }
    database.DB = session.DB("mydatabase")
    // project code
    defer session.Close()
}

After that, we use database.DB to interact with our database.

Note that there will be lots of goroutines using database.DB (if it makes any difference)

The question is not opinion based, please take more time to read and understand

  • 写回答

1条回答 默认 最新

  • doupeng3501 2019-07-10 23:34
    关注

    The procedure of using a globally initialized database to be handed down to the places it is needed is well established and reasonable.

    However, just using database.DB in a manner like

    _ = database.DB.C(foo).Find(q).One(&bar)
    

    all over the place holds a significant disadvantage: you only use one connection of the underlying connection pool, practically ensuring that all requests are processed sequentially.

    So what you rather want to do is something like this:

    s := database.DB.Session.Copy()
    _ = database.DB.C(foo).With(s).Find(q).One(&bar)
    defer s.Close()
    

    for „parallel“ requests (there are some caveats about parallel requests, which I leave out for the sake of brevity).

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

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!