Skip to content

Commit 4f0afeb

Browse files
authored
update
1 parent 9fd292b commit 4f0afeb

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

docs/.vitepress/config.mjs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ export default defineConfig({
9898
{ text: 'Messages, Errors', link: '/development/messages' },
9999
{ text: 'Translation, i18n', link: '/development/translation' },
100100
{ text: 'Popups, Popover', link: '/development/popups' },
101-
102101
{ text: 'Troubleshooting', link: '/development/troubleshooting' },
103102
]
104103
},
@@ -112,7 +111,7 @@ export default defineConfig({
112111
{ text: 'Security', link: '/configuration/security' },
113112
{ text: 'Authorization', link: '/configuration/authorization' },
114113
{ text: 'Productive Usage', link: '/configuration/productive_usage' },
115-
// { text: 'Performance', link: '/configuration/performance' },
114+
{ text: 'Performance', link: '/configuration/performance' },
116115
{ text: 'UI5 Versions', link: '/configuration/ui5_versions' },
117116
{ text: 'S/4 Public Cloud', link: '/configuration/s4_public_cloud' },
118117
{ text: 'Fiori Launchpad', link: '/configuration/launchpad', },
@@ -140,10 +139,10 @@ export default defineConfig({
140139
{ text: 'Renaming', link: '/advanced/renaming' },
141140
{ text: 'Launchpad KPIs', link: '/addons/kpi' },
142141
{ text: 'Remote App Calls', link: '/addons/rfc' },
143-
{ text: 'Extensibility', link: '/advanced/extensibility' },
144-
{ text: 'Technical Background', link: '/advanced/insights/insights' , items: [
145-
{ text: 'General', link: '/advanced/insights/insights' },
146-
{ text: 'open-abap', link: '/advanced/insights/open_abap' },
142+
{ text: 'Extensibility', link: '/advanced/extensibility' },
143+
{ text: 'Technical Background', link: '/advanced/insights/insights' , items: [
144+
{ text: 'General', link: '/advanced/insights/insights' },
145+
{ text: 'open-abap', link: '/advanced/insights/open_abap' },
147146
// { text: 'CI/CD', link: '/insights/ci' },
148147
// { text: 'abaplint', link: '/insights/ci' },
149148
]

docs/configuration/performance.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Performance
2+
3+
### Frontend
4+
onyl UI refersh when needed, prefer model_update
5+
6+
7+
### Frontend-Backend API
8+
9+
* make the model small, only use public attributes for the valuewhic are rely needed
10+
* use bind.edit only when it is needed
11+
12+
### Backend
13+
14+
as always reduce loops, etc.

0 commit comments

Comments
 (0)