We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
现有的连接池要服务自己去获取连接和归还连接,这一步对服务而言有点多余,能不能将获取与归还的操作转移到具体命令函数中,让连接的使用对用户无感知?
The text was updated successfully, but these errors were encountered:
使用这个方式就可以了
if v, err := gossdb.Client().Get("a"); err == nil { println(v.String()) } else { println(err.Error()) }
Sorry, something went wrong.
好像是我使用的是v1.1.2版本的问题,但是使用go get无法拉取到v2.0版本,有点奇怪
No branches or pull requests
现有的连接池要服务自己去获取连接和归还连接,这一步对服务而言有点多余,能不能将获取与归还的操作转移到具体命令函数中,让连接的使用对用户无感知?
The text was updated successfully, but these errors were encountered: