摘要:
基本术语 Downstream(下游):下游主机连接到 Envoy,发送请求并接收响应,即发送请求的主机。 Upstream(上游):上游主机接收来自 Envoy 的连接和请求,并返回响应,即接受请求的主机。 Listener(监听器):监听器是命名网地址(例如,端口、unix domain soc 阅读全文
摘要:
k3s默认使用container 两者命令对比表: idcontainerd 命令docker 命令备注 1 ctr image ls docker images 获取image信息 2 ctr image pull nginx docker pull nginx pull 一个nginx的imag 阅读全文
摘要:
1、删除悬空镜像 docker rmi $(docker images -f "dangling=true" -q) docker image prune -a -f #显示所有的容器,过滤出Exited状态的容器,取出这些容器的ID, sudo docker ps -a|grep Exited|a 阅读全文
摘要:
1、先更新代码 git pull origin master 本地有修改git stash 忽略掉 2、git revert <commit-id> 回到某个commit 3、提交到远程 git push origin master -f 一般master是受保护的,如果强推,先在gitlab 上去 阅读全文
摘要:
感谢原文作者:https://blog.letsgo.tech/gorm-go-mysql-driver-invalid-connection/ 最近出现了一个 bug,用户经常会无法获取到数据,并且只在深夜和早上出现。在自己进行测试时却很难重现。 通过检查服务端日志,发现了以下错误: 12 [my 阅读全文
摘要:
给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。 示例: GO: PHP: 阅读全文
摘要:
[2019-12-24T10:25:14,412][WARN ][io.netty.channel.DefaultChannelPipeline] An exceptionCaught() event was fired, and it reached at the tail of the pipe 阅读全文
摘要:
注意:定义数组时不能为"new Array()" 应该为"{}" 阅读全文
摘要:
线上build之后发现app.XXX.js 文件特别大。 包我都改为cdn了 其他空间就是路由改为懒加载了。 对比前后: 阅读全文
摘要:
@click.native="change('123') 阅读全文