Erik Rigtorp
Erik Rigtorp
Create container:      
Should we create a separate `synology.md` file with instructions and pictures for Synology?
Yes they all run the same software Synology DSM https://www.synology.com/en-us/dsm On Wed, Apr 29, 2020 at 2:58 PM artiume wrote: > That sounds like a good idea. would all synology...
To add hardware acceleration support, first export the Synology container JSON definition and re-import it after adding the following to the root of the JSON object: ```json "devices": [ {...
Also see: - https://www.reddit.com/r/jellyfin/comments/exepia/synology_users_how_to_enable_hardware/fhv32z5/ -
Benchmarks for bus1 would be interesting too.
No it's going to increase latency, since you would need 2 syscalls (epoll + read). Maybe io_uring would increase performance. The purpose of non-blocking operations using epoll/kqueue is to increase...
This would be very useful to detect network and buffering/queuing delays. It's possible to have low amount of pending messages/data but high buffering/queuing delay. By measuring RTT it's possible to...
> @paroga Thank you for the contribution. I have to say that I am not a C++ developer so it will be difficult for me to review and judge of...
I agree using default heap allocator it's unlikely to help. It becomes useful when you are using a custom allocator that returns huge pages. Quite nice when you want to...