上一页 1 ··· 27 28 29 30 31
摘要: 淘汰策略 https://blog.csdn.net/qq_55961709/article/details/124568269 LRU算法和LFU算法的区别: LRU:最近最少使用,淘汰时间长没有使用的 LFU:最不经常使用,淘汰使用次数最少的 过期策略 1.定时删除:使用定时器扫描过期的key, 阅读全文
posted @ 2022-07-31 15:51 shigp1 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 缓存穿透 大量请求访问不在缓存的数据,导致大量请求作用到数据库。 解决方式: 1.缓存空对象 2.使用布隆过滤器判断请求的key是否存在 缓存击穿 某一个热key过期导致大量请求从数据库获取。 解决方式: 1.缓存过期时间续期 2.加锁 3.用二级缓存 缓存雪崩 多个热key同时失效导致大量请求打到 阅读全文
posted @ 2022-07-30 20:39 shigp1 阅读(16) 评论(0) 推荐(0) 编辑
摘要: mysql更改隔离级别 参考https://blog.csdn.net/qq_21299835/article/details/121189565 关闭mysql事务自动提交:set autocommit = off (设置session的autocommit) 查看自动提交是否已关闭:select 阅读全文
posted @ 2022-07-29 12:20 shigp1 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 数据库隔离级别解决什么问题 脏读:一个事务读到另一个事务未提交的数据。 不可重复读:一个事务在两个不同时间读到的记录不一致 幻读:一个事务两次读取的记录数不一样 不可重复读和幻读的区别是: 不可重复读是由于update改变了记录,幻读是insert或delete改变了某个范围的记录数 数据库隔离级别 阅读全文
posted @ 2022-07-28 21:42 shigp1 阅读(19) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_29860591/article/details/113726100 阅读全文
posted @ 2022-07-28 20:29 shigp1 阅读(5) 评论(0) 推荐(0) 编辑
摘要: String str1 = "hello"; String str2 = "hel" + new String("lo"); String str3 = "hel"; String str4 = "lo"; String str34 = str3 + str4; String str5 = "hel 阅读全文
posted @ 2022-07-28 20:21 shigp1 阅读(114) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31