asp.net 網站使用redis 存儲session


1、下載windows redis 並安裝

地址:https://github.com/microsoftarchive/redis/releases/tag/win-3.2.100

第二步:使用nuget安裝Microsoft.Web.RedisSessionStateProvider

 

第三步:安裝完成后配置web.config

 <sessionState mode="Custom" customProvider="MySessionStateStore">
      <providers>
        <!-- For more details check https://github.com/Azure/aspnet-redis-providers/wiki --><!-- Either use 'connectionString' OR 'settingsClassName' and 'settingsMethodName' OR use 'host','port','accessKey','ssl','connectionTimeoutInMilliseconds' and 'operationTimeoutInMilliseconds'. --><!-- 'throwOnError','retryTimeoutInMilliseconds','databaseId' and 'applicationName' can be used with both options. --><!--
          <add name="MySessionStateStore" 
            host = "127.0.0.1" [String]
            port = "" [number]
            accessKey = "" [String]
            ssl = "false" [true|false]
            throwOnError = "true" [true|false]
            retryTimeoutInMilliseconds = "5000" [number]
            databaseId = "0" [number]
            applicationName = "" [String]
            connectionTimeoutInMilliseconds = "5000" [number]
            operationTimeoutInMilliseconds = "1000" [number]
            connectionString = "<Valid StackExchange.Redis connection string>" [String]
            settingsClassName = "<Assembly qualified class name that contains settings method specified below. Which basically return 'connectionString' value>" [String]
            settingsMethodName = "<Settings method should be defined in settingsClass. It should be public, static, does not take any parameters and should have a return type of 'String', which is basically 'connectionString' value.>" [String]
            loggingClassName = "<Assembly qualified class name that contains logging method specified below>" [String]
            loggingMethodName = "<Logging method should be defined in loggingClass. It should be public, static, does not take any parameters and should have a return type of System.IO.TextWriter.>" [String]
            redisSerializerType = "<Assembly qualified class name that implements Microsoft.Web.Redis.ISerializer>" [String]
          />
        --><add name="MySessionStateStore"   type="Microsoft.Web.Redis.RedisSessionStateProvider" host="127.0.0.1" port="6379" operationTimeoutInMilliseconds="120" accessKey="" ssl="false" />
     </providers>
    </sessionState>

  第四步:配置后,登陸;查看是否成功 :進入redis安裝文件夾,打開命令窗口 運行: redis-cli  然后輸入 keys * 查詢

如在代碼中使用 Session["redissession"] = "sa";

則生成兩個Hash key 

如在代碼中使用 Session["redissession"] = "sa";

則生成兩個Hash key 

其中wmhe4v0zvbbfinkdnckutv4l就是ASP.NET_SessionId,通過監視請求也可以看見

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM