Skip to content

Commit 15fef7b

Browse files
authored
Update performance.md
1 parent 7d08751 commit 15fef7b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/configuration/performance.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ abap2UI5 has been successfully tested with tables containing large numbers of en
1212

1313
### Suggestions
1414
If you still want to optimize your app, consider the following tips:
15-
* Only call the `client->view_display` method when necessary. Instead, prefer using `client->model_update` so that the UI5 framework only re-renders the controls that have actually changed.
16-
* Prefer using `client->bind` and use `client->bind_edit` only when users need to make changes that are processed in the backend. Otherwise, it leads to unnecessary data transfers.
17-
* Use public attributes in your app class only for variables that are also displayed in the frontend. Otherwise, the framework may unnecessarily access unused values.
18-
* Follow standard ABAP best practices: reduce loops, use sorted tables, etc., just as you would with ALV.
15+
* Only call the `client->view_display` method when necessary. Instead, prefer using `client->model_update` so that the UI5 framework only re-renders the controls that have actually changed
16+
* Prefer using `client->bind` and use `client->bind_edit` only when users need to make changes that are processed in the backend. Otherwise, it leads to unnecessary data transfers
17+
* Declare public attributes in your app class only for variables displayed in the frontend. This helps prevent the framework from accessing unused values unnecessarily
18+
* Follow standard ABAP best practices, such as reducing loops and using sorted tables, as you would in any other ABAP development project
1919

2020
### Performance Issues?
2121
If you encounter performance issues, try creating a sample and submitting a pull request to the samples repository. We would be happy to analyze it and see if we can make abap2UI5 even faster.

0 commit comments

Comments
 (0)