上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 40 下一页
摘要: 使用了chrony模块 dnf install chrony vim /etc/chrony.conf # Use public servers from the pool.ntp.org project. # Please consider joining the pool (http://www 阅读全文
posted @ 2020-09-02 14:14 b̶i̶n̶g̶.̶ 阅读(244) 评论(0) 推荐(0)
摘要: 1.Supervisor安装 准备工作: dnf install python3.8 -y 正式安装: wget https://pypi.python.org/packages/source/s/supervisor/supervisor-4.2.0.tar.gz tar zxvf supervi 阅读全文
posted @ 2020-09-02 08:32 b̶i̶n̶g̶.̶ 阅读(784) 评论(0) 推荐(0)
摘要: var oScript = document.createElement('script'); oScript.type = 'text/javascript'; oScript.src = "xx.js"; /* ** script标签的onload和onreadystatechange事件 ** 阅读全文
posted @ 2020-04-22 19:53 b̶i̶n̶g̶.̶ 阅读(1250) 评论(0) 推荐(0)
摘要: let a = undefined; let b = null; let c = ''; let d = 0; let e = {}; let f = []; if (a) { console.log("undefined 能过"); } else { console.log("undefined 阅读全文
posted @ 2020-04-22 19:05 b̶i̶n̶g̶.̶ 阅读(155) 评论(0) 推荐(0)
摘要: 原文:https://blog.csdn.net/qq_27461747/article/details/89441778 阅读全文
posted @ 2020-04-19 23:40 b̶i̶n̶g̶.̶ 阅读(279) 评论(0) 推荐(0)
摘要: Detached:对象存在,但未由对象服务跟踪。在创建实体之后、但将其添加到对象上下文之前,该实体处于此状态;Unchanged:自对象加载到上下文中后,或自上次调用 System.Data.Objects.ObjectContext.SaveChanges() 方法后,此对象尚未经过修改;Adde 阅读全文
posted @ 2020-04-01 23:29 b̶i̶n̶g̶.̶ 阅读(213) 评论(0) 推荐(0)
摘要: 1.在创建索引的时候,如果索引中的数据列只有一个,那么不管是升序还是降序的定义,在查询中使用成本都是一样的。 2.如果索引中的数据列有多个,那么每一个列的升序和降序就非常的重要,如果在查询中的列的排序和索引中定义的不一样,成本就很大,反正,就很小。 原文出处:http://blog.chinauni 阅读全文
posted @ 2020-04-01 23:08 b̶i̶n̶g̶.̶ 阅读(705) 评论(0) 推荐(0)
摘要: 一、事务的并发问题 1、脏读:事务A读取了事务B更新的数据,然后B回滚操作,那么A读取到的数据是脏数据 2、不可重复读:事务 A 多次读取同一数据,事务 B 在事务A多次读取的过程中,对数据作了更新并提交,导致事务A多次读取同一数据时,结果 不一致。 3、幻读:系统管理员A将数据库中所有学生的成绩从 阅读全文
posted @ 2020-03-31 11:44 b̶i̶n̶g̶.̶ 阅读(150) 评论(0) 推荐(0)
摘要: 一、中间件实例 /// <summary> /// 请求日志中间件 /// </summary> public class RequestLogMiddleWare { private static readonly object o = new object(); private readonly 阅读全文
posted @ 2020-03-26 10:49 b̶i̶n̶g̶.̶ 阅读(324) 评论(0) 推荐(0)
摘要: 原文:https://www.cnblogs.com/Leo_wl/p/7508650.html 阅读全文
posted @ 2020-03-25 16:31 b̶i̶n̶g̶.̶ 阅读(144) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 40 下一页