摘要:
![](https://img2024.cnblogs.com/blog/3493083/202411/3493083-20241126092541243-1247468436.png) 阅读全文
摘要:
public class T { @SneakyThrows public static void main(String[] args) { System.out.println("此行后加锁 monitorenter"); synchronized (T.class){ System.out.p 阅读全文
摘要:
有序性 import org.junit.jupiter.api.Test; public class T { //flag初始值 static boolean flag = false; @Test public void business() { new Thread(() -> { //①资源 阅读全文
摘要:
环境 drop table if exists user; create table user( id int primary key not null, roleId int not null, name varchar(20) not null, age int not null, sex ch 阅读全文
摘要:
drop table if EXISTS user; create table user( id int primary key,name VARCHAR(20),age int ); insert into user values (1,'xz',10),(2,'xz2',12); -- inno 阅读全文
摘要:
user表:存储了用户信息和用户权限 db:用户对某个数据库操作的权限 tables_priv:某个主机上某个用户对某个库上表的操作权限 # 查看表的结构 desc user; desc db; desc tables_priv; # 建表sql show create table user; sh 阅读全文
摘要:
eval EVAL script numkeys key [key ...] arg [arg ...] script:lua脚本字符串,这段Lua脚本不需要(也不应该)定义函数。 numkeys:lua脚本中【KEYS数组】的大小 key [key ...]:KEYS数组中的元素 arg [arg 阅读全文
摘要:
最左前缀法则 CREATE INDEX idx_age_classid_name ON student(age,classId,name); show index from student; -- 1【索引部分生效】 -- 索引部分生效age key=idx_age_classid_name,key 阅读全文