通过查看 SHOW ENGINES; 或 SHOW VARIABLES LIKE 'have%'; 的输出来查看但前的mysql版本是否支持这个引擎。 mysql> show engines; + + + + + + + | Engine | Support | Comment | Transact ...
分类:
数据库 时间:
2020-06-19 01:12:04
阅读次数:
140
神经网络 BPNN 感知机 神经网络入门 反向传播 tensorflow tf基础 控制依赖项 变量命名域和tensorboard 一元线性回归 模型持久化 交叉熵 global_steps的使用 手写数据集实现 CNN 激活函数 CNN过拟合 手写数据集CNN模型 权重初始化-CNN 批归一化 自 ...
分类:
其他好文 时间:
2020-06-18 17:49:05
阅读次数:
63
一、拉取镜像 docker pull prom/prometheus 二、配置 sudo mkdir /etc/prometheus/ sudo vim /etc/prometheus/prometheus.yml 添加监控节点 # my global config global: scrape_i ...
分类:
其他好文 时间:
2020-06-18 12:39:26
阅读次数:
56
对象 计数器 说明 IIS Global Active Flushed Entries Active Flushed Entries 是缓存文件句柄,当前传输全部完成后将关闭此句柄。IIS Global 对象。 Web Anonymous Users/Sec 用户通过 Web 服务进行的匿名连接数。 ...
简介 pip 不换源 太卡了 参考链接 https://blog.csdn.net/xy707707/article/details/80787991 Tips pip更换为国内源,可以大大的提高安装成功率和速度。 mkdir ~/.pip vim ~/.pip/pip.conf [global] ...
分类:
其他好文 时间:
2020-06-18 10:54:11
阅读次数:
45
主节点ip:192.168.3.122,备节点ip:192.168.3.123主节点配置如下:!Configurationfileforkeepalivedglobal_defs{notification_email{admin@wf.com}notification_email_fromadmin@wf.comsmtp_server127.0.0.1smtp_connect_timeout30r
分类:
其他好文 时间:
2020-06-18 10:52:30
阅读次数:
45
git config --system --list #查看系统默认配置 git config --global --list #查看自己设置的 git cnfig global user.name=xxx #修改用户名和密码 git clone url #克隆一个项目 git add . #添加至 ...
分类:
其他好文 时间:
2020-06-17 23:26:44
阅读次数:
65
create global temporary table invoices_got(xxx) on commit preserve rows. insert into invoices_got values(1,100); commit; The session can add columns. ...
分类:
其他好文 时间:
2020-06-17 23:09:13
阅读次数:
96
postman老式断言与新式断言总结:本文以微信开发者文档为例 断言处如图所示 一、老式断言 老式断言总结:var variables相当于代码中定义的变量,test['']=true;相当于python中print()函数的输出功能,可以打印出定义的变量值,json断言语法可以根据json数据结构 ...
分类:
其他好文 时间:
2020-06-17 20:28:45
阅读次数:
59
git config --list 查看所有配置 // 提交时读取用户名称及邮箱优先级 --local > --global > --system // 全局配置用户名称及邮箱 git config --global user.name "用户名称" git config --global user ...
分类:
其他好文 时间:
2020-06-17 18:27:23
阅读次数:
49