|
@@ -1,7 +1,9 @@
|
|
|
go-hostpool
|
|
go-hostpool
|
|
|
===========
|
|
===========
|
|
|
|
|
|
|
|
-Intelligently and flexibly pool among multiple hosts from your Go application.
|
|
|
|
|
|
|
+A Go package to intelligently and flexibly pool among multiple hosts from your Go application.
|
|
|
|
|
+Host selection can operate in round robin or epsilon greedy mode, and unresponsive hosts are
|
|
|
|
|
+avoided.
|
|
|
Usage example:
|
|
Usage example:
|
|
|
|
|
|
|
|
```go
|
|
```go
|
|
@@ -12,4 +14,4 @@ err := _ // (make a request with hostname)
|
|
|
hostResponse.Mark(err)
|
|
hostResponse.Mark(err)
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
-View more detailed documentation on godoc.org
|
|
|
|
|
|
|
+View more detailed documentation on [godoc.org](http://godoc.org/github.com/bitly/go-hostpool)
|