本文整理匯總了Golang中github.com/flike/kingshard/backend.Node.GetMasterConn方法的典型用法代碼示例。如果您正苦於以下問題:Golang Node.GetMasterConn方法的具體用法?Golang Node.GetMasterConn怎麽用?Golang Node.GetMasterConn使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/flike/kingshard/backend.Node
的用法示例。
在下文中一共展示了Node.GetMasterConn方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: getBackendConn
func (c *ClientConn) getBackendConn(n *backend.Node, fromSlave bool) (co *backend.BackendConn, err error) {
if !c.isInTransaction() {
if fromSlave {
co, err = n.GetSlaveConn()
if err != nil {
co, err = n.GetMasterConn()
}
} else {
co, err = n.GetMasterConn()
}
if err != nil {
golog.Error("server", "getBackendConn", err.Error(), 0)
return
}
} else {
var ok bool
co, ok = c.txConns[n]
if !ok {
if co, err = n.GetMasterConn(); err != nil {
return
}
if !c.isAutoCommit() {
if err = co.SetAutoCommit(0); err != nil {
return
}
} else {
if err = co.Begin(); err != nil {
return
}
}
c.txConns[n] = co
}
}
if err = co.UseDB(c.db); err != nil {
//reset the database to null
c.db = ""
return
}
if err = co.SetCharset(c.charset, c.collation); err != nil {
return
}
return
}
示例2: getBackendConn
func (c *ClientConn) getBackendConn(n *backend.Node, fromSlave bool) (co *backend.BackendConn, err error) {
if !c.needBeginTx() {
if fromSlave {
co, err = n.GetSlaveConn()
if err != nil {
co, err = n.GetMasterConn()
}
} else {
co, err = n.GetMasterConn()
}
if err != nil {
golog.Error("server", "getBackendConn", err.Error(), 0)
return
}
} else {
var ok bool
c.Lock()
co, ok = c.txConns[n]
c.Unlock()
if !ok {
if co, err = n.GetMasterConn(); err != nil {
return
}
if err = co.Begin(); err != nil {
return
}
c.Lock()
c.txConns[n] = co
c.Unlock()
}
}
//todo, set conn charset, etc...
if err = co.UseDB(c.db); err != nil {
return
}
if err = co.SetCharset(c.charset); err != nil {
return
}
return
}