How many users can WordPress handle?

I want to design a member login site in WP but I have a doubt that is WordPress can handle more than 40000 users on same database?

I am not sure about this so I am stooping my work here. So please help me if anyone know exactly about this to proceed my project with WP.

5

According WP database structure, ID in wp_users is Bigint(20) UNSIGNED, so you could “theoretically” add 18446744073709551615 users.
http://dev.mysql.com/doc/refman/4.1/en/integer-types.html

Leave a Comment