Hi
In my application, user have the ability to comment and share with other users.
In order to show list of users, with their avatar, name and email, I have 2 options:
- Retrieve the relevant users profiles from auth0.
- Save the profile info in my db, then query my db.
What is the best practice?
Should I store user infoin my local db (If so, should I keep it sync with auth0), or always fetch from auth0 on-demand?