上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 37 下一页
摘要: 读锁:session1:lock table book read; unlock tables; session1可以读book 不可以写book 也不可以读写其它表 session2可以读book 也可以读写其它表 可以写book(但阻塞的需要session1解锁后unlock tables;) 阅读全文
posted @ 2022-06-08 10:01 howhy 阅读(93) 评论(0) 推荐(0) 编辑
摘要: ACID:原子性 一致性 隔离性 持久性 事务: 1、更新丢失:事务A更新覆盖了事务B的更新导致更新丢失 2、脏读:事务B读取了事务A修改未提交的数据 3、不可重复读:一个事务读取了某些数据后的某个时间,再次读取以前读过的数据时数据发生了改变或删除 4、幻读:事务A读取到了事务B提交的新增数据,不符 阅读全文
posted @ 2022-06-07 15:50 howhy 阅读(20) 评论(0) 推荐(0) 编辑
摘要: mysql -uroot -p 登录后 查询慢查询设置:show variables like '%slow_query_log%'; 临时设置:set global slow_query_log=1; 永久设置:my.cnf slow_query_log=1 slow_query_log_file 阅读全文
posted @ 2022-06-07 11:12 howhy 阅读(27) 评论(0) 推荐(0) 编辑
摘要: ##main public class Buyer { public static void main(String[] args) { taobao taobao = new taobao(); SaleUDisk saleUDisk = (SaleUDisk) Proxy.newProxyIns 阅读全文
posted @ 2022-05-24 16:00 howhy 阅读(20) 评论(0) 推荐(0) 编辑
摘要: package com.howhy.domain; import java.util.HashMap; public class R<T> { private String msg; private int code; private T data; private R(MsgCode msgCod 阅读全文
posted @ 2022-05-20 11:21 howhy 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-05-18 11:27 howhy 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-05-17 16:05 howhy 阅读(11) 评论(0) 推荐(0) 编辑
摘要: this的几种基本情况说明: 我们所研究的this,都是研究函数私有上下文中的this 因为全局上下文中的this是window 块级代码上下文没有自己的this,在此上下文中遇到的this,都是其所处环境(上级上下文)中的this 箭头函数和块级上下文类似,也没有自己的this,在此上下文中遇到的 阅读全文
posted @ 2022-04-12 16:53 howhy 阅读(41) 评论(0) 推荐(0) 编辑
摘要: .sanjiao{ width:0px; height:0px; /* background-color: red; */ border: 50px solid; border-top-color: transparent; border-right-color: transparent; bord 阅读全文
posted @ 2022-04-12 13:36 howhy 阅读(16) 评论(0) 推荐(0) 编辑
摘要: vagrant: https://www.vagrantup.com/ 下载Vagrant 2.2.6 virtualbox; https://www.virtualbox.org/wiki/Download_Old_Builds_5_2 下载5.2.4 vagrant 命令行:初始化 vagran 阅读全文
posted @ 2022-03-05 09:23 howhy 阅读(33) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 37 下一页