if i would like to have two registration providers (password, facebook). What is the best way to store user's id?
In this comment kato says that firebase provides unique uid.
But the uids looks like:
uid: facebook:10000000477077
uid: simplelogin:48
Currently i have /users/< id >
And now i would have /users/< uid > ? like /users/facebook:10000000477077 ?
Is that good from performance view or am i missing something? Because better then this uid would be even an unique username or not?
Thank you.