查询原理 执行查询 gorm.io/gorm/callbacks/query.go::Query(db *gorm.DB) 扫描结果集 gorm.io/gorm/scan.go::Scan(rows *sql.Rows, db *DB, initialized bool) 扫描结果集的过程 取出结果集的所有字段 根据 Find() 时传入的引用判断存放的容器。比如用 map[string]
LVM(Logical Volume Manager) 快照机制 快照指的是在创建完快照后,快照里的数据不再发生改变。就算原始数据发生变化,读取快照的数据仍然
比较通用的一种方式 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 { "date" : "2020-11-05 00:00:00.000", "domain": "test.com", "data": { "00:00" : { "ts": 1604505600, "bandwidth": 111.222, "cost": 333.444 }, "00:01" : { "ts": 1604505660, "bandwidth": 555.666, "cost": 777.888 } } } 查询支持按五分钟合并: 1 2 3
子进程 通过 Shell 执行: 1 2 3 4 5 # -*- coding: utf-8 -*- from subprocess import Popen, PIPE p = Popen(["echo '1+1' | bc"], shell=True, stdout=PIPE, stderr=PIPE) stdout, stderr = p.communicate() print(stdout, stderr) 不通过 Shell 执行: 1 2 3 4 5 6 7 8 9 # -*- coding: utf-8 -*- from subprocess import Popen, PIPE p1 = Popen(["echo", "1+1"], shell=False,
守护线程: 用于服务用户线程的线程。进程在终止时,不会考虑守护线程的状态。因为如果被服务的线程已经结束,则守护线程没有存在的意义。 用户线程: 进
https://shardingsphere.apache.org/document/current/cn/features/sharding/principle/merge/