I am reprogramming a high traffic website in asp.net mvc. The client gets about 5 million hits a day. Would like to know if asp.net user management system is suited for this. The site contains over 500K users.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The only aspect of the ASP.NET membership model I have complaints about with respect to scalability is the
SqlProfileProvider, which provides profile support in SQL server. Due to the structure of the SQL database with respect to user profiles, it is difficult to run queries aggregating profile information across the user base.You may find it useful to review the discussion on this question: ASP.NET Membership with more than 2 million users – any problem(s)?