Asynchronous High-performance TCP Server
0.1v - Under Development on now
make an tcp server structure with netty, spring boot to be used for various purpose(chat, game server)
for build executable jar
clean package spring-boot:repackage
application.yaml can make setting easily
# netty configuration
netty:
port: 10100
threads:
worker: 4
acceptor: 2
backlog: 100
statistics:
report:
interval: 60000
# logging level
logging:
level:
org:
springframework: info
io:
netty: debug
com:
gompang: info