开发者

Use custom SqlMembershipProvider to store users (and roles) in Cache?

开发者 https://www.devze.com 2023-02-11 10:47 出处:网络
i\'m developing a \"small\" warehouse-management WebApplication for few users(5-10 parralel) but with a complex authorization system(checking if pages,menus,TabPanels, UserControls and even single con

i'm developing a "small" warehouse-management WebApplication for few users(5-10 parralel) but with a complex authorization system(checking if pages,menus,TabPanels, UserControls and even single controls are visible or enabled) and permanent and frequent access. Because i've only limited experi开发者_JS百科ences with the ASP.Net MembershipProvider, i'm unsure what's the best approach for following goal:

I want to hold all users, roles and frequently used masterdata in the Cache(in a Dataset). Hence every readonly access should be faster and causes less traffic than always using the database. On updates,deletes and inserts i would update the cached dataset and also the database.

Can i use or extend the SqlMembershipProvider to achieve this goal and if possible how? Should i use the stored-procedures from asp.net or simply use the standard CreateUser, GetUser, DeleteUser-functionality? Does this approach makes sense at all?

Performance is a key factor because users are paid by piece rate.

Thank you in advance.


You could probably extend the SqlMembershipProvider and make passthrough calls that cache the data.

I'm not familiar with "users are paid by piece rate". Are you trying to save data being transferred from the data? Data transferred from the webserver to the client? CPU cycles?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号