From 643a06433fe7ba50c42a541c967c54f7b9f51a51 Mon Sep 17 00:00:00 2001 From: Aoran Zeng Date: Fri, 15 Sep 2023 14:35:44 +0800 Subject: [PATCH] Reorder ruby sources --- sources.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/sources.h b/sources.h index 08c2625..a33d97b 100644 --- a/sources.h +++ b/sources.h @@ -132,19 +132,24 @@ typedef struct { /** - * 2023-09-02 更新 + * 2023-09-15 更新 * - * @note 目前北外最快,Ruby China 的源慢了一半 + * @note + * 1. 目前北外最快最稳定 + * 2. 腾讯挺快,个别时候不稳定,但稳定时能达到4.5MB甚至以上 + * 3. tuna 有时快有时慢,不稳定,一般在3MB以下 + * 4. rubychina 有时快有时慢,快时一般在 2MB以下,慢时一般在1MB以下 + * 5. 阿里云最不稳定,经常最慢 */ static source_info pl_ruby_sources[] = { {&Bfsu, "https://mirrors.bfsu.edu.cn/rubygems/"}, - {&Ali, "https://mirrors.aliyun.com/rubygems/"}, - {&Tuna, "https://mirrors.tuna.tsinghua.edu.cn/rubygems/"}, {&Tencent, "https://mirrors.tencent.com/rubygems/"}, + {&Tuna, "https://mirrors.tuna.tsinghua.edu.cn/rubygems/"}, // Ruby China 给的链接是不带后缀 / 的,不知道是否带后缀会影响 // 如有问题请报告 {&RubyChina, "https://gems.ruby-china.com/"}, + {&Ali, "https://mirrors.aliyun.com/rubygems/"}, },