Redis
司马缸砸缸了
主要擅长领域:中间件,JAVA,分布式,APM。善于专研,乐于分享。人生格言:只管努力,其他的交给命运。
展开
-
Spring boot下配置使用redis--template编码形式
Spring boot下配置使用redis在做项目中用到了redis,在此简单记录下,希望对你们有用,欢迎技术交流windows下的Redis安装很简单,只要把jar下载之后解压后,运行redis-server.exe就可以了 下载地址:Redis-x64.zip之后cmd进入d://redis路径下运行redis-cli.exe -h 127.0.0.1 -p 6379链接...原创 2017-06-25 18:07:37 · 2928 阅读 · 0 评论 -
Springboot中Redis的简单实用--template编码形式
Springboot中Redis的简单实用再上一遍文章中已经介绍过Spring boot中redis的配置http://blog.csdn.net/yy756127197/article/details/73719588 现在介绍他的简单实用引入bean@Resource private RedisTemplate<Serializable, Serializable> template原创 2017-06-26 14:16:07 · 846 阅读 · 0 评论 -
Spring boot下配置使用redis--注解形式
继上一篇的template编码方式使用redis 编码形式配置(一) 编码形式使用(二)经过深入学习发现注解形式的更好用一些,省去一些繁琐的代码,使得你代码看起来更优雅 安装redis服务端请看编码形式配置(一)1. pom.xml添加jar包支持,使用springboot自带的redis启动器 <dependency> ...原创 2017-07-13 20:35:28 · 15552 阅读 · 6 评论 -
Redis sentinel 节点修改密码
Sentinel和Redis身份验证当一个master配置为需要密码才能连接时,客户端和slave在连接时都需要提供密码。master和slave节点 master通过requirepass设置自身的密码,不提供密码无法连接到这个master。 slave通过masterauth来设置访问master时的密码。 但是当使用了sentinel时,由于一个master可...原创 2018-06-14 20:28:16 · 6315 阅读 · 0 评论 -
Redis单机配置
# Redis configuration file example.## Note that in order to read the configuration file, Redis must be# started with the file path as first argument:## ./redis-server /path/to/redis.conf# Note ...原创 2019-03-27 15:52:11 · 321 阅读 · 0 评论