bitstring
bitstring
By the way, I would like to know how the pid directory is specified when fdfs storaged 5.10 is started?
Hello! when I use `@startmindmap` syntax, it returns error. Do you have any plans to support it in the future? Or you just use `'aklt/plantuml-syntax'` to check syntax, need report...
* ``: some_very_long_and_complex_command # 后面作为注释,可以通过ctrl+r搜索到这个命令 * `iotop`: 查看io 的 top * `touch file{1,2,3,4,5}.sh` 同时操作多个文件 * `find ./ -type l`: -ls 找出所有符号链接文件 * `sudo tcpdump -i en1 -n -s 0 -w...
硬盘写到一半时,突然断电了怎么办?
* `cw`: 替换从光标所在位置后到一个单词结尾的字符 * `0` : 数字零,到行头 * `g_`: 到本行最后一个不是 blank 字符的位置。 * `e` : 到下一个单词的结尾。 * `.` : (小数点) 可以重复上一次的命令 * `%` : 匹配括号移动,包括 `(`, `{`, `[`. * `gU`:...
## 这篇文章需要一些 linux 内核内存管理子系统的前提知识准备 最近我们在生产环境遇到一个 OOM 的问题。我们的工程师发现,slab 缓存一直不断的在增加,但是 page cache 却在一直减少。通过进一步观察发现,消耗 slab 内存最多的是 dentry cache(怎么理解 dentry cache ?),dentry caches 通过一个 内存 cgroup 来补充。这看起来像是 linux kernel 内存回收器只会回收 page cache ,而不会回收 dentry...
1. Observability 2. Methodologies 3. Benchmarking 4. Profiling 5. Tracing 6. Tuning
Redis 拥有它自己的事件驱动模块,叫做 [ae.c](https://github.com/antirez/redis/blob/unstable/src/ae.c) 。想要理解 Redis 的事件模块最好的办法是弄懂 Redis 是如何调用这个模块的。 以 `epoll` 为例,从 Event Loop Initialization 说起。 redis 的 `initServer` 函数初始化了很多 redis 服务器的 struct 。其中一个 struct 叫做 `aeEventLoop *el` , 定义在 `ae.h`...