摘要:
Error Code : 1381You are not using binary logging show variables like '%log_bin%'; 在mysqld配置项下面加上log_bin=mysql_bin [mysqld] log-bin="C:/Program Files/ 阅读全文
摘要:
如图:我们将删除 id=2的数据,并恢复 SHOW BINARY LOGS; You are not using binary logging show binlog events in 'mysql-bin.000001' 导出删除日期范围内的binlog日志 #根据时间段 mysqlbinlog 阅读全文
摘要:
如果线程执行N久还没结束,就想把它杀掉,把线程留给其它任务使用。 思路:主线程执行时,开一个子线程来监控它,看是否执行完成。如果没有执行完成就把它干了,执行完了就不管。 package com.vipsoft.Thread; public class ThreadMain { public stat 阅读全文
摘要:
https://www.jianshu.com/p/cc2281b1a6bc https://blog.csdn.net/tonywu1992/article/details/83419448 继承关系图 /** * 节点类,用于存储数据 */ static class Node<E> { E it 阅读全文