←back to thread

480 points jedeusus | 1 comments | | HN request time: 0.231s | source
Show context
donatj ◴[] No.43545402[source]
Unpopular opinion maybe, but sync.Pool is so sharp, dangerous and leaky that I'd avoid using it unless it's your absolute last option. And even then, maybe consider a second server first.
replies(2): >>43547899 #>>43550552 #
1. infogulch ◴[] No.43547899[source]
A new sync/v2 NewPool() is being discussed that eliminates the sharp edges by making it generic: https://github.com/golang/go/issues/71076

I haven't personally found it to be problematic; just keep it private, give it a default new func, and be cautious about only putting things in it that you got out.