Is it possible to upload a file by url to cloud storage on app engine without writing to disk?
问题 To upload a file from url to a cloud storage system, usually it is required to download that file on a server, and then upload it to the cloud storage. For large files, it may be required to write the file on disk instead of memory. Since app engine does not support writing on disks, are there any other options for doing this on app engine? I understand that managed vm is an option, but I'm trying to make sure that it's definitely not possible to do this on classic app engine. 回答1: To