redis使用

Posted 小小高

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis使用相关的知识,希望对你有一定的参考价值。

安装为windows服务
redis-server.exe --service-install redis.conf --loglevel verbose
登录
redis-cli -h 127.0.0.1 -p 6379 -a 123

 Asp.net core应用 Redis,

Nuget :Microsoft.Extensions.Caching.Redis

 public void ConfigureServices(IServiceCollection services)
        {
           
           
            services.AddDistributedRedisCache(options =>
            {
                options.Configuration = "127.0.0.1,password=123456";
                options.InstanceName = "sample";

            });
        }
 [Route("api/[controller]")]
    public class ValuesController : Controller
    {
        private IDistributedCache _memoryCache;

        public ValuesController(IDistributedCache memoryCache)
        {
            _memoryCache = memoryCache;
        }

        // GET api/values
        [HttpGet]
        public string Get()
        {
            string key = System.Guid.NewGuid().ToString("N");
            string value = System.Guid.NewGuid().ToString("N");
            _memoryCache.SetString(key, value);
            return key;
        }

        // GET api/values/5
        [HttpGet("{key}")]
        public string Get(string key)
        {
            return _memoryCache.GetString(key);
        }

    }

 




以上是关于redis使用的主要内容,如果未能解决你的问题,请参考以下文章

Redis实现分布式锁(设计模式应用实战)

Redis实现分布式锁(设计模式应用实战)

redis存储session配制方法

Redis 学习 —— 数据类型及操作

Redis学习之列表类型详解

微信小程序代码片段