DCjanus

Results 47 comments of DCjanus

is there any exmaple for path_pattern?I'm not sure how to use it

Hi, after so many days, finally I found the root cause. In my case, my service would create and drop Browser again and agin, and without `waitpid`, there would be...

This how I fix my problem: ```Rust #[cfg(target_family = "unix")] unsafe { nix::sys::signal::signal( nix::sys::signal::Signal::SIGCHLD, nix::sys::signal::SigHandler::SigIgn, ) .expect("set SIGCHLD to SIG_IGN"); } ```

奥姆这个翻译似乎不是很常见,或许可以放在`数据库`部分

I was trying to add feature flag `avif-decode` in viuer, but it's hard to build on my MacBook. ```diff diff --git a/Cargo.toml b/Cargo.toml index ebea519..1bf06bb 100644 --- a/Cargo.toml +++ b/Cargo.toml...

The difficulty of this matter lies in the fact that the upstream RocksDB does not expose SstFileReader in its C API, which means that we must modify the upstream RocksDB.

目前该镜像的index部分托管在阿里云的Git托管平台,由于长期的超量使用,可能被阿里云标记为了恶意使用者,目前项目clone速度被极大限制。目前在不经常删除`{CARGO_HOME}/registry/index`的情况下,勉强可以使用。 后期可能迁移到其他的Git托管平台,届时可能需要修改registry的URL。 目前在寻找合适的平台。

一两个小时前,源下载域名频繁出现SSL错误,看起来是被某不可抗力因素误伤了,正在切换到HTTP。

目前确认是因为备案相关问题,被阿里云封禁了外部的HTTP访问,短期内可能没有比较好的办法解决。 建议切换到国内其他镜像,相关配置见: https://github.com/rustcc/RustFAQ#%E5%9C%A8%E4%B8%AD%E5%9B%BD%E5%A4%A7%E9%99%86cargo%E5%91%BD%E4%BB%A4%E9%80%9F%E5%BA%A6%E5%BE%88%E6%85%A2%E6%80%8E%E4%B9%88%E5%8A%9E ![图片](https://user-images.githubusercontent.com/15802727/71412596-60862300-2689-11ea-8615-f95d0a754aa7.png)

因为一些原因,部署了自动构建到七牛云,会在每次master分支发生变化时自动触发构建,且只维护最新版本,拉取对应镜像的命令是 ```bash docker pull reg.qiniu.com/dcjanus/lernaean:latest ``` 暂时保留该issue提醒自己将来补充文档。