开发者

Send fodder bytes until actual response data is ready?

开发者 https://www.devze.com 2022-12-17 07:07 出处:网络
I need to serve MP3 content that is ge开发者_StackOverflow社区nerated dynamically during the request.My clients (podcatchers I can\'t configure) are timing out before I\'m able to generate the first b

I need to serve MP3 content that is ge开发者_StackOverflow社区nerated dynamically during the request. My clients (podcatchers I can't configure) are timing out before I'm able to generate the first byte of the response data.

Is there a way to send fodder/throwAway data while I'm generating the real data, to prevent/avoid the timeout, but in a way that allows me to instruct the client to ignore/discard the fodder data once I'm ready to start sending the "real" data?


If the first few bytes of the encoded content are always the same then you could very slowly send back those bytes. I'm not familiar with the MP3 file format, but if the first few bytes are always some magic (and constant) header, this technique could work.

Once the file encoding gets started you could then skip the first few bytes (since you already sent them) and continue from there.


You could have a default, static "hi, welcome to Lance's stream!" stream go out while you're generating the real deal.

0

精彩评论

暂无评论...
验证码 换一张
取 消