摘要: 算法 压缩速度 解压速度 压缩比 典型应用场景 LZ4 非常快 非常快 较低 实时数据压缩、日志文件、缓存压缩 ZIP (Deflate) 中等 中等 中等 文件归档、跨平台传输 Zstandard 较快(可调) 快 高 数据备份、大数据压缩、日志备份 GZIP (Deflate) 中等 中等 较高 阅读全文
posted @ 2024-11-12 20:05 GreeneGe 阅读(278) 评论(0) 推荐(0) 编辑
摘要: Restic 一、简介 Restic是基于Go语言开发的开源备份工具,使用BSD-2-Clause开源协议。 它的核心理念是提供安全、快速、可验证的备份。其架构设计遵循了简单和高效的原则,主要由以下几个核心组件构成: 存储后端 Restic 支持多种存储后端,包括本地文件系统、SFTP、Amazon 阅读全文
posted @ 2024-08-22 20:30 GreeneGe 阅读(316) 评论(0) 推荐(0) 编辑
摘要: FROM mysql:8.0.28-debian RUN apt-get update \ && apt-get install -y wget openssh-server \ && wget https://downloads.percona.com/downloads/Percona-Xtra 阅读全文
posted @ 2023-11-14 00:15 GreeneGe 阅读(29) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash MYSQL_TAR_FILE="mysql-8.0.32-linux-glibc2.17-x86_64-minimal.tar.xz" MYSQL_DIR="mysql-8.0.32-linux-glibc2.17-x86_64-minimal" MYSQL_INSTALL_ 阅读全文
posted @ 2023-07-14 21:40 GreeneGe 阅读(448) 评论(0) 推荐(0) 编辑
摘要: Powershell无法执行脚本 Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser 阅读全文
posted @ 2023-01-11 22:34 GreeneGe 阅读(17) 评论(0) 推荐(0) 编辑
摘要: sudo dnf install mkfontdir curl -sLf https://spacevim.org/install.sh | bash neovim替代vim ln -s ~/.vim ~/.config/nvim ln -s ~/.vimrc ~/.config/nvim/init 阅读全文
posted @ 2023-01-11 20:20 GreeneGe 阅读(94) 评论(0) 推荐(0) 编辑
摘要: nginx.conf worker_processes 8; error_log logs/ info; events { worker_connections 2048; } http { include mime.types; default_type application/octet-str 阅读全文
posted @ 2023-01-11 20:19 GreeneGe 阅读(50) 评论(0) 推荐(0) 编辑
摘要: { // "editor.fontFamily": "Fira Code", // "editor.fontFamily": "Consolas", "editor.fontFamily": "Cascadia Code SemiLight", "editor.fontLigatures": tru 阅读全文
posted @ 2023-01-04 21:20 GreeneGe 阅读(19) 评论(0) 推荐(0) 编辑
摘要: mongodb docker run -d \ --name mongodb \ --restart always \ -e MONGO_INITDB_ROOT_USERNAME=mongoadmin \ -e MONGO_INITDB_ROOT_PASSWORD=123456 \ -p 27017 阅读全文
posted @ 2023-01-02 20:00 GreeneGe 阅读(36) 评论(0) 推荐(0) 编辑
摘要: executor 执行者 deprecated 荒废的 阅读全文
posted @ 2022-10-27 07:53 GreeneGe 阅读(30) 评论(0) 推荐(0) 编辑

https://github.com/Glf9832