diff --git a/README.md b/README.md index 44a205e..bc286f0 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Library `ants` implements a goroutine pool with fixed capacity, managing and rec - Purging overdue goroutines periodically - Friendly interfaces: submitting tasks, getting the number of running goroutines, tuning capacity of pool dynamically, closing pool - Handle panic gracefully to prevent programs from crash -- Efficient in memory usage and it even achieves higher performance than unlimited goroutines in Golang +- Efficient in memory usage and it even achieves [higher performance](#-performance-summary) than unlimited goroutines in Golang - Nonblocking mechanism ## ⚔️ Tested in the following Golang versions: diff --git a/README_ZH.md b/README_ZH.md index bc71e39..a185fee 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -26,7 +26,7 @@ - 定时清理过期的 goroutines,进一步节省资源 - 提供了友好的接口:任务提交、获取运行中的协程数量、动态调整协程池大小 - 优雅处理 panic,防止程序崩溃 -- 资源复用,极大节省内存使用量;在大规模批量并发任务场景下比原生 goroutine 并发具有更高的性能 +- 资源复用,极大节省内存使用量;在大规模批量并发任务场景下比原生 goroutine 并发具有[更高的性能](#-性能小结) - 非阻塞机制 ## ⚔️ 目前测试通过的Golang版本: