上一页 1 2 3 4 5 6 ··· 47 下一页
摘要: git merge-base [-a | --all] <commit> <commit>…​ git merge-base [-a | --all] --octopus <commit>…​ git merge-base --is-ancestor <commit> <commit> git me 阅读全文
posted @ 2023-04-19 21:31 bf378 阅读(170) 评论(0) 推荐(0)
摘要: 参考:https://stackoverflow.com/questions/5120038/is-it-possible-to-cherry-pick-a-commit-from-another-git-repository 阅读全文
posted @ 2023-04-19 13:19 bf378 阅读(38) 评论(0) 推荐(0)
摘要: 一致性读 一致性读意味着InnoDB使用多版本技术在某个时间点使用该时间点的快照进行一致性读;默认可重复读隔离级别,当前事务只能看到在当下时间点之前提交事务产生的变化,时间点之后的变化无法感知到。 阅读全文
posted @ 2023-02-02 16:49 bf378 阅读(21) 评论(0) 推荐(0)
摘要: TODO https://dev.mysql.com/doc/refman/8.0/en/innodb-auto-increment-handling.html 阅读全文
posted @ 2023-01-13 19:32 bf378 阅读(18) 评论(0) 推荐(0)
摘要: 建表语句 create table user_info_replace ( id bigint unsigned auto_increment primary key, user_name varchar(32) not null, age smallint default 0 null, addr 阅读全文
posted @ 2023-01-13 19:21 bf378 阅读(468) 评论(0) 推荐(0)
摘要: https://dev.mysql.com/doc/refman/8.0/en/replace.html 阅读全文
posted @ 2023-01-13 18:48 bf378 阅读(51) 评论(0) 推荐(0)
摘要: https://www.alibabacloud.com/blog/improving-redis-performance-through-multi-thread-processing_594150 阅读全文
posted @ 2023-01-13 15:01 bf378 阅读(17) 评论(0) 推荐(0)
摘要: 使用参数:--no-ensure-ascii cat job_config.json | python -m json.tool --no-ensure-ascii > job_config_format.json 具体查询本机:/usr/XXXXX/pythonXXXXX/json/tool.py 阅读全文
posted @ 2023-01-06 12:23 bf378 阅读(621) 评论(0) 推荐(0)
摘要: MySQL基础属性查询 查询事务提交机制 mysql> select @@autocommit ; + + | @@autocommit | + + | 0 | + + 1 row in set (0.00 sec) 0 是手动提交,1是自动提交。 事务隔离级别(默认是可重复读) mysql> se 阅读全文
posted @ 2022-12-30 20:44 bf378 阅读(296) 评论(0) 推荐(0)
摘要: 查询: show variables like '%group_concat_max%' ; 或者 select @@group_concat_max_len ; 设置: set session group_concat_max_len = 10240; 参见:https://stackoverfl 阅读全文
posted @ 2022-12-29 15:55 bf378 阅读(633) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 47 下一页