App or Page data vs Get Current User

Is there a benefit/penalty to storing current user related data/fields in App or Page data vs using get property and the “Get current user” function? Or are they interchangeable?

hi @Egil_Helland

With reload=false it won’t retrieve a user from the server (no API Call), it will get it from the RAM.
However, keeping it in the App/PageData it will run rerender each time when you change the object locally (not on the server).

Therefore it depends on your app’s logic where keep the current object.

Regards,
Vlad