Are there any TCP Application frameworks available in GO language, similar to Apache Mina/Netty for JAVA language.I tried some GO projects available at GO Forums, but I want to know if there are any standard frameworks available.Apache Mina provides a feature: user-defined message objects and codecs, which can convert the byte stream to userdefined objects based on the codecs. Such kind of feature is available with GO by default?
Have you had a look at the standard net
package ?
1 Like
Go does not require a asynchronous io framework, that is provided by the runtime transparently for you. I gave a talk about this at OSCON last year. http://dave.cheney.net/2015/08/08/performance-without-the-event-loop
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.