From 75fbedc77ab19cda785beba16b572fcc1caf490f Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Fri, 20 May 2016 11:58:24 -0700 Subject: [PATCH] Updated Large File Handling (markdown) --- Large-File-Handling.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Large-File-Handling.md b/Large-File-Handling.md index b7841f6..617d071 100644 --- a/Large-File-Handling.md +++ b/Large-File-Handling.md @@ -45,4 +45,7 @@ Usually we just append large files. Updating a specific chunk of file is almost The steps to append a large file: 1. upload the new file chunks as usual, with mime type "application/octet-stream". Save the related info into ChunkInfo struct. -1. update the updated manifest file with mime type "application/json", and add url parameter "cm=true". \ No newline at end of file +1. update the updated manifest file with mime type "application/json", and add url parameter "cm=true". + +## Notes +There are no particular limit in terms of chunk file size. Each chunk size does not need to be the same, even in the same file. The rule of thumb is to just being able to keep the whole chunk file in memory, and not to have too many small chunk files.