1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-24 04:22:22 +00:00

update dse

This commit is contained in:
Xargin 2018-07-19 15:59:07 +08:00
parent bdbd405e6b
commit 0686428de3

View File

@ -275,4 +275,11 @@ SQL 的 where 部分就是 boolean expression。我们之前提到过这种 b
## 异构数据同步
TODO
在实际应用中,我们很少直接向搜索引擎中写入数据。更为常见的方式是,将 MySQL 或其它关系型数据中的数据同步到搜索引擎中。而搜索引擎的使用方只能对数据进行查询,无法进行修改和删除。
常见的同步方案有两种:
### 通过时间戳进行增量数据同步
### 通过 binlog 进行数据同步