Show TOC Start of Content Area

Process documentation Considering Performance Locate the document in its SAP Library structure

Purpose

You can improve the performance of your coding by following the recommendations provided in the next sections. Although the recommendations are primarily for Java development in general, they do play a significant role within Knowledge Management. They can significantly reduce memory consumption and speed up response times.

Process Flow

To improve performance, you can:

·        Avoid the use of string concatenation with +

·        Choose a data structure with the features you need

·        Avoid unnecessary creation of objects

·        Minimize calls to APIs that you do not control

·        Optimize coding for mass operations

·        Avoid use of Java classes with high memory consumption

End of Content Area