Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ROCachedLabel - improved performance with large numbers of elements #901

Closed
seandenigris opened this issue Aug 3, 2015 · 1 comment
Closed

Comments

@seandenigris
Copy link
Contributor

Originally reported on Google Code with ID 901

With large numbers of elements that display strings, Roassal is quite slow.  Tracing
this down shows the main culprit is #extentFor:.  A proposed solution ROCachedLabel
is provided in attached .st file which returns a cached extentFor value.  This is nilled
out when the value of the string changes. The other variables in ROCachedLabel are
also cached, but the performance gain from these is unclear.

To test the effect of this, try the following script for both ROLabel and ROCachedLabel...

---
| rawView el count elements |
rawView := ROView new @ RODraggable.
count := 1000.
elements := (1 to: count) collect:
[   :x | 
    el := (ROElement spriteOn: x) + ROLabel "ROCachedLabel".
    el on: ROMouseLeftClick do: 
    [ :ev | 
        ev element model: (ev element model + 1).
        ev element view signalUpdate .
     ]
].
rawView addAll: elements.
1 to: count do: 
[   :x |
    rawView add: (ROEdge new from: (elements at: x) to: (elements at: (Random new nextInt:
count - x + 1))) + ROLine.
].
ROHorizontalTreeLayout on: rawView elements.
rawView open  

---

Also attached is the MessageTally report from which it was determined that #extentFor
was the problem.


Reported by benjamin.t.coman on 2013-01-10 17:50:43


- _Attachment: [ROCachedLabel.st](https://storage.googleapis.com/google-code-attachments/moose-technology/issue-901/comment-0/ROCachedLabel.st)_ - _Attachment: [MessageTally-ROLabel.txt](https://storage.googleapis.com/google-code-attachments/moose-technology/issue-901/comment-0/MessageTally-ROLabel.txt)_
@seandenigris
Copy link
Contributor Author

Hi Ben,

Your change makes sense. However I do not want to be that hasty to include this class
in Roassal. The reason is that I prefer to have #extentFor: not sent when not necessary
than caching it to make it fast. However, if this works well in your case, then use
it.

Reported by alexandre.bergel on 2013-01-14 12:28:49

  • Status changed: WontFix
  • Labels added: Component-Roassal

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant