• 0

    posted a message on Bank Loading Times

    I'm having an issue where my map takes significantly longer to load (1-2 minutes longer) if I use banks, but I'm having trouble figuring out how I can reduce this load time without removing the banks.

    The load time issue only shows up on Arcade when a lot of players (max 11) are playing and so I can't reproduce it in the Editor's profiler testing offline.

    The offending bank stores long strings hashing an id of each game played and the result of each game in an effort to produce globalized balance statistics. Ideally I want to store as many as possible, but it feels like the loading time is heavily impacted by the number of strings I store. Currently I'm storing 100 strings of length 200-300 characters, which is only 40kb per player, and increasing it to 200 adds a solid minute or two onto the load time.

    If anybody knows how I might probe this issue or has a detailed understanding of how bank data is loaded, I would greatly appreciate it.

    Load time data looks like this:

    5 Players: 0:57, 1:01, 0:55

    4 Players: 0:42, 0:46, 0:44

    3 Players: 0:35, 0:33, 0:37

    2 Players: 0:29, 0:28, 0:29

    1 Player: 0:20, 0:21, 0:20

    A typical full lobby takes anywhere from 3-5 minutes to load, and longer if someone drops at the beginning.

    Posted in: Triggers
  • To post a comment, please or register a new account.