1

我有以下用例:

我想在服务器上使用 Couchbase 来存储数据,并在移动设备上使用 Couchbase for Android。我想使用 Couchbase 同步来在线和离线处理数据并最终同步。但我不希望不同的客户端将所有数据同步到设备上,只是一个特定的子集。客户端应该同步哪个子集,应该由客户端控制,并且应该动态更改。

Couchbase 是否能够处理这种情况?如果,你能给我一些关于匹配文件的提示吗?

4

2 回答 2

1

Couchbase can not do this. More importantly I can't think of any solution that would. Couchbase is a clustered nosql solution. Others are caching solutions or databases. They store data. The logic of syncing the data between different stores and the syncing of sub-sets of data would have to be done within your application.

于 2012-10-06T15:42:16.187 回答
0

Sync Gateway 现在处理允许用户访问频道的逻辑,然后根据每个文档所属的频道包含数据子集。

http://docs.couchbase.com/sync-gateway/#channels

于 2014-06-13T01:05:51.917 回答