Live data from Hacker News

Thread Pools in Nginx Boost Performance 9x (2015)

nginx.com

61–62 of 62 posts

Re: Thread Pools in Nginx Boost Performance 9x (2015)

#61
post #53

Earlier quoted context omitted.

A slightly off-topic question tinged with a touch of envy that you get to work on D. Many HN readers are apprehensive of the use of D because it is garbage collected and conjecture that it is not appropriate for low latency and/or high throughput work loads. Correct me if I am wrong, but that is exactly the kind of load the sociomantic needs to address. I have thoroughly enjoyed the relevant Dconf videos but it would…

Oh, I'm aware this is a late reply, but it's better than nothing. Yes, what you describe is exactly the kind of load we're addressing, and we're not getting GC to be in the way, simply by making usage of the reusable memory buffers, which are allocated in the first few requests, and then always reuse/recycled & fetched from the pool, so that we're not giving a chance for GC to kick in (as explained in the great blog…

Appreciate your reply and welcome to HN.

Re: Thread Pools in Nginx Boost Performance 9x (2015)

#62
post #61

Earlier quoted context omitted.

Oh, I'm aware this is a late reply, but it's better than nothing. Yes, what you describe is exactly the kind of load we're addressing, and we're not getting GC to be in the way, simply by making usage of the reusable memory buffers, which are allocated in the first few requests, and then always reuse/recycled & fetched from the pool, so that we're not giving a chance for GC to kick in (as explained in the great blog…

Appreciate your reply and welcome to HN.

Thanks!
Post reply on HN