摘要: 命令行输入如下 touch foo echo hello > foo strace cat foo 出现以下信息 ... openat(AT_FDCWD, "foo", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=6, ...}) = 阅读全文
posted @ 2022-05-14 16:38 herrhu 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 使用一级缓存模拟Spring解决循环依赖 代码 import java.lang.reflect.Field; import java.util.HashMap; import java.util.Map; /** * 模拟使用一级缓存来解决Spring中的循环依赖问题 */ public clas 阅读全文
posted @ 2021-12-13 13:38 herrhu 阅读(196) 评论(0) 推荐(0) 编辑
摘要: Tools My Environment ❯ uname -a Linux VM-4-11-ubuntu 5.4.0-77-generic #86-Ubuntu SMP Thu Jun 17 02:35:03 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux Insta 阅读全文
posted @ 2021-11-13 12:32 herrhu 阅读(45) 评论(0) 推荐(0) 编辑
摘要: basic compile procedure app: add.c div.c main.c mult.c sub.c gcc -o app add.c div.c main.c mult.c sub.c split into compile and link procedures app: ad 阅读全文
posted @ 2021-11-06 12:24 herrhu 阅读(52) 评论(0) 推荐(1) 编辑
摘要: 环境:Ubuntu 20.04 使用zsh sudo apt-get install zsh sudo chsh -s $(which zsh) 安装oh-my-zsh sh -c "$(wget -O- https://gitee.com/mirrors/oh-my-zsh/raw/master/ 阅读全文
posted @ 2021-11-06 11:17 herrhu 阅读(87) 评论(0) 推荐(1) 编辑
摘要: 由于新接了所里的项目,要接入内网,同时又想要链接到外网。采用WIFI+LAN的方式,用LAN进入内网,用WIFI链接外网。 参考 https://docs.freebsd.org/doc/6.0-RELEASE/usr/share/doc/handbook/network-routing.html 阅读全文
posted @ 2021-09-21 19:51 herrhu 阅读(1809) 评论(0) 推荐(0) 编辑
摘要: 一、安装MongoDB MonggoDB的官网安装方法目前并没有docker的使用方法,但是在Docker hub却有官方制作的镜像让人迷惑不解。 在以下两个网站中: MongoDB安装文档:https://docs.mongodb.com/manual/administration/install 阅读全文
posted @ 2021-07-27 00:55 herrhu 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 环境:centos7、go1.15 在github上拉取源代码 不用在意版本问题,个人是fork到自己的仓库中了 (base) [root@VM-15-185-centos /src]# git clone https://github.com/coderhu1024/go.git Cloning 阅读全文
posted @ 2021-05-17 20:13 herrhu 阅读(249) 评论(1) 推荐(0) 编辑
摘要: 参考 https://tech.meituan.com/2019/12/05/aqs-theory-and-apply.html https://blog.csdn.net/qq_29373285/article/details/85164190 java提供了两种方式来加锁,一种是关键字:sync 阅读全文
posted @ 2021-04-09 17:17 herrhu 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 简单使用AtomicInteger 首先贴出以下的代码,简单的使用AtomicInteger这个类来实现+1的操作。 import java.util.concurrent.atomic.AtomicInteger; public class CASTest { public static void 阅读全文
posted @ 2021-04-09 00:15 herrhu 阅读(2148) 评论(0) 推荐(0) 编辑