开发者

High volume large file uploads

开发者 https://www.devze.com 2022-12-19 20:53 出处:网络
Trying to find a suitable method of accepting large file uploads that has to be scalable. By large I mean up to 5-10gb f开发者_高级运维iles.

Trying to find a suitable method of accepting large file uploads that has to be scalable. By large I mean up to 5-10gb f开发者_高级运维iles.

I also need to process the files afterwards. I was thinking of using PHP and HTTP PUT for uploads, then passing the stream of data directly to disk. I'd then process the file afterwards.

Doing a custom server and protocol would be my second attempt but I'd like to avoid that.

I'll also be implementing a custom desktop upload client, so would HTTP PUT be good for that too?

Thanks in advance!


HTTP would be too fragile for that and usually client uploads are a lot slower which doesn't help.

You'd be better off using some other method to upload big files like using flash, Java or perhaps Silverligth ;-)

0

精彩评论

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