From b6cdf6dd3a9684718bf057994f3f9db2b7c93ca1 Mon Sep 17 00:00:00 2001 From: Guide Date: Mon, 15 Apr 2024 17:38:58 +0800 Subject: [PATCH] =?UTF-8?q?[docs=20update]=E6=B7=BB=E5=8A=A0=E5=87=A0?= =?UTF-8?q?=E4=B8=AARedis=E7=9B=B8=E5=85=B3=E7=9A=84=E5=BC=80=E6=BA=90?= =?UTF-8?q?=E5=B7=A5=E5=85=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/java/concurrent/java-concurrent-questions-03.md | 4 ++-- docs/open-source-project/tools.md | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/java/concurrent/java-concurrent-questions-03.md b/docs/java/concurrent/java-concurrent-questions-03.md index 20c2ec58..b3048137 100644 --- a/docs/java/concurrent/java-concurrent-questions-03.md +++ b/docs/java/concurrent/java-concurrent-questions-03.md @@ -342,7 +342,7 @@ public static class CallerRunsPolicy implements RejectedExecutionHandler { } ``` -### 如果不允许丢弃任务任务,应该选择哪个拒绝策略 +### 如果不允许丢弃任务任务,应该选择哪个拒绝策略? 根据上面对线程池拒绝策略的介绍,相信大家很容易能够得出答案是:`CallerRunsPolicy` 。 @@ -368,7 +368,7 @@ public static class CallerRunsPolicy implements RejectedExecutionHandler { ### CallerRunsPolicy 拒绝策略有什么风险?如何解决? -我们上面也提到了:如果想要保证任何一个任务请求都要被执行的话,那选择 CallerRunsPolicy 拒绝策略更合适一些。 +我们上面也提到了:如果想要保证任何一个任务请求都要被执行的话,那选择 `CallerRunsPolicy` 拒绝策略更合适一些。 不过,如果走到`CallerRunsPolicy`的任务是个非常耗时的任务,且处理提交任务的线程是主线程,可能会导致主线程阻塞,影响程序的正常运行。 diff --git a/docs/open-source-project/tools.md b/docs/open-source-project/tools.md index d47ea44d..0c03a097 100644 --- a/docs/open-source-project/tools.md +++ b/docs/open-source-project/tools.md @@ -42,6 +42,8 @@ icon: tool - [Another Redis Desktop Manager](https://github.com/qishibo/AnotherRedisDesktopManager/blob/master/README.zh-CN.md):更快、更好、更稳定的 Redis 桌面(GUI)管理客户端,兼容 Windows、Mac、Linux。 - [Tiny RDM](https://github.com/tiny-craft/tiny-rdm):一个更现代化的 Redis 桌面(GUI)管理客户端,基于 Webview2,兼容 Windows、Mac、Linux。 - [Redis Manager](https://github.com/ngbdf/redis-manager):Redis 一站式管理平台,支持集群(cluster、master-replica、sentinel)的监控、安装(除 sentinel)、管理、告警以及基本的数据操作功能。 +- [CacheCloud](https://github.com/sohutv/cachecloud):一个 Redis 云管理平台,支持 Redis 多种架构(Standalone、Sentinel、Cluster)高效管理、有效降低大规模 Redis 运维成本,提升资源管控能力和利用率。 +- [RedisShake](https://github.com/tair-opensource/RedisShake):一个用于处理和迁移 Redis 数据的工具。 ## Docker