I am using the mySql database to store the user details in table User during registration.
User table has column ID autoincrement primary key.
I understand if two Users register at the same time, two requests are queued at the database. Puts a lock on the table when one inserting.
How do I handle when 15000 users register at the same time? all those requests are queued at the database? If yes it slows downs the web page performance right? How can I scale it?