//用来保存客户端id和Channel的映射关系public static ConcurrentHashMap<Long, Channel> sessionChannelMap = new ConcurrentHashMap<Long, Channel>();
每个客户端每隔3秒会发送给服务端:NettyServer.sessionChannelMap.put(id, channel); //将id和对应的channel通道绑定
这么处理感觉问题很大,怎么处理好呢