几分钟后 PouchDB over HTTP 因不活动而断开连接?
PouchDB over HTTP disconnects on inactivity after some minutes?
我正在尝试创建一个应用程序,它使用 PouchDB 作为服务器上 CouchDB 运行 的适配器。
问题:几分钟不活动后,我在尝试再次访问数据库时收到以下错误:
{
"error": "unauthorized",
"reason": "You are not authorized to access this db.",
"status": 401,
"name": "unauthorized",
"message": "You are not authorized to access this db.",
"docId": "category:aktien"
}
我的感觉是,Pouch 和 Couch 之间的 HTTP 连接超时...我该怎么办?
我找不到通知我超时的“信号”,所以我可以重新连接。有吗?
此致,
托拜厄斯
在 CouchDB 的设置中,您可以设置会话超时...默认为 10 分钟(600 秒)。
我正在尝试创建一个应用程序,它使用 PouchDB 作为服务器上 CouchDB 运行 的适配器。
问题:几分钟不活动后,我在尝试再次访问数据库时收到以下错误:
{
"error": "unauthorized",
"reason": "You are not authorized to access this db.",
"status": 401,
"name": "unauthorized",
"message": "You are not authorized to access this db.",
"docId": "category:aktien"
}
我的感觉是,Pouch 和 Couch 之间的 HTTP 连接超时...我该怎么办?
我找不到通知我超时的“信号”,所以我可以重新连接。有吗?
此致, 托拜厄斯
在 CouchDB 的设置中,您可以设置会话超时...默认为 10 分钟(600 秒)。