上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 31 下一页
摘要: https://www.cnblogs.com/johnsblog/p/6426287.html 问题:怎么保持缓存与数据库一致? 要解答这个问题,我们首先来看不一致的几种情况。我将不一致分为三种情况: 1. 数据库有数据,缓存没有数据; 2. 数据库有数据,缓存也有数据,数据不相等; 3. 数据库 阅读全文
posted @ 2018-11-20 15:04 newlangwen 阅读(178) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/q13965211/article/details/80818375 阅读全文
posted @ 2018-11-19 13:59 newlangwen 阅读(111) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u010963948/article/details/78963572 阅读全文
posted @ 2018-11-19 08:54 newlangwen 阅读(295) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/dadonggg/p/8628735.html redis集群是有很多个redis一起工作,那么就需要这个集群不是那么容易挂掉,所以呢,理论上就应该给集群中的每个节点至少一个备用的redis服务。这个备用的redis称为从节点(slave)。 1、集群 阅读全文
posted @ 2018-11-19 08:53 newlangwen 阅读(4343) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Kincym/article/details/72676813 阅读全文
posted @ 2018-11-16 16:25 newlangwen 阅读(715) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://blog.csdn.net/q13965211/article/details/80772544 节点树树形结构 Tree 结构 import java.util.List; /** * @Author fanwei * @date 2018-6-13 17:04 */ p 阅读全文
posted @ 2018-11-16 16:08 newlangwen 阅读(3165) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/ljj_9/article/details/79145324 阅读全文
posted @ 2018-11-12 10:58 newlangwen 阅读(181) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/xiaohaillong/p/6079551.html 阅读全文
posted @ 2018-10-17 09:38 newlangwen 阅读(109) 评论(0) 推荐(0) 编辑
摘要: sql server 分页按时间排序 总体思路是:使用SqlServer中的ROW_NUMBER() OVER(按某一属性升序或降序)函数来对我们所有的数据进行排序,从1开始,为每一条分组记录返回一个数字。 使用:SELECT * FROM (SELECT *,row=row_number() OV 阅读全文
posted @ 2018-10-16 17:10 newlangwen 阅读(2987) 评论(0) 推荐(0) 编辑
摘要: (1)安装与配置JDK8 1)使用wget下载JDK8: wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.orac 阅读全文
posted @ 2018-10-12 15:23 newlangwen 阅读(2930) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 31 下一页