redis的作用:
作用就是在每次查询接口的时候首先判断Redis中是否有缓存,有的话就读取,没有就查询数据库并保存到Redis中,下次再查询的话就会直接从缓存中读取了。
用法参考:https://crossoverjie.top/2016/12/18/SSM7/
安装redis
win10 redis
https://www.cnblogs.com/W-Yentl/p/7831671.html
http://www.cnblogs.com/ningskyer/articles/5730611.html
输入redis-server.exe redis.windows.conf
碰到问题creating server tcp listening socket 127.0.0.1:6379: bind No error
解决方式
https://blog.csdn.net/n_fly/article/details/52692480
打开cmd 进入d:
->cd Redis
先起server端redis-server.exe redis.windows.conf
再启客户端redis-cli.exe -h 127.0.0.1 -p 6379 需要密码的话客户端起redis-cli.exe -a 123456
redis可视化客户端
https://www.cnblogs.com/zheting/p/7670154.html
在config中设置密码 requirepass = 123456
在cmd中起server,代码中配置好config,JedisPool得到Jedis,可以进行操作了。
JedisPoolConfig config = new JedisPoolConfig();
config.setMaxIdle(20);
config.setMaxWaitMillis(1000);
JedisPool pool = new JedisPool(config, "127.0.0.1", 6379, 10000, "123456");
Jedis jedis = pool.getResource();
print(0, jedis.keys("*"));