*你*如何使用auto_increment_increment?
回复:MySQL的全局配置选项 auto_increment_increment 。
之外
- 除了与 结合使用的多主/循环复制 auto_increment_offset
- 当用户/对象 ID 对最终用户可见时,人为地“增强”统计信息
您在实践中如何/为何看到 auto_increment_increment
使用?
Re: MySQL's global configuration option auto_increment_increment.
Other than
- multi-master/circular replication in conjunction with auto_increment_offset
- artificially "beefing up" stats when user/object id's are visible to the end users
How/Why have you seen auto_increment_increment
used in practice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它只是提供控制,它没有被广泛使用,如果我需要像这样的键 10、20、30 等,它会允许
所以我可以在这些记录之间插入记录,就像现在我可以插入 11,12,13 条记录( 稍后)在 10 到 20 之间,这在极少数情况下可能会有所帮助
It just provide control, it's not used widely, it will allow if i need keys to be like this 10, 20, 30, etc
So i can insert records in between those records, like now i can insert 11,12,13 records (later) in between 10 and 20, which might be helpful in rarest case