Aaron2932

导航

2022年9月3日 #

编译错误解决方法

摘要: 头文件缺少 系统库文件,直接到该网站查找 https://man7.org/linux/man-pages/man3/memset.3.html 阅读全文

posted @ 2022-09-03 22:54 Aaron2932 阅读(175) 评论(0) 推荐(0) 编辑

gogo使用

摘要: gogo https://zhuanlan.zhihu.com/p/362436742 https://zhuanlan.zhihu.com/p/361737524 $ go get github.com/gogo/protobuf/proto $ go get github.com/gogo/pr 阅读全文

posted @ 2022-09-03 15:27 Aaron2932 阅读(252) 评论(0) 推荐(0) 编辑

redis源码学习

摘要: 前言 阅读全文

posted @ 2022-09-03 15:26 Aaron2932 阅读(10) 评论(0) 推荐(0) 编辑

lldb

摘要: lldb main.c #include<stdio.h> int add(int n){ int i, sum=0; for (i=0;i<n;i++){ sum += i; } return sum; } int main(){ int b = 100; int c = add(b); prin 阅读全文

posted @ 2022-09-03 15:24 Aaron2932 阅读(108) 评论(0) 推荐(0) 编辑

字符串算法

摘要: manacher 阅读全文

posted @ 2022-09-03 15:23 Aaron2932 阅读(4) 评论(0) 推荐(0) 编辑

修改远端仓库地址

摘要: git操作 git修改远端仓库地址 **git修改远程仓库地址 **方法有三种: 1.修改命令 git remote origin set-url [url] 2.先删后加 git remote rm origin git remote add origin [url] 3.直接修改config文件 阅读全文

posted @ 2022-09-03 15:22 Aaron2932 阅读(19) 评论(0) 推荐(0) 编辑

proto工具使用

摘要: 前言 protocol buffer 是我们使用的代码。 工具使用 参考 https://developers.google.com/protocol-buffers/docs/proto3#any 阅读全文

posted @ 2022-09-03 15:19 Aaron2932 阅读(53) 评论(0) 推荐(0) 编辑

linux绑核

摘要: 前言 绑定核心 c语言绑核 脚本绑核 taskset -pc xx 阅读全文

posted @ 2022-09-03 15:18 Aaron2932 阅读(29) 评论(0) 推荐(0) 编辑

如何进行c语言性能调优

摘要: 前言 perf工具 阅读全文

posted @ 2022-09-03 15:17 Aaron2932 阅读(17) 评论(0) 推荐(0) 编辑

如何进行性能调优-golang

摘要: 前言 内存 cpu占用 docker镜像占用 docker load -I xx.tar.gz dive xxx 阅读全文

posted @ 2022-09-03 15:16 Aaron2932 阅读(15) 评论(0) 推荐(0) 编辑

gdb常用命令

摘要: 前言 gdb是什么?是一个用来调试的工具,gcc用来编译,gdb用来调试,调试的对象需要带符号表 常用命令 list gdb attach $pid b xxx 阅读全文

posted @ 2022-09-03 15:15 Aaron2932 阅读(20) 评论(0) 推荐(0) 编辑