首页
苦瓜小仔
取消

处理后台程序

https://www.baeldung.com/linux/output-process-another-session#using-strace https://www.baeldung.com/linux/attach-terminal-detached-process https://blog.csdn.net/whuzm08/article/details/104002415 ...

Rust RFC2094:NLL

Feature Name: nll Start Date: 2017-08-02 RFC PR: rust-lang/rfcs#2094 Rust Issue: rust-lang/rust#43234 原文:RFC 2094: NLL 摘要 扩展 Rust 的借用系统以支持非词法生命周期 (non-lexical lifetimes) —— 这些生命周期基...

clickhouse 禁用自动重启

clickhouse 的 GC 比较明显,每隔一段时间总是带来 CPU 峰值(目测是几秒钟一次),由于仅在需要的使用它, 不需要后台常驻,所以使用 clickhouse stop 关闭。 $ clickhouse stop /var/run/clickhouse-server/clickhouse-server.pid file exists and contains pid = 1653...

clickhouse 从 22.4 更新到 23.2

clickhouse 是一个开源的列式数据库,这两天在云服务器上对它进行了更新,记录一些问题和解决方式。 安装问题 根据文档 install 章节,以前的 deb 更新方式已经不行(距离上次更新已经过去十个月了): 官网推荐的迁移方式 无论按照迁移方式还是新的安装方式,都出现以下 404 问题: ~ $ apt-get install -y clickhouse-server c...

nvim 技巧之 quickfix 与文本处理

大部分内容整理自:Advanced Vim topics, tips and tricks (by Mark McDonnell) global 命令 功能 :global/pattern/excmd 对满足 pattern 的行文本进行 excmd 操作 ...