Minor text adjustments

This commit is contained in:
alitto
2020-03-29 13:49:55 -03:00
parent 0ec6ce3c5d
commit 3de2927626
+4 -4
View File
@@ -4,15 +4,15 @@
<a title="Go Report Card" target="_blank" href="https://goreportcard.com/report/github.com/alitto/pond"><img src="https://goreportcard.com/badge/github.com/alitto/pond"></a> <a title="Go Report Card" target="_blank" href="https://goreportcard.com/report/github.com/alitto/pond"><img src="https://goreportcard.com/badge/github.com/alitto/pond"></a>
# pond # pond
pond: Minimalistic and High-performance goroutine worker pool written in Go Minimalistic and High-performance goroutine worker pool written in Go
## Features: ## Features:
- Zero dependencies - Zero dependencies
- Creating goroutine pools with fixed or dynamic size - Create pools with fixed or dynamic size
- Worker goroutines are only created when needed (backpressure detection) and automatically purged after being idle for some time (configurable) - Worker goroutines are only created when needed (backpressure detection) and automatically purged after being idle for some time (configurable)
- Minimalistic APIs for: - Minimalistic APIs for:
- Creating a worker pool - Creating worker pools with fixed or dynamic size
- Submitting tasks to a pool in a fire-and-forget fashion - Submitting tasks to a pool in a fire-and-forget fashion
- Submitting tasks to a pool and waiting for them to complete - Submitting tasks to a pool and waiting for them to complete
- Submitting tasks to a pool with a deadline - Submitting tasks to a pool with a deadline
@@ -20,7 +20,7 @@ pond: Minimalistic and High-performance goroutine worker pool written in Go
- Getting the number of running workers (goroutines) - Getting the number of running workers (goroutines)
- Stopping a worker pool - Stopping a worker pool
- Task panics are handled gracefully (configurable panic handler) - Task panics are handled gracefully (configurable panic handler)
- Supports Blocking and Non-blocking task submission modes - Supports Non-blocking and Blocking task submission modes (buffered / unbuffered)
- Efficient memory usage - Efficient memory usage
## How to install ## How to install