Thread history
From Talk:ScalarBot/Version History
Viewing a history listing
Jump to navigation
Jump to search
Viewing a history listing
Time | User | Activity | Comment |
---|---|---|---|
16:13, 30 November 2017 | Xor (talk | contribs) | Comment text edited | |
16:12, 30 November 2017 | Xor (talk | contribs) | Comment text edited | |
16:12, 30 November 2017 | Xor (talk | contribs) | New thread created |
I've been experiencing noticeable performance regression after a refactor, which theoretically with the only difference being an static keyword was added to a private final double[] (whose content is never changed).
removing that "static" keyword immediately return my performance back, and adding it back effectively decrease my score, so I'm pretty sure that is the reason. so here is my question, how Java handles static final arrays? may that be some bug introduced by optimizations?