forked from mirror/ants
Integrating with http-server
This commit is contained in:
commit
5bbeede097
|
@ -119,7 +119,7 @@ type Request struct {
|
|||
|
||||
func main() {
|
||||
pool, _ := ants.NewPoolWithFunc(100, func(payload interface{}) {
|
||||
request, ok := payload.(Request)
|
||||
request, ok := payload.(*Request)
|
||||
if !ok {
|
||||
request = Request{Param:[]byte(""), Result: make(chan []byte)}
|
||||
}
|
||||
|
@ -141,7 +141,7 @@ func main() {
|
|||
}
|
||||
defer r.Body.Close()
|
||||
|
||||
request := Request{Param: param, Result: make(chan []byte)}
|
||||
request := &Request{Param: param, Result: make(chan []byte)}
|
||||
|
||||
// Throttle the requests with ants pool. This process is asynchronous and
|
||||
// you can receive a result from the channel defined outside.
|
||||
|
|
|
@ -118,7 +118,7 @@ type Request struct {
|
|||
|
||||
func main() {
|
||||
pool, _ := ants.NewPoolWithFunc(100, func(payload interface{}) {
|
||||
request, ok := payload.(Request)
|
||||
request, ok := payload.(*Request)
|
||||
if !ok {
|
||||
request = Request{Param:[]byte(""), Result: make(chan []byte)}
|
||||
}
|
||||
|
@ -140,7 +140,7 @@ func main() {
|
|||
}
|
||||
defer r.Body.Close()
|
||||
|
||||
request := Request{Param: param, Result: make(chan []byte)}
|
||||
request := &Request{Param: param, Result: make(chan []byte)}
|
||||
|
||||
// Throttle the requests with ants pool. This process is asynchronous and
|
||||
// you can receive a result from the channel defined outside.
|
||||
|
|
Loading…
Reference in New Issue