会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Toggle navigation
stdpain
博客园
联系
Submit
订阅
管理
管理面板
随笔
stdpain
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
···
19
下一页
2023年2月18日
磁盘 IO 读写测试
摘要: [root@linuxcool ~]# fio -filename=linuxcool -direct=1 -iodepth 1 -thread -rw=read -ioengine=psync -bs=16k -size=10G -numjobs=10 -runtime=100 -group_re
阅读全文
posted @ 2023-02-18 12:01 stdpain
阅读(42)
评论(0)
推荐(0)
2022年12月8日
awk 常用命令
摘要: awk '{if(min==""){min=max=$5}; if($5>max) {max=$5}; if($5<min) {min=$5}; total+=$5; count+=1} END {print "avg " total/count," | max "max," | min " min
阅读全文
posted @ 2022-12-08 15:48 stdpain
阅读(33)
评论(0)
推荐(0)
2022年9月16日
ASAN coredump with crash
摘要: export ASAN_OPTIONS=abort_on_error=1:disable_coredump=0:unmap_shadow_on_exit=1 https://stackoverflow.com/questions/42851670/how-to-generate-core-dump-
阅读全文
posted @ 2022-09-16 20:54 stdpain
阅读(264)
评论(0)
推荐(0)
延迟物化
摘要: 物化我的理解就是获取某一个结果(或是这中间结果) 比如我有一个表 table: k1,k2,v1,v2,v3 如果我执行一个简单的SQL select k1,k2 from table 如果我们的数据存储格式是按列组织的(列存),那么我们只需要物化k1,k2 (只需要扫描k1,k2所在的列),而v1
阅读全文
posted @ 2022-09-16 20:47 stdpain
阅读(506)
评论(0)
推荐(0)
2022年8月19日
debug inline function
摘要: https://stackoverflow.com/questions/22029834/possible-to-call-inline-functions-in-gdb-and-or-emit-them-using-gcc
阅读全文
posted @ 2022-08-19 14:20 stdpain
阅读(30)
评论(0)
推荐(0)
2022年7月31日
cpu bench
摘要: g++ -O3 bench.cpp ``` // https://stackoverflow.com/questions/40950254/speed-up-random-memory-access-using-prefetch #include #include #include #include
阅读全文
posted @ 2022-07-31 20:44 stdpain
阅读(553)
评论(0)
推荐(0)
2022年7月29日
bfd
摘要: apt-get install binutils-dev yum install binutils-devel
阅读全文
posted @ 2022-07-29 15:22 stdpain
阅读(57)
评论(0)
推荐(0)
2022年7月9日
maven mirror
摘要: https://developer.aliyun.com/mirror/maven?spm=a2c6h.13651102.0.0.7be81b11Z03b5j <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="ht
阅读全文
posted @ 2022-07-09 17:35 stdpain
阅读(62)
评论(0)
推荐(0)
2022年6月1日
Learn
摘要: Umbra: A Disk-Based System with In-Memory Performance http://db.in.tum.de/~freitag/papers/p29-neumann-cidr20.pdf TOWARDS PRACTICAL VECTORIZED ANALYTIC
阅读全文
posted @ 2022-06-01 19:34 stdpain
阅读(33)
评论(0)
推荐(0)
2022年5月31日
gdb print vtable
摘要: ((void***)0x60600053b770)[0]
阅读全文
posted @ 2022-05-31 10:17 stdpain
阅读(35)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
19
下一页
公告
Copyright © 2021 stdpain
Powered by .NET 5.0 on Kubernetes