. Net framework cache traversal,. netframework Cache

Source: Internet
Author: User

. Net framework cache traversal,. netframework Cache

Background:

The logon information in the company's old framework is saved using the MemoryCache. To achieve single-user login (that is, an account cannot log on to a colleague), you need to traverse the logged-on information before logon.

The general idea is as follows:

This method can be used to clear all caches.

1. HttpRuntime. Cache

System. Collections. IDictionaryEnumerator cacheEnum = HttpRuntime. Cache. GetEnumerator ();
While (cacheEnum. MoveNext () {// cacheEnum. Key. ToString () is the cache name, And cacheEnum. Value is the cache Value}

2. System. Runtime. Caching. ObjectCache
ObjectCache cache = MemoryCache. Default
IEnumerable <KeyValuePair <string, object> items = cache. AsEnumerable ();
Foreach (KeyValuePair <string, object> item in items) {// item. Key is the cache name, and item. Value is the cache Value}

This cache is added in. NET4.0.

The following is an example of how a single user can log on:

When a single user logs on, it traverses the information of the logged on user and finds that the same login account is removed from the cache and then logs on again.

(Add distributed cache later !)

Wujf

With pursuit, We have motivation!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.