颤振连接到沙发底座
connection to couchbase with flutter
我是 Flutter 和 Couchbase 的新手,正在尝试使用 fluttercouch plugin, but getting error "unable to set target endpoint to ws//10.0.2.2:8091/travel-sample"
for setting endpoint as ws//10.0.2.2:8091/travel-sample
. Could some one explain to me what will be the endpoint for me and are there any changes needed else where. I am trying to test the server on the master repository of fluttercouch plugin. Here is the main.dart and bucket 概述连接到样本桶旅行样本。
主要的混淆点是您试图将 fluttercouch 插件直接连接到 Couchbase 服务器,它是为在移动设备上运行的 Couchbase Lite 设计的。我没有足够的 flutter 经验来告诉你那个端点应该是什么,但看起来你现在的目标是错误的。
Couchbase Lite(FlutterCouch 实现的底层库)无法直接与 Couchbase Server 同步。必须使用下一个说明部署 Couchbase 同步网关,以允许在服务器和移动数据库之间进行同步:
"enable_shared_bucket_access": true,
"import_docs": "continuous",
您可以在 Couchbase 文档中找到有关 Couchbase Sync Gateway 的更多文档。
我是 Flutter 和 Couchbase 的新手,正在尝试使用 fluttercouch plugin, but getting error "unable to set target endpoint to ws//10.0.2.2:8091/travel-sample"
for setting endpoint as ws//10.0.2.2:8091/travel-sample
. Could some one explain to me what will be the endpoint for me and are there any changes needed else where. I am trying to test the server on the master repository of fluttercouch plugin. Here is the main.dart and bucket 概述连接到样本桶旅行样本。
主要的混淆点是您试图将 fluttercouch 插件直接连接到 Couchbase 服务器,它是为在移动设备上运行的 Couchbase Lite 设计的。我没有足够的 flutter 经验来告诉你那个端点应该是什么,但看起来你现在的目标是错误的。
Couchbase Lite(FlutterCouch 实现的底层库)无法直接与 Couchbase Server 同步。必须使用下一个说明部署 Couchbase 同步网关,以允许在服务器和移动数据库之间进行同步:
"enable_shared_bucket_access": true,
"import_docs": "continuous",
您可以在 Couchbase 文档中找到有关 Couchbase Sync Gateway 的更多文档。