1 回答
TA贡献1835条经验 获得超7个赞
在这个任务中,我通过 mongo-go-driver 代码库学到了一些东西,我认为在结束这个问题之前我应该与世界分享这些东西。如果我错了 - 请纠正我。
Connect()
如果您想利用连接池,则不应一遍又一遍地调用。看起来每次调用 Connect() 时都会创建一个新套接字。defer Close()
这意味着随着时间的推移,除非您每次都手动进行操作,否则存在套接字耗尽的风险。
All()
在 mongo-go-driver 中,当您调用执行查询时(例如),会话会在幕后自动处理。您可以*显式地创建和拆除会话,但您不能使用我上面提出的单例方法来使用它,而不必更改所有调用方函数。这是因为您无法再在会话上调用查询操作,而是必须在数据库操作本身上使用 WithSession 函数来使用它
我意识到writeconcern
,readpref
和readconcern
都可以设置为:
客户端级别(如果不覆盖,这些是所有内容都将使用的默认值)
会话级别
数据库级
查询级别
所以我所做的是创建数据库选项并重载 *mongo.Database 例如:
// Database is a meta-helper that allows us to wrap and overload
// the standard *mongo.Database type
type Database struct {
*mongo.Database
}
// NewEventualConnection returns a new instantiated Connection
// to the DB using the 'Nearest' read preference.
// Per https://github.com/go-mgo/mgo/blob/v2/session.go#L61
// Eventual is the same as Nearest, but may change servers between reads.
// Nearest: The driver reads from a member whose network latency falls within
// the acceptable latency window. Reads in the nearest mode do not consider
// whether a member is a primary or secondary when routing read operations;
// primaries and secondaries are treated equivalently.
func NewEventualConnection() (conn *Connection, success bool) {
conn = &Connection{
client: baseConnection.client,
dbOptions: options.Database().
SetReadConcern(readconcern.Local()).
SetReadPreference(readpref.Nearest()).
SetWriteConcern(writeconcern.New(
writeconcern.W(1))),
}
return conn, true
}
// GetDB returns an overloaded Database object
func (conn Connection) GetDB(dbname string) *Database {
dbByName := &Database{conn.client.Database(dbname, conn.dbOptions)}
}
这使我能够利用连接池并保持与我们的代码库的向后兼容性。希望这对其他人有帮助。
- 1 回答
- 0 关注
- 122 浏览
添加回答
举报