Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.x] Address slow copy performance when using the FileAccessFilesystemJAndroid implementation #63223

Merged
merged 1 commit into from
Jul 21, 2022

Commits on Jul 21, 2022

  1. 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.
    m4gr3d committed Jul 21, 2022
    Configuration menu
    Copy the full SHA
    aab26ad View commit details
    Browse the repository at this point in the history