HackerTrans
热门最新趋势评论往期问答秀出招聘

andersced

13 声望加入于 7年前

评论

andersced
·5天前·讨论
https://github.com/andersc/fastqueue2/tree/main
andersced
·3年前·讨论
Another MPEG-TS alternative used by some projects.

https://ieeexplore.ieee.org/document/9828725

https://github.com/agilecontent/efp
andersced
·3年前·讨论
Should be benchmarked against ->

https://github.com/Deaod/spsc_queue

If proven faster OK.. If not.. Well.. back to the drawing board.

I gave it a try -> https://github.com/andersc/fastqueue

Deaod is the kingpin.
andersced
·4年前·讨论
We have been testing out various protocols to overcome in our case TCP head-of-line blocking by using the protocols->

SRT: https://github.com/Haivision/srt (C++ wrapper https://github.com/andersc/cppSRTWrapper)

RIST: https://code.videolan.org/rist/rist-cpp

KCP: https://github.com/Unit-X/kcp-cpp

We wrap all data in a common container format https://github.com/agilecontent/efp

To decouple the data from the transport.

Yes the above solutions are media centric but can be used for almost any arbitrary data.

The protocols are not 'fare' so starvation may happen, and must be handled on the application level.

/A