Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Essentially the changes are
Code Block
languagejs
         export SERVER_OPTS="-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m"
               to

                 

           to Code Block
languagejs
export

 export SERVER_OPTS="-Xms512m

-Xmx1024m

-XX:MetaspaceSize=256m

-XX:MaxMetaspaceSize=512m"


Conclusion

The response times & memory consumption of each scenario with java7 and java8 are approximately equal. There are no major performance issues(degradation) observed.

...