我使用此代码将数据插入到 Couchbase
from couchbase import Couchbase
c = Couchbase.connect(host="remote-server.com", bucket="default")
c.set('first_key', 'first-_value')
但我得到了这个错误:
couchbase.exceptions.TimeoutError: <Key=u'first_key', RC=0x17[Operation timed out], Operational Error, Results=1, C Source=(src/multiresult.c,148)>
而且,我尝试了以下步骤:
我打印出 c(Couchbase 连接对象)
该对象已创建,因此它成功连接到 Couchbase 服务器?
- 我尝试在 8091 端口远程登录 remote-server.com,它也连接成功。
- 将超时连接增加到 30 秒。
但是,问题并没有得到解决。