I'm working on a public facing system which will ideally grow to a large amount of traffic. This is all c# .net work.
I'm using claims-based identity and so I'm currently using a user claims table to store the user data, but as the user base grows I feel this will become too slow to support the traffic. I'm thinking of possibly creating a user profile table to store non-security related data horizontally as opposed to vertically as in a claims table, leaving just the security data in the claims table.
Is this a reasonable approach to the problem? Can anybody share some insight from experience they've had with a scenario like this?
Update
My question isn't regarding the size of the JWT
token that's passed around with the users' identity. My question is regarding the strict use of a "UserClaim" table to store ALL of the user's data in Claim
form as opposed to having a UserProfile
or similar table to store certain things, as well as finding that right balance of "this data goes into the claims table vs this data goes into the profile table".