- 博客(6)
- 收藏
- 关注
原创 【phabricator】工具的安装、使用
Phabricator 是一款用于敏捷开发的项目管理软件,它集成了众多实用功能,包括: 代码管理:添加 Git, Mercurial 和 SVN 仓库,查看源码,review 代码 bug 追踪:测试人员、开发人员协同工作 项目管理:项目的启动、进展、完成 工作板:所有任务一目了然 wiki:构建文档 任务系统:创建任务、指派任务、完成任务、增加或降低优先级 博客系统:甚至可以写博客 ...
2020-08-19 14:12:49
644
原创 【MySQL】docker run Test
download 1、 拉取官方镜像 docker pull mysql:5.7 # 拉取 mysql 5.7 docker pull mysql # 拉取最新版mysql镜像 2、创建实例 映射目录,为了导入数据 docker run -p 3306:3306 --name mysql \ -v /usr/local/docker/mysql/conf:/etc/mysql \ -v /usr/local/docker/mysql/logs:/var/log/mysql \ -v /us
2020-08-18 15:45:08
209
原创 【MySQL】数据库如何选择索引?
什么是索引 Indexes are used to find rows with specific column values quickly. Without an index, MySQL must begin with the first row and then read through the entire table to find the relevant rows. 简单来说,索引就是用来快速查找数据的,避免扫表遍历整个table。高效的检索数据。 数据库如何选择索引 MySQL 一张表
2020-08-15 09:44:38
2350
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅