seefan / gossdb

ssdb client for go with pool surport
MIT License
131 stars 47 forks source link

请问如何设置NewPool()这个函数的超时时间? #39

Closed mitiger closed 7 years ago

mitiger commented 7 years ago

NewPool()这个函数的超时如何设置? 我尝试设置GetClientTimeout 这个变量,好像丝毫没有效果

seefan commented 7 years ago

NewPool()这个函数没有超时。 GetClientTimeout只是在获取连接时有用,超过这个时间获取不到连接就返回error。 至于连接ssdb的超时时间目前用的是默认的。

请确认一下,你希望的是哪个超时

mitiger commented 7 years ago

我希望用NewPool这个超时, 因为如果我配置文件里面配置的IP写错了, 就会阻塞好久, 不太好

seefan commented 7 years ago

目前还没有这个设置,我看看怎么加

seefan commented 7 years ago

已解决