tryingHard
tryingHard

Reputation: 2084

JVM optimization with JProfiler

I am measuring functionality in an application that the client said was to slow. I am using JProfiler with IntelliJ integration. See the analysis below:

I am wondering on which factors should i focus?

See: https://jsfiddle.net/mxyw5bnu/

Can someone see something interesting here?

I did not post this html as a snippet cause the browser hangs while doing it.

Upvotes: 1

Views: 158

Answers (1)

Dzmitry Bahdanovich
Dzmitry Bahdanovich

Reputation: 1815

Please, have a look into pl.a.sc.x.back.pol.bo.assembler.polversion.PolVersionDtoAssembler.toDto() - only 2 invocations took over a second which might be too much for supposedly POJO conversion. Also, have a look into methods which have a large Outlier Coefficient that shows how strongly the slowest invocation deviates from the median time

Upvotes: 1

Related Questions