Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Address slow copy performance when using the `FileAccessFilesystemJAn…
…droid` implementation. Read/write ops for this implementation are done through the java layer via jni, and so for good performance, it's key to avoid numerous repeated small read/write ops due the jni overhead. The alternative is to allocate a (conversatively-sized) large buffer to reduce the number of read/write ops over the jni boundary.
- Loading branch information