1.查询某个数据库占用空间 mysql> SELECT round(sum(data_length / 1024 / 1024),2) 'Data Size in MB',round(sum(index_length / 1024 / 1024),2) 'Index Size in MB',roun ...
分类:
数据库 时间:
2020-01-15 19:44:28
阅读次数:
77
[toc] Leetcode动态规划【简单题】 动态规划 (Dynamic programming,简称DP),是一种把原问题分解为相对简单的子问题的方式求解复杂问题的方法。动态规划相较于递归,拥有更少的计算量。 53. 最大子序和 题目描述 给定一个整数数组 ,找到一个具有最大和的连续子数组(子数 ...
分类:
其他好文 时间:
2020-01-14 20:31:00
阅读次数:
73
准备测试环境: MySQL 5.7.28 社区版 CentOS release 6.10 MySQL Undo参数配置: innodb_undo_tablespaces = 1 innodb_default_row_format = dynamic 准备测试数据: ## 创建测试表 CREATE T ...
分类:
数据库 时间:
2020-01-13 20:11:27
阅读次数:
104
一、新建一个Dynamic Web Project(一直Next到最后,勾选Generate...,否则不会有web.xml文件)。 二、在lib文件夹中加入相应jar包 三、在web.xml中配置 <?xml version="1.0" encoding="UTF-8"?> <web-app xm ...
分类:
编程语言 时间:
2020-01-11 22:30:56
阅读次数:
92
今天在研究,tinymce富文本编辑器怎样在vue中使用,然后看到其它框架上的使用方法,它是动态加载tinymce脚本的,若果在本地引入静态文件或者,npm安装都会导致vue项目打包体积过大,这种动态脚本引入方式,是一个不错的实践,下面上的代码块叫 dynamicLoadScript 顾名思义,动态 ...
分类:
其他好文 时间:
2020-01-11 16:46:04
阅读次数:
374
Supplementary knowledge: 1. sensitivity analysis; 敏感度分析 sensitivity analysis is the study of how the uncertainty in the output of a mathematical model ...
分类:
Web程序 时间:
2020-01-11 09:43:50
阅读次数:
104
测试环境: MySQL 5.7.28 社区版 CentOS release 6.10 MySQL Undo参数配置: innodb_undo_tablespaces = 1innodb_default_row_format = dynamic 测试脚本: ## 创建测试表 CREATE TABLE ...
分类:
数据库 时间:
2020-01-11 00:18:16
阅读次数:
143
[Remote Dictionary Service],也就是「远程字典服务」,Redis。 Redis我们都知道有5种基础数据结构:分别为:string (字符串)、list (列表)、set (集合)、hash (哈希) 和 zset (有序集合)。 再说这些基础数据结构的时候,我们先说说Red ...
分类:
其他好文 时间:
2020-01-11 00:13:15
阅读次数:
84
API Helm Chart Repository retrieved when you run retrieved when you run retrieved when you run with the flag Chart Manipulation upload a new chart ver ...
分类:
其他好文 时间:
2020-01-08 21:24:25
阅读次数:
314
.NET Core 3.0 JsonSerializer.Deserialize to dynamic object 因为官方还不支持返回动态类型的对象,只能自己手写一个,临时测试了下没问题,还有些地方不完善的可以自己拿去修改下。 ".net Core3 no support" Add the Js ...
分类:
Web程序 时间:
2020-01-08 18:39:05
阅读次数:
303