RFR: 8316681: Rewrite URLEncoder.encode to use small reusable buffers [v6]
Daniel Fuchs
dfuchs at openjdk.org
Fri Sep 22 09:38:15 UTC 2023
On Fri, 22 Sep 2023 08:53:07 GMT, Claes Redestad <redestad at openjdk.org> wrote:
>> `URLEncoder` currently appends chars that needs encoding into a `java.io.CharArrayWriter`, converts that to a `String`, uses `String::getBytes` to get the encoded bytes and then appends these bytes in a escaped manner to the output stream. This is somewhat inefficient.
>>
>> This PR replaces the `CharArrayWriter` with a reusable `CharBuffer` + `ByteBuffer` pair. This allows us to encode to the output `StringBuilder` in small chunks, with greatly reduced allocation as a result.
>>
>> The exact size of the buffers is an open question, but generally it seems that a tiny buffer wins by virtue of allocating less, and that the per chunk overheads are relatively small.
>
> Claes Redestad has updated the pull request incrementally with one additional commit since the last revision:
>
> Update src/java.base/share/classes/java/net/URLEncoder.java
>
> Co-authored-by: ExE Boss <3889017+ExE-Boss at users.noreply.github.com>
Marked as reviewed by dfuchs (Reviewer).
-------------
PR Review: https://git.openjdk.org/jdk/pull/15865#pullrequestreview-1639545637
More information about the net-dev
mailing list