Skip to content

Commit e7752aa

Browse files
authored
Update performance.md
1 parent d44e648 commit e7752aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/configuration/performance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ abap2UI5 has been successfully tested with tables containing a large number of e
1313
### Suggestions
1414
If you still want to optimize your app, consider the following points:
1515
* Only call the method `client->view_display` when it is truly necessary, and prefer using `client->model_update`, this way, the UI5 framework only re-renders the controls that have actually changed.
16-
* Use `client->bind_edit` only when users need to make changes that are processed in the backend, otherwise, it leads to unnecessary data transfer
17-
* Use public attributes in your app class only for variables that are also displayed in the frontend, otherwise, the framework unnecessarily accesses unused values.
16+
* Prefer `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 transfer
17+
* Use public attributes in your app class only for variables that are also displayed in the frontend, otherwise, the framework unnecessarily accesses unused values
1818
* Follow the usual ABAP best practices: reduce loops, use sorted tables, etc., just like with ALV in the past
1919

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

0 commit comments

Comments
 (0)