作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我设置了 2 个 MYSQL 服务器:
my.cnf server1:
auto_increment_increment = 2
auto_increment_offset = 1
my.cnf server2:
auto_increment_increment = 2
auto_increment_offset = 2
但是当我从不同的服务器上一条一条地插入记录 10 次时:
INSERT INTO `table1` (`id`, `text`) VALUES (NULL, '22222');
结果:
id text
1 22222
2 22222
5 22222
6 22222
9 22222
...
但我想:
id text
1 22222
2 22222
3 22222
4 22222
5 22222
...
有可能吗?
最佳答案
部分原因可能是因为插入是从单独的 session 中调用的。使用 auto_increment_increment = 2,我猜你可能不会得到你想要的结果。您是否尝试将 auto_increment_increment 和 auto_increment_offset 都设置为 1?
关于mysql - Master-Master 复制 auto_increment_offset,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18941096/
我以 root 身份运行命令: set @@auto_increment_offset = 2; 但是从其他连接看不到效果。为什么不?它是全局性的。 来自 http://dev.mysql.com/d
我设置了 2 个 MYSQL 服务器: my.cnf server1: auto_increment_increment = 2 auto_increment_offset = 1 my.cnf se
是否可以为每个数据库或每个表设置 mysql auto_increment_offset 和 auto_increment_increment? 最佳答案 它的数据库不是每个表。 如果设置了 auto
我是一名优秀的程序员,十分优秀!