Manuel Astudillo

Results 577 comments of Manuel Astudillo

@didil BTW. The behaviour you mentioned is no different in Bull in fact. Kue is just creating new queues (requiring extra connections) for every new type you add. So you...

Could someone clarify if it is required to create the volumes on every node in the swarm in order to get this to work? currently I am getting nfs volumes...

@o3o3o As far as I know (I learnt this recently), this is the way volumes are supposed to work in swarm. The only supported way is to create the volume...

strange, I thought this would also work, as long as the directory data1 exists in the proper location: ``` docker volume create -d nfs --name data1 -o share=nfshost:/export/data1 ```

@r5r3 I think this is works as design, i.e., volumes are not recreated automatically when booting in docker.

I am actually having the same or very similar problem. I have a v-show (although the same happens with v-if) binded to a value that changes later on from false...

I did two more experiments that I find somehow interesting. Using minimum http-proxy(I already got the same figures using https://github.com/OptimalBits/redbird based on http-proxy): ``` var httpProxy = require('http-proxy'); httpProxy.createProxyServer({target:'http://localhost:3000'}).listen(8080); ```...

Using keepAlive: true on the http.Agent with http-proxy: ``` wrk -c 64 -d 15s http://localhost:8080 Running 15s test @ http://localhost:8080 2 threads and 64 connections Thread Stats Avg Stdev Max...

Previous experiments were aimed to just check what is the overhead for a minimal web server, now check this results when serving strings of different sizes from 32 bytes to...