We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Package is write one by one currently, it can be changed to batch write to improve the performance.
The key points of design:
[]byte
Writer.Write
type Writer interface { // if @Session is udpGettySession, the second parameter is UDPContext. Write(Session, interface{}) ([]byte, error) }
The text was updated successfully, but these errors were encountered:
ref: #26
Sorry, something went wrong.
Merge pull request apache#15 from fangyincheng/master
cb811d1
add reconnectInterval & wheel.Now -> time.Now
No branches or pull requests
Package is write one by one currently, it can be changed to batch write to improve the performance.
The key points of design:
[]byte
response forWriter.Write
, which can be aggregated to write in batch:The text was updated successfully, but these errors were encountered: