GitHub user evanj opened a pull request:

    https://github.com/apache/thrift/pull/596

    THRIFT-3306: Java: TBinaryProtocol: Use a single temp byte[] buffer

    Reduces allocations and GC when TBinaryProtocol is allocated repeatedly.
    
    Originally separate byte[] arrays were allocated for each integer type, and
    a separate array for input and output. However, one buffer of the largest
    size (8 bytes for i64) can be used for all purposes.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/evanj/thrift THRIFT-3306

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/thrift/pull/596.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #596
    
----
commit 73486e21a4028418ed606b5f9f4709cad20b32fe
Author: Evan Jones <ejo...@twitter.com>
Date:   2015-08-25T15:51:07Z

    THRIFT-3306: Java: TBinaryProtocol: Use a single temp byte[] buffer
    
    Reduces allocations and GC when TBinaryProtocol is allocated repeatedly.
    
    Originally separate byte[] arrays were allocated for each integer type, and
    a separate array for input and output. However, one buffer of the largest
    size (8 bytes for i64) can be used for all purposes.

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to