Home > Database > Mysql Tutorial > 基于CouchDB的分布式部署---复制

基于CouchDB的分布式部署---复制

WBOY
Release: 2016-06-07 17:14:25
Original
1152 people have browsed it

基于CouchDB的分布式部署---复制,CouchDB对于实现分布式数据复制是非常容易的。

CouchDB对于实现分布式数据复制是非常容易的。

我们只需要发送POST请求到指定数据库的_replicate URL即可,请求的Body是一个JSON。

wiki.apache.org/couchdb/Replication

如果需要持续进行复制,只需要在JSON中加上参数"continuous":true即可。

 

另外,我们可以通过Futon的replicator工具直接在UI上操作。

:5984/_utils/replicator.html

 

譬如:

Replicate changes from: Local Database: testdb

To: Remote database : :5984/testdb

勾选Continuous后点击replicate按钮即可。

CouchDB 的详细介绍:请点这里
CouchDB 的下载地址:请点这里

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template