Project

General

Profile

Actions

Bug #5735

closed

/loadbuf is performing too slow (big difference)

Added by westor (GR) 10 months ago. Updated 10 months ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Scripting
Target version:
Start date:
05/26/2023
Due date:
% Done:

0%

Estimated time:
Operative System:
All
Regression:
No

Description

Hello,

I was trying to load a big file in a custom @window and i reproduced a performance issue in /loadbuf that the difference is dramatically huge compared with mIRC, i will provide a test code to reproduce it.

Example :

Example file used: https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt

NOTE : AdiIRC takes (on me) 55-60 seconds to finish that progress while in the other client is almost only 4-5 seconds.

alias loadbuf_test {
  window -h @example

  var %f = unicodedata.txt 
  var %a = 100 
  var %t = $ticksqpc 

  while (%a) {
    loadbuf @example $qt(%f)

    dec %a 
  }

  echo -ag Finished: $calc($ticksqpc - %t) ms for $file(%f) bytes with $lines(%f) lines.

  window -c @example
}

- Thanks!

Actions #1

Updated by Per Amundsen 10 months ago

AdiIRC textarea is a lot slower than mirc, it also has a lot more features. Using a fixed-width font such as Consola could help.

I added some hacks to speed it up a little for next beta, about 2x, but it's never gonna be as fast as mirc.

Actions #2

Updated by westor (GR) 10 months ago

Maybe an idea would be that if -h is being used in /window (that means the window will be hidden) to prevent using these extra features that adiirc having and TextArea would be more faster? or something in /loadbuf to do that, something that will bypass these extra features to be fast, i don't know i just throwing an idea that may be useful or bullshit. :P

Actions #3

Updated by Per Amundsen 10 months ago

  • Status changed from New to Resolved

I did all that I reasonably could do, to get as much performance out of it as I could, about 2x performance improvements. it's never going to be faster than that. If you need more speed, you'll have to think of ways to reduce the amount of text added to the textarea.

Actions #4

Updated by Per Amundsen 10 months ago

  • Status changed from Resolved to Closed
Actions #5

Updated by Per Amundsen 10 months ago

Also, if there is something that I can add that could help with that, let me know.

Actions #6

Updated by Per Amundsen 10 months ago

Disabling https://dev.adiirc.com/projects/adiirc/wiki/Messages_Options#Use-alternative-text-rendering helps a lot, at least for next beta.

Edit: When using fixed width fonts at least.

Actions

Also available in: Atom PDF