服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C# - C#中缓存的基本使用方法

C#中缓存的基本使用方法

2022-02-28 14:27王继峰 C#

项目开发过程中缓存的应用到处可见,下面这篇文章主要给大家介绍了关于C#中缓存的基本使用方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习

前言

缓存主要是为了提高数据的读取速度。因为服务器和应用客户端之间存在着流量的瓶颈,所以读取大容量数据时,使用缓存来直接为客户端服务,可以减少客户端与服务器端的数据交互,从而大大提高程序的性能。

缓存这个东西可大可小,小到一个静态的字段,大到将整个数据库cache起来。项目开发过程中缓存的应用到处可见,本文主要介绍一下使用的方法,下面话不多说了,来一起看看详细的介绍吧

1.在asp.net中页面缓存的使用方法简单,只需要在aspx页的顶部加上一句声明即可:

?
1
<%@ outputcache duration="100" varybyparam="none" %>

   duration:缓存时间(秒为单位),必填属性

2.使用微软自带的类库system.web.caching

新手接触的话不建议直接使用微软提供的类库,因为这样对理解不够深刻。所以在这里我带大家自己写一套缓存操作方法,这样理解得更加清晰。

话不多说,代码开敲。

一、首先,先模拟数据来源。新建一个类,写一个数据操作方法(该方法耗时、耗资源)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading;
using system.threading.tasks;
 
namespace cache
{
 public class datasource
 {
 /// <summary>
 /// 模拟从数据库读取数据
 /// 耗时、耗cpu
 /// </summary>
 /// <param name="count"></param>
 public static int getdatabydb(int count)
 {
  console.writeline("-------getdatabydb-------");
  int result = 0;
  for (int i = count; i < 99999999; i++)
  {
  result += i;
  }
  thread.sleep(2000);
  return result;
 }
 }
}

 二、编写一个缓存操作类

2.1 构造一个字典型容器,用于存放缓存数据,权限设为private ,防止随意访问造成数据不安全性

?
1
2
//缓存容器
private static dictionary<string, object> cachedictionary = new dictionary<string, object>();

2.2 构造三个方法(添加数据至缓存容器、从缓存容器获取数据、判断缓存是否存在)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/// <summary>
 /// 添加缓存
 /// </summary>
 public static void add(string key, object value)
 {
  cachedictionary.add(key, value);
 }
 
 /// <summary>
 /// 获取缓存
 /// </summary>
 public static t get<t>(string key)
 {
  return (t)cachedictionary[key];
 }
 
 /// <summary>
 /// 判断缓存是否存在
 /// </summary>
 /// <param name="key"></param>
 /// <returns></returns>
 public static bool exsits(string key)
 {
  return cachedictionary.containskey(key);
 }

三、程序入口编写测试方法

3.1 先看一下普通情况不适用缓存,它的执行效率有多慢

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
 
namespace cache
{
 class program
 {
 static void main(string[] args)
 {
  for (int i = 1; i < 6; i++)
  {
  console.writeline($"------第{i}次请求------");
  int result = datasource.getdatabydb(666);
  console.writeline($"第{i}次请求获得的数据为:{result}");
  }
 }
 }
}

C#中缓存的基本使用方法

3.2 接下来,我们编写缓存试用方法。概念无非就是根据key前往字典容器里查找是否有相对应缓存数据,有则直接调用,没有则生成并存入字典容器里。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
 
namespace cache
{
 class program
 {
  static void main(string[] args)
  {
   for (int i = 1; i < 6; i++)
   {
    console.writeline($"------第{i}次请求------");
    //int result = datasource.getdatabydb(666);
    int result = 0;
    //key的名字一定要确保请求的准确性 datasource getdatabydb 666缺一不可
    string key = "datasource_getdatabydb_666";
    if (cachehelper.exsits(key))
    {
     //缓存存在,直接获取原数据
     result = cachehelper.get<int>(key);
    }
    else
    {
     //缓存不存在,去生成缓存,并加入容器
     result = datasource.getdatabydb(666);
     cachehelper.add(key, result);
    }
    console.writeline($"第{i}次请求获得的数据为:{result}");
   }
  }
 }
}

 3.3 我们看看加入缓存之后的效率如何

C#中缓存的基本使用方法

四、可以看到,瞬间完成。事已至此,缓存的使用基本是完成了。但是回过头来我们想想看。一个系统成百上千个地方使用缓存的话,那岂不是要写成百上千个if else判断缓存是否存在,然后获取?

答案显而易见,肯定不合理的。所以我们要对代码进行优化。

4.1 缓存操作类(cachehelper)编写一个通用的获取方法

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/// <summary>
  /// 缓存获取方法
  /// </summary>
  /// <typeparam name="t"></typeparam>
  /// <param name="key">缓存字典容器对应key</param>
  /// <param name="func">委托方法 传入操作对象</param>
  /// <returns></returns>
  public static t getcache<t>(string key, func<t> func)
  {
   t t = default(t);
   if (cachehelper.exsits(key))
   {
    //缓存存在,直接获取原数据
    t = cachehelper.get<t>(key);
   }
   else
   {
    //缓存不存在,去生成缓存,并加入容器
    t = func.invoke();
    cachehelper.add(key, t);
   }
   return t;
  }

4.2 程序入口进行调用,传入的委托参数为lamad表达式优化后的代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
 
namespace cache
{
 class program
 {
  static void main(string[] args)
  {
   for (int i = 1; i < 6; i++)
   {
    console.writeline($"------第{i}次请求------");
    int result = 0;
    //key的名字一定要确保请求的准确性 datasource getdatabydb 666缺一不可
    string key = "datasource_getdatabydb_666";
 
    //将需要执行的获取数据操作编写成委托传入方法(重点)
    //func<int> func = new func<int>(() => { return datasource.getdatabydb(666); });
 
    result = cachehelper.getcache(key, () => datasource.getdatabydb(666));
    console.writeline($"第{i}次请求获得的数据为:{result}");
   }
  }
 }
}

到这里,缓存的使用基本结束了。最好值得一提的是,缓存尽量在数据量小、重复查询量大的情况下使用。因为缓存也是要耗内存的,服务器内存是有限的!

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。

原文链接:http://www.cnblogs.com/wangjifeng23/p/9626119.html

延伸 · 阅读

精彩推荐
  • C#C# 后台处理图片的几种方法

    C# 后台处理图片的几种方法

    本篇文章主要介绍了C# 后台处理图片的几种方法,非常具有实用价值,需要的朋友可以参考下。...

    IT小伙儿10162021-12-08
  • C#浅谈C# winForm 窗体闪烁的问题

    浅谈C# winForm 窗体闪烁的问题

    下面小编就为大家带来一篇浅谈C# winForm 窗体闪烁的问题。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    C#教程网7962021-12-21
  • C#C#实现的文件操作封装类完整实例【删除,移动,复制,重命名】

    C#实现的文件操作封装类完整实例【删除,移动,复制,重命名】

    这篇文章主要介绍了C#实现的文件操作封装类,结合完整实例形式分析了C#封装文件的删除,移动,复制,重命名等操作相关实现技巧,需要的朋友可以参考下...

    Rising_Sun3892021-12-28
  • C#Unity3D UGUI实现缩放循环拖动卡牌展示效果

    Unity3D UGUI实现缩放循环拖动卡牌展示效果

    这篇文章主要为大家详细介绍了Unity3D UGUI实现缩放循环拖动展示卡牌效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参...

    诗远3662022-03-11
  • C#聊一聊C#接口问题 新手速来围观

    聊一聊C#接口问题 新手速来围观

    聊一聊C#接口问题,新手速来围观,一个通俗易懂的例子帮助大家更好的理解C#接口问题,感兴趣的小伙伴们可以参考一下...

    zenkey7072021-12-03
  • C#C#直线的最小二乘法线性回归运算实例

    C#直线的最小二乘法线性回归运算实例

    这篇文章主要介绍了C#直线的最小二乘法线性回归运算方法,实例分析了给定一组点,用最小二乘法进行线性回归运算的实现技巧,具有一定参考借鉴价值,需要...

    北风其凉8912021-10-18
  • C#c#学习之30分钟学会XAML

    c#学习之30分钟学会XAML

    一个界面程序的核心,无疑就是界面和后台代码,而xaml就是微软为构建应用程序界面而创建的一种描述性语言,也就是说,这东西是搞界面的...

    C#教程网8812021-12-10
  • C#C#基础之泛型

    C#基础之泛型

    泛型是 2.0 版 C# 语言和公共语言运行库 (CLR) 中的一个新功能。接下来通过本文给大家介绍c#基础之泛型,感兴趣的朋友一起学习吧...

    方小白7732021-12-03