Default Membership Provider // Caching?
It looks like the default Membership Provider (and Role Provider) always
goes to the database to get its info.
(GetUsers, GetRoles, etc , etc).
I guess I'm going to roll my own, because I am going to need a cached
solution to avoid the database hits.
(My roles and users seldom/never change after a project rollout)
I wanted to ask in general (before I start the work of a custom membership
provider).
A. Am I right with my assumption? (no caching)
B. Is there some .config way to get caching from teh default providers that
I don't know about?
C. I really don't have any issue with ~~how the default ones work, just the
non caching. You think I might be able to use inheritance and just address
those issues?
D. If the above answers eventually lead to "roll your own", does anyone
know of a project/source showing a good "roll your own" solution.
I just got back from a long weekend trip in the car with my wife and 3 dogs.
So I'm a little on the "tuckered out" side today.
Thanks..............
.
Relevant Pages
- examples of membership/role provider for Oracle
... Does anyone have any example of writing a membership or role provider for ... It looks like we may be able to use the AD membership provider, ... the role will almost certainly be Oracle. ... (microsoft.public.dotnet.framework.aspnet) - Re: How to Remote a custom membership or profile provider ???
... If you don't want your provider to have a connectionStringName property, don't add it to your provider and write the code to support it. ... For example, there is a Membership provider, Role provider, and Profile provider. ... If you are trying to use all of those features, you will have to create a custom provider implementation for each. ... If you want to use the Login controls, you will definitely have to create a custom Membership provider that uses remoting to get its data, as opposed to the default SqlMembershipProvider which uses a connection string. ... (microsoft.public.dotnet.framework.aspnet) - RoleProvider question -- help please (.NET 2.0)
... I derived a custom provider from the provider class. ... Now, as I understand it, the information from the Membership Provider ... gets called and the database gets queried, ... not need to be queried again for user info by the Membership Provider, ... (microsoft.public.dotnet.framework.aspnet) - Re: Membership custom provider - logout function
... The custom membership provider should work against this security server. ... the data store does not generate a sessionID - the data store says yes/no to the credentials - and afterwards the login control creates something called an "authentication ticket" - this tickets get "attached" to the current request/response using either a cookie or query string mangling. ... You can configure the behaviour, lifetime, name etc. of that ticket using the config element. ... (microsoft.public.dotnet.framework.aspnet.security) - Re: MS Oracle Data Provider BUG: Data corrupt after 16 rows with O
... Could you use this to check the data in your database? ... Once you have done this with both the Oracle managed provider and either ... imported into the 9i database without any errors (i tried 8i Client as well ... (microsoft.public.dotnet.framework.adonet) |
|