2018年10月31日

mysql导入导出sql文件

摘要: window下 1.导出整个数据库mysqldump -u 用户名 -p 数据库名 > 导出的文件名mysqldump -u dbuser -p dbname > dbname.sql 2.导出一个表mysqldump -u 用户名 -p 数据库名 表名> 导出的文件名mysqldump -u db 阅读全文

posted @ 2018-10-31 19:42 阿瑞斯.柯耀文 阅读(129) 评论(0) 推荐(0)

2018年3月9日

redis哈希

摘要: $a = $this->redis->hset('hx','33',13); //新建 $a = $this->redis->hget('hx','33'); // 查看数量 $a = $this->redis->hincrby('hx','33',1); // 添加数量 $a = $this->r 阅读全文

posted @ 2018-03-09 09:59 阿瑞斯.柯耀文 阅读(94) 评论(0) 推荐(0)

2018年1月4日

git命令

摘要: 通过命令 显示当前目录: pwd通过命令 git init 把这个目录变成git可以管理的仓库通过命令 git add readme.txt添加到暂存区里面去通过命令 git commit告诉Git,把文件提交到仓库:git commit -m 'readme.txt'通过命令 git status 阅读全文

posted @ 2018-01-04 14:54 阿瑞斯.柯耀文 阅读(106) 评论(0) 推荐(0)

2017年12月25日

redis安装(linux下)

只有注册用户登录后才能阅读该文。 阅读全文

posted @ 2017-12-25 17:14 阿瑞斯.柯耀文 阅读(2) 评论(0) 推荐(0)

导航