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).

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

报告相同问题?

悬赏问题

  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签)
  • ¥50 sft下载大文阻塞卡死
  • ¥15 机器人轨迹规划相关问题