zoukankan      html  css  js  c++  java
  • SmartSql Redis 分布式缓存

    安装 SmartSql.Cache.Redis

    Install-Package SmartSql.Cache.Redis
    

    Cache 配置

    <Cache Id="T_Test.RedisCache" Type="SmartSql.Cache.Redis.RedisCacheProvider,SmartSql.Cache.Redis">
      <Parameter Key="CacheSize" Value="1000"/>
      <Parameter Key="ConnectionString" Value="192.168.31.103"/>
      <Parameter Key="DatabaseId" Value="0"/>
      <FlushInterval Hours="24" Minutes="0" Seconds="0"/>
      <FlushOnExecute Statement="T_Test.Insert"/>
      <FlushOnExecute Statement="T_Test.Update"/>
    </Cache>
    

    Demo

    <Statement Id="GetListByRedisCache" Cache="T_Test.RedisCache">
          SELECT Top 10 T.* From T_Test T With(NoLock)
          <Include RefId="QueryParams"/>
        </Statement>
    
  • 相关阅读:
    su和sudo命令详解
    JS线程Web worker
    Navicat 批处理 自动备份数据库
    MySql【Error笔记】
    vue入门
    动态库
    环境变量
    cmake_learn
    自动编译
    网络编程
  • 原文地址:https://www.cnblogs.com/Ahoo-Wang/p/SmartSql-Redis.html
Copyright © 2011-2022 走看看