摘要:
常规备份 1 导出一个数据库的结构 mysqldump d dbname uroot p dbname.sql 2 导出多个数据库的结构 mysqldump d B dbname1 dbname2 uroot p dbname.sql 3 导出一个数据库中数据(不包含结构) mysqldump t 阅读全文
摘要:
索引操作 // Index maps the indexed value to a set of keys in the store that match on that value type Index map[string]sets.String // Indexers maps a name 阅读全文