Changeset 5c90890 for irc_commands.c


Ignore:
Timestamp:
2018-07-12T08:54:12Z (6 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
c82e4ca
Parents:
b9d1fdc
git-author:
dequis <dx@…> (03-07-18 06:17:17)
git-committer:
dequis <dx@…> (12-07-18 08:54:12)
Message:

Stop using the irc->users linked list, use the hash table instead

irc_user_new() mentions that the reason this list is kept is for easy
iteration. Luckily, this is the future, and GHashTableIter exists now.

The main point of this is to get rid of the g_slist_insert_sorted() in
irc_user_set_nick() which is a particularly slow part of loading large
user lists, and scales poorly

In a test with discord, the GUILD_SYNC event is now 4 times faster, on
top of the improvements of the other bee_user hash tables patch.
Combining both patches it went from 136 to 6 seconds for 50k members.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_commands.c

    rb9d1fdc r5c90890  
    449449
    450450        if (!channel || *channel == '0' || *channel == '*' || !*channel) {
    451                 irc_send_who(irc, irc->users, "**");
     451                GList *all_users = g_hash_table_get_values(irc->nick_user_hash);
     452                irc_send_who(irc, (GSList *) all_users, "**");
     453                g_list_free(all_users);
    452454        } else if ((ic = irc_channel_by_name(irc, channel))) {
    453455                irc_send_who(irc, ic->users, channel);
Note: See TracChangeset for help on using the changeset viewer.