Joan Miquel

Results 473 comments of Joan Miquel

Before Unit was working without problems in the benchmark. Later it start to fail in the benchmark, but now it also fail in the GitHub action test.

![image](https://user-images.githubusercontent.com/249085/203612101-415ffa46-20ab-4e5b-9d3e-e3187ea8a097.png) https://www.techempower.com/benchmarks/#section=test&runid=03363299-b1b5-42e6-8ca5-6e0665be82c2&test=fortune&f=zik0zj-zik0zj-zik0zj-zik0zj-zik0zj-zik0zj-zik0zj-yelngf-zik0zj-zik0zj-zik0zj-zik0zj-zik0zj-sf Nginx Unit failed in the last 2 runs, but have +100K req/s

Latency: ![image](https://user-images.githubusercontent.com/249085/203617034-5b59d8a0-abe2-4bf8-bb04-c82bd57696ab.png)

A websocket and also TCP is always unidirectional. Only UDP have possibilities to do broadcast and multicast, and you will never know if arrived or not.

It's the same problem. Do you think that create new threads, will be faster than the foreach loop ?

Every thread need to do the foreach loop with less, but and the time to create the threads. It's the same loop, but we add the time to create the...

I said sometimes, async or not async, need **the same time to**: connect to bd, read from hd, .... Only that you can scale more. The network is the fastest,...

Paralell is create more threads, or forks, or green threads ....

It's like the fibers in PHP 8, the people need to read it exactly. > It is important the concurrent execution does not mean simultaneous execution. The Fiber and the...

The same with any async execution: threads, forks, fibers, .... The only help it's the multi CPU servers. But nothing work simultaneous, only the context switch in the OS make...