Dear Umbraco experts, im developing a big website suing umbraco so in the future the members and registered users maybe reach 500K members. So can umbraco membership works in a good performance with this number of members.
i know each member will create a node record in node table so is that will effect the contents ??
membership provider performance
Dear Umbraco experts, im developing a big website suing umbraco so in the future the members and registered users maybe reach 500K members. So can umbraco membership works in a good performance with this number of members.
i know each member will create a node record in node table so is that will effect the contents ??
Hi Nour,
If you aware about performance of members, you can use separate membership. 500K is a lot, but I think it's not a problem for Umbraco.
Alex
im building a community website so i thing i need custom membership provider. is there any one open source for umbraco i can customize ??
Hi Nour,
It's very simple really:
Create a new Class file (if you're not using a multi-layered system, in your project's Models folder) let's called MyMembershipProvider.cs
Inherit that class from System.Web.Security.MembershipProvider
automatically create the needed methods (period + space in the inherit class)
Loot at : http://stackoverflow.com/questions/5701673/custom-membershipprovider-in-net-4-0
Thanks, Alex
is working on a reply...