gpt4 book ai didi

java - 从服务器向客户端发送消息

转载 作者:行者123 更新时间:2023-12-01 12:41:51 24 4
gpt4 key购买 nike

我需要根据客户端的用户名从 Netty 服务器向客户端发送消息。因此,我需要将 channel 与用户名进行映射,并在每次发送消息时找到该 channel 。

我脑子里有两种方法,问题是:就服务器端性能而言,哪种方法更好。你有什么更好的主意吗?

  1. 将 channel 与用户名映射到 HashMap 中。

    //Send userName from client side in first request
    //Get userName in server side and put it in a map
    Map<String, Channel> userMap = new ConcurrentHashMap<String,Channel>();
    //loop over userMap to find specific client
  2. 使用用户名设置附件。

    //Set the attachment in client side
    ctx.getChannel().setAttachment(username);
    //Put all channels to a default channel group
    //Get all channels, search in their attachments to find specific client

最佳答案

根据您的代码,我怀疑第二个选项使用线性搜索来查找特定 channel 。第一个选项将简单地执行获取。 (但在这种情况下键必须是字符串)

平均线性搜索时间:O(n/2)

平均 HashMap 访问时间:O(1)! (请参阅此 posting 了解更多信息)

这意味着如果您有更多 channel ,线性搜索会变得更糟。 hashmap 选项更稳定,您可以期望几乎恒定的时间访问。

您可以做的是“融合”这两个选项,这样您就可以使用 map 轻松访问 channel ,并使用 ChannelGroup 来处理困难的事情。您需要做的是在 channel 关闭时将其从 map 中删除。

关于java - 从服务器向客户端发送消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25031157/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com