Add anchor-links in READMEs

This commit is contained in:
Andy Pan 2019-10-23 21:31:35 +08:00
parent 6b4a00c5cc
commit b5a214b59f
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -26,7 +26,7 @@
- 定时清理过期的 goroutines进一步节省资源
- 提供了友好的接口:任务提交、获取运行中的协程数量、动态调整协程池大小
- 优雅处理 panic防止程序崩溃
- 资源复用,极大节省内存使用量;在大规模批量并发任务场景下比原生 goroutine 并发具有更高的性能
- 资源复用,极大节省内存使用量;在大规模批量并发任务场景下比原生 goroutine 并发具有[更高的性能](#-性能小结)
- 非阻塞机制
## ⚔️ 目前测试通过的Golang版本