Is it recommended to use ASP.NET user management system on a high traffic website

I am reprogramming a high traffic site in asp.net mvc. The client receives about 5 million hits per day. I would like to know if the asp.net user management system is suitable for this. The site contains more than 500 thousand users.

+3
source share
1 answer

The only aspect of the ASP.NET membership model that I have complaints about scalability is that SqlProfileProviderwhich provides support for the profile on the SQL server. Due to the structure of the SQL database regarding user profiles, it is difficult to execute queries that aggregate profile information through a user database.

You may find it useful to consider a discussion on this issue: Membership in ASP.NET with over 2 million users - any problem (s)?

+1
source

Source: https://habr.com/ru/post/1760838/


All Articles