如何使用连接池到 aerospike 服务器
How to use a connection pool to an aerospike server
我想使用 golang 连接到 aerospike 服务器
我无法获得任何提供此类选项的图书馆
redis 等的默认 golang 库有清晰的池示例。不确定为什么他们缺少 aerospike
你不需要。 aerospike 的 Go 客户端自动在内部汇集连接。
您只需对数据库创建一个 Client
并挂在该单个实例上,该对象将为您处理剩下的事情。您可以在 ClientPolicy
中设置一些变量来调整内部连接池。
我想使用 golang 连接到 aerospike 服务器
我无法获得任何提供此类选项的图书馆 redis 等的默认 golang 库有清晰的池示例。不确定为什么他们缺少 aerospike
你不需要。 aerospike 的 Go 客户端自动在内部汇集连接。
您只需对数据库创建一个 Client
并挂在该单个实例上,该对象将为您处理剩下的事情。您可以在 ClientPolicy
中设置一些变量来调整内部连接池。