封装markdown.js /* * @Author: your name * @Date: 2021-05-04 16:07:50 * @LastEditTime: 2021-05-04 16:29:16 * @LastEditors: Please set LastEditors * @Desc ...
分类:
其他好文 时间:
2021-05-24 04:11:20
阅读次数:
0
与i个字符串里只有左括号和右括号,求连续的完整括号最大长度。 ()()()=>6、())(()()=>4 肯定是偶数,根据题目描述,如果要括号个数就除以2 中断条件:遇到了一个多余的右括号 中断的时候结算长度 附上C语言代码: int length(char[] s){ int depth = 0, ...
分类:
其他好文 时间:
2021-05-24 04:11:04
阅读次数:
0
当使用PProf不是太详细的时候就可以使用 trace来查看跟踪了 这个命令可以配合PProf 先把trace文件下载下来 curl http://域名/debug/pprof/trace?seconds=20 > trace.out 使用 go tool trace C:\Users\shihan ...
分类:
其他好文 时间:
2021-05-24 04:10:43
阅读次数:
0
Java 应用性能优化是一个老生常谈的话题,典型的性能问题如页面响应慢、接口超时,服务器负载高、并发数低,数据库频繁死锁等。 尤其是在“糙快猛”的互联网开发模式大行其道的今天,随着系统访问量的日益增加和代码的臃肿,各种性能问题开始纷至沓来。 Java 应用性能的瓶颈点非常多,比如磁盘、内存、网络 I ...
分类:
编程语言 时间:
2021-05-24 04:10:29
阅读次数:
0
nosql not only sql用户画像:热点数据:经常被使用的数据mysql## 安装- 可以使用yum 安装,要先配置epel源 ```shell yum install -y redis ```- 可以编译安装 ```SHELL wget http://download.redis.io/ ...
分类:
数据库 时间:
2021-05-24 04:10:10
阅读次数:
0
import scala.util.parsing.json.JSON._import scala.io.Source val js_file="pspldata.area%s_tableMapping.json".format(1)val js_source = Source.fromFile(j ...
分类:
Web程序 时间:
2021-05-24 04:09:53
阅读次数:
0
https://www.cnblogs.com/sharpest/p/10390035.html InnoDB和MyISAM区别 区别:1. InnoDB 支持事务,MyISAM 不支持事务。这是 MySQL 将默认存储引擎从 MyISAM 变成 InnoDB 的重要原因之一;2. InnoDB 支 ...
分类:
数据库 时间:
2021-05-24 04:09:35
阅读次数:
0
Accounts used for Azure AD Connect Azure AD Connect uses 3 accounts in order to synchronize information from on-premises or Windows Server Active Dire ...
分类:
其他好文 时间:
2021-05-24 04:09:23
阅读次数:
0
1.更新mysql.user表 UPDATE user SET authentication_string = password('112233') where user = 'root'; FLUSH PRIVILEGES; 2.用SET PASSWORD命令 SET PASSWORD for ' ...
分类:
数据库 时间:
2021-05-24 04:08:34
阅读次数:
0
# 发布订阅## subscribe订阅一个或者多个频道## publish给指定的频道发送消息## psubscribepsubscribe zzj.*订阅指定模式的频道,*代表所有## pubsub channels查看当前活跃的频道## pubsub numsub channels查看当前频道 ...
分类:
系统相关 时间:
2021-05-24 04:08:13
阅读次数:
0
<meta content="yes" name="apple-mobile-web-app-capable" /> <meta content="yes" name="apple-touch-fullscreen" /> <meta content="telephone=no,email=no" ...
分类:
其他好文 时间:
2021-05-24 04:07:54
阅读次数:
0
<?php /* * redis 分页数据类库 */ class redisPage{ protected $_redis; protected $_redis_ip = '127.0.0.1'; //ip protected $_redis_port = 6379; //端口 protected ...
分类:
Web程序 时间:
2021-05-24 04:07:35
阅读次数:
0
Spring Boot 是支持在系统加载的时候配置随机数的 1.添加config/random.properties文件 #随机32位MD5字符串 user.random.secret=${random.value} #随机int数字 user.random.intNumber=${random.i ...
分类:
编程语言 时间:
2021-05-24 04:07:16
阅读次数:
0
#0.5 数组 ##概念: 数组就是存储数据长度固定的容器,保证多个数据的数据类型要一致。 ##定义: ####方式一: 数组存储的数据类型[] 数组名字 = new 数组存储的数据类型[长度]; #####举例: int[] arr = new int[3]; ####方式二: 数据类型[] 数组 ...
分类:
编程语言 时间:
2021-05-24 04:07:01
阅读次数:
0
如若oracle 的账号拥有默认的schema,schema 可写可不写 以下情况适合不拥有默认的schema 如果不加schema 会报错 sqoop 报错如下 datax 报错如下 sqoop sqoop import -Dmapred.job.queue.name=default --num- ...
分类:
数据库 时间:
2021-05-24 04:06:46
阅读次数:
0
解决mac系统docker启动mysql端口被占用 错误提示 Error response from daemon: Cannot restart container cfcf: driver failed programming external connectivity on endpoint ...
分类:
数据库 时间:
2021-05-24 04:06:32
阅读次数:
0