文件緩存

来源:http://www.cnblogs.com/s0611163/archive/2016/12/29/6234960.html
-Advertisement-
Play Games

緩存存儲在文件中,根據過期時間過期,也可以手動刪除。IIS回收進程時緩存不丟失。 代碼: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security ...


緩存存儲在文件中,根據過期時間過期,也可以手動刪除。IIS回收進程時緩存不丟失。

代碼:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Runtime.Serialization.Formatters.Binary;
using System.Threading;

namespace Common.Utils
{
    /// <summary>
    /// 緩存工具類
    /// </summary>
    public static class CacheUtil
    {
        #region 變數
        /// <summary>
        /// 緩存路徑
        /// </summary>
        private static string folderPath = Application.StartupPath + "\\cache";
        /// <summary>
        ////// </summary>
        private static object _lock = new object();
        private static BinaryFormatter formatter = new BinaryFormatter();
        #endregion

        #region 構造函數
        static CacheUtil()
        {
            if (!Directory.Exists(folderPath))
            {
                Directory.CreateDirectory(folderPath);
            }
        }
        #endregion

        #region SetValue 保存鍵值對
        /// <summary>
        /// 保存鍵值對
        /// </summary>
        public static void SetValue(string key, object value, int expirationMinutes = 0)
        {
            CacheData data = new CacheData(key, value);
            data.updateTime = DateTime.Now;
            data.expirationMinutes = expirationMinutes;

            string keyMd5 = GetMD5(key);
            string path = folderPath + "\\" + keyMd5 + ".txt";
            lock (_lock)
            {
                using (FileStream fs = new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write))
                {
                    fs.SetLength(0);
                    formatter.Serialize(fs, data);
                    fs.Close();
                }
            }
        }
        #endregion

        #region GetValue 獲取鍵值對
        /// <summary>
        /// 獲取鍵值對
        /// </summary>
        public static object GetValue(string key)
        {
            string keyMd5 = GetMD5(key);
            string path = folderPath + "\\" + keyMd5 + ".txt";
            if (File.Exists(path))
            {
                using (FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read))
                {
                    CacheData data = (CacheData)formatter.Deserialize(fs);
                    fs.Close();
                    if (data.expirationMinutes > 0 && DateTime.Now.Subtract(data.updateTime).TotalMinutes > data.expirationMinutes)
                    {
                        File.Delete(path);
                        return null;
                    }
                    return data.value;
                }
            }
            return null;
        }
        #endregion

        #region Delete 刪除
        /// <summary>
        /// 刪除
        /// </summary>
        public static void Delete(string key)
        {
            string keyMd5 = GetMD5(key);
            string path = folderPath + "\\" + keyMd5 + ".txt";
            if (File.Exists(path))
            {
                lock (_lock)
                {
                    File.Delete(path);
                }
            }
        }
        #endregion

        #region DeleteAll 全部刪除
        /// <summary>
        /// 全部刪除
        /// </summary>
        public static void DeleteAll()
        {
            string[] files = Directory.GetFiles(folderPath);
            foreach (string file in files)
            {
                File.Delete(file);
            }
        }
        #endregion

        #region 計算MD5值
        /// <summary>
        /// 計算MD5值
        /// </summary>
        private static string GetMD5(string value)
        {
            string base64 = Convert.ToBase64String(ASCIIEncoding.ASCII.GetBytes(value)).Replace("/", "-");
            if (base64.Length > 200)
            {
                MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
                byte[] bArr = md5.ComputeHash(ASCIIEncoding.ASCII.GetBytes(value));
                StringBuilder sb = new StringBuilder();
                foreach (byte b in bArr)
                {
                    sb.Append(b.ToString("x2"));
                }
                return sb.ToString();
            }
            return base64;
        }
        #endregion
    }

    #region CacheData 緩存數據
    /// <summary>
    /// 緩存數據
    /// </summary>
    [Serializable]
    public class CacheData
    {
        /// <summary>
        ////// </summary>
        public string key { get; set; }
        /// <summary>
        ////// </summary>
        public object value { get; set; }
        /// <summary>
        /// 緩存更新時間
        /// </summary>
        public DateTime updateTime { get; set; }
        /// <summary>
        /// 過期時間(分鐘),0表示永不過期
        /// </summary>
        public int expirationMinutes { get; set; }

        public CacheData(string key, object value)
        {
            this.key = key;
            this.value = value;
        }
    }
    #endregion

}
View Code

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 項目上線保證系統安全穩定,一般要做備份工作。該文是本人最近一個項目中使用到的。當然備份的數據也要定時刪除的,節省空間嗎。 ...
  • Vagrant( "官網" 、 "github" )是一款構建虛擬開發環境的工具,支持 Window,Linux,Mac OS,Vagrant 中的 Boxes 概念類似於 Docker(實質是不同的),你可以把它看作是一個箱子,裡面裝了一些東西,Vagrant 創建虛擬機的時候,需要用到 Box ...
  • 我是用U盤裝的centos,在進行硬碟規劃時,看到硬碟的可用空間太少 這是因為我的硬碟以前裝的是windows系統,硬碟幾乎都已經被windows 操作系統給使用了,剩餘空間也只會是windows用剩下那2m空間。網上有好多人說在windows下格式化一個盤就行,我用PE軟體直接格式化了C盤(不想用 ...
  • RHEL 7 with NetworkManager With nmcli, create a new connection of the VLAN type where con-name is the name of the connection, ifname is the name of th ...
  • 今天在阿裡雲上買了一個centos7的伺服器,連接上以後,發現一個很長很長的主機名,看著讓人很是不爽,就想著怎樣將其改成一個有個性的名字。 這裡我想說的是,在centos7 版本的linux系統上和centos6上的修改主機名的方法不一樣,希望大家以後百度的時候,要帶上版本號。本人是查了好多文 章, ...
  • 最近公司有一個幾千萬行的大表需要按照城市的id欄位拆分成不同的csv文件。 寫了一個自動化的shell腳本 在/home/hdh 下麵 linux-xud0:/home/hdh # lltotal 16-rwxrwxrwx 1 root root 902 Dec 28 07:47 cf.sh-rwx ...
  • 工作用到文件上傳的功能,在這個分享下 ~~ Controller: view: 文件是上傳到wwwroot目錄文件下的,這我也看不太懂還在學習,歡迎大家交流~~ 下麵是jquery ajax方式上傳的 post方式的action的z參數沒用 因為只有一個post方式的會404錯誤所以又加了一個get ...
  • 有許多耗時操作時,還要響應用戶操作。這時候就需要用其他線程或者非同步來搞。本來是改造公司的日誌組件。因為多上了個國外大區的業務到來本系統來。這個系統其他地方都好就是日誌,動不動就要死給我們看。有時候尋找業務流程時缺失了一塊日誌,令人欲仙欲死。剛好年末了沒什麼業務上線,決定改造日誌。前人栽樹後人心涼。本 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...