https://youtu.be/dQxGd_yiQ4A


I think I solved this Java 8 optimization by '-XX:-TieredCompilation'  
or change the code above not to use autobox during method call.

It's quite .....


e.g.

Double w =4; 
Double p =4; 
  askrec.setWin(w); 
  askrec.setPlace(p); 


        public void setPlace(Double p) { 
                assert p > 0 : "place <=0 " + p; 
                this.place = p; 
        } 



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Please-warn-Oracle-Java8-VM-has-inline-optimization-error-tp7582p7602.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to