[
https://issues.apache.org/jira/browse/THRIFT-2791?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14183221#comment-14183221
]
Craig Peterson commented on THRIFT-2791:
----------------------------------------
Chris, I cannot create the TTransport directly in order to do that. The
creation of the TSocket is hidden inside the implementation of TServerSocket,
who just creates a raw TTransport.
TBufferedTransport cannot be used to wrap a TServerTransport, since it is the
job of the server transport to accept requests and generate TTransport for each
one. That is why this is necessary.
> Allowing use of buffered sockets in go server
> ---------------------------------------------
>
> Key: THRIFT-2791
> URL: https://issues.apache.org/jira/browse/THRIFT-2791
> Project: Thrift
> Issue Type: Improvement
> Components: Go - Library
> Reporter: Craig Peterson
>
> There is currently no way in a go server to use buffered sockets. Failing to
> do so decreases performance significantly in my tests.
> I added an option on TServerSocket to set the buffer size to use. This will
> default to 1024 bytes, but can be disabled if desired to get back to the
> original behavior by setting BufferSize to 0.
> Github pull request: https://github.com/apache/thrift/pull/249
> Patch https://github.com/apache/thrift/pull/249.patch
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)