连接Mysql客户端 mysql -hxxx.xx.x.x -uxxx -p'xxxxxx' -P xxx -- ip 用户名 密码 端口号 show slave status\G; 在MYSQL的主从复制中 ,通过命令show master status,可以查看master数据库当前正在使用的二 ...
分类:
数据库 时间:
2021-06-09 15:31:03
阅读次数:
0
前言 有时候我们使用drf的Response,会发现默认返回的格式不太友好,每次我们都需要写入以下的格式 return Response({ "status": 0, "message": "成功", "results": serializer.data }) 这样会非常麻烦,我们想默认就有stat ...
分类:
其他好文 时间:
2021-06-09 15:29:52
阅读次数:
0
Xhorse VVDI2 V7.0.2 software supports unlock FEM/BDC directly for ISTA V4.28.41 version. *** VVDI2 V7.0.2*** 2021-06-08*** Require firmware V7.0.0**** ...
分类:
其他好文 时间:
2021-06-09 15:27:05
阅读次数:
0
前言 我们都知道 Go 语言中的 slice 具有动态扩容的机制(不知道的同学请先补课 Go 切片) 但是其底层机制是什么呢?本着知其然,知其所以然的探索精神去研究一番。还不是为了应试 手动狗头 go version go1.15.6 windows/amd64 扩容 既然是八股文,哪就先说结论,切 ...
分类:
其他好文 时间:
2021-06-09 10:36:53
阅读次数:
0
1 前言 Svelte 中反应性不仅可以作声明用,还可以用在一段语句中,这点类似 Vue 中的 watch,但比 watch 灵活。 2 正文 <script> import { loop_guard } from "svelte/internal"; let count = 3; const in ...
分类:
其他好文 时间:
2021-06-09 10:36:05
阅读次数:
0
java文件中包含3700行 /** * Returns the {@code Class} object associated with the class or * interface with the given string name. Invoking this method is * e ...
分类:
编程语言 时间:
2021-06-09 10:31:41
阅读次数:
0
Linux uniq 命令用于检查及删除文本文件中重复出现的行列,一般与 sort 命令结合使用。 uniq 可检查文本文件中重复出现的行列。 语法 uniq [-cdu][-f<栏位>][-s<字符位置>][-w<字符位置>][--help][--version][输入文件][输出文件] 参数: ...
分类:
系统相关 时间:
2021-06-08 23:36:09
阅读次数:
0
创建maven web工程 在pom.xml中导入依赖: <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> ...
分类:
其他好文 时间:
2021-06-08 23:31:21
阅读次数:
0
备注:此工具类需要JDK8+环境 1 package com.common.util; 2 3 import java.nio.charset.StandardCharsets; 4 import java.security.MessageDigest; 5 import java.security ...
分类:
编程语言 时间:
2021-06-08 23:30:55
阅读次数:
0
实验任务一: #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char n ...
分类:
其他好文 时间:
2021-06-08 23:29:04
阅读次数:
0