上一页 1 2 3 4 5 6 7 ··· 47 下一页
摘要: https://stackoverflow.com/questions/9354022/inno-db-isolation-levels-and-locking 阅读全文
posted @ 2022-12-28 10:25 bf378 阅读(79) 评论(0) 推荐(0)
摘要: show create table user_info_merge_tree_dt; CREATE TABLE default.user_info_merge_tree_dt ( `id` Int64, `name` String, `dt` Date ) ENGINE = ReplacingMer 阅读全文
posted @ 2022-12-16 21:41 bf378 阅读(388) 评论(0) 推荐(0)
摘要: 对于一个数据库表column 例如长度name varchar(8) 当用insert长度超过8的时候一般会报错,但有时候也会阶段报错。那具体跟什么有关系呢? 其实就是sql_mode的配置有关,具体结论如下: 1、sql_mode如果有STRICT_TRANS_TABLES这个配置项则会严格控制长 阅读全文
posted @ 2022-11-18 19:12 bf378 阅读(1413) 评论(0) 推荐(0)
摘要: The Request Payload - or to be more precise: payload body of a HTTP Request is the data normally send by a POST or PUT Request. It's the part after th 阅读全文
posted @ 2022-11-15 16:11 bf378 阅读(221) 评论(0) 推荐(0)
摘要: mysql> CREATE TABLE jemp ( -> c JSON, -> g INT GENERATED ALWAYS AS (c->"$.id"), -> INDEX i (g) -> ); Query OK, 0 rows affected (0.28 sec) mysql> INSER 阅读全文
posted @ 2022-04-24 16:15 bf378 阅读(43) 评论(0) 推荐(0)
摘要: 参见:https://www.visual-paradigm.com/guide/uml-unified-modeling-language/uml-aggregation-vs-composition/ https://www.iteye.com/blog/stark-summer-981076 阅读全文
posted @ 2022-03-14 10:20 bf378 阅读(112) 评论(0) 推荐(0)
摘要: 1:Header是一个固定长度的Byte数组,具体数据结构参考IndexHeader实现 2:Slot是一块连续Byte数组用于存储Key/Value存储结构,其中Key是一个hash(key),Value是当前元素是第一个索引(也就是当前索引的序号),存储序号目的是便于检索,后面会详细描述。 3: 阅读全文
posted @ 2022-03-08 21:00 bf378 阅读(67) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2021-10-09 12:01 bf378 阅读(0) 评论(0) 推荐(0)
摘要: public class JavaBoxCost { public static void main(String[] args) { long start = System.currentTimeMillis(); for (int i = 0; i < Integer.MAX_VALUE - 1 阅读全文
posted @ 2021-09-16 21:55 bf378 阅读(97) 评论(1) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2021-09-05 17:54 bf378 阅读(0) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 47 下一页