随笔分类 -  Golang

Go语言学习笔记
摘要:购买阿里云RDS 设置公网访问链接地址 账号管理,新增账号设置权限 设置白名单,curl ipinfo.io |grep ip 获取 ip,或访问 https://www.whatismyip.com 或 https://www.whatismyip.net,比如 100.104.175.0/24 阅读全文
posted @ 2021-03-11 15:49 CusterFun 阅读(1160) 评论(0) 推荐(0)
摘要:第1步:生成 CA 根证书 👍 openssl genrsa -out ca.key 2048 Generating RSA private key, 2048 bit long modulus (2 primes) .............+++++ ..................... 阅读全文
posted @ 2020-11-18 15:09 CusterFun 阅读(2111) 评论(0) 推荐(3)
摘要:接口 Demo package main import "fmt" // Person 接口类型 type Person interface { getName() string // 不带参数、返回值为 string 的方法 } // 任何实现了方法 getName() 的类型,就说它实现了接口 阅读全文
posted @ 2020-09-28 16:28 CusterFun 阅读(188) 评论(0) 推荐(0)
摘要:kon9chunkit/GitHub-Chinese-Top-Charts 🇨🇳 GitHub中文排行榜,帮助你发现高分优秀中文项目、更高效地吸收国人的优秀经验成果;榜单每周更新一次,敬请关注!(中国加油!世界加油!) golang面试题集合 阅读全文
posted @ 2020-05-29 11:00 CusterFun 阅读(148) 评论(0) 推荐(0)
摘要:jaeger介绍 解决的问题 分布式事务的监控 性能优化 根本原因的分析 服务依赖的分析 上下⽂数据的传播 架构 Trace & Span Traces View Trace Detail View jaeger安装和运⾏ 官⽹下载⼆进制包 https://www.jaegertracing.io/ 阅读全文
posted @ 2020-05-27 22:28 CusterFun 阅读(522) 评论(0) 推荐(0)
摘要:opentracing 中文文档 介绍 为什么需要Tracing? 单机系统 → 集群 → 微服务 顺序日志的挑战。跨进程,高并发 调用链查看,故障查找,性能分析 为什么需要OpenTracing? OpenTracing通过提供平台无关、厂商无关的API,使得开发人员能够方便的添加(或更换)追踪系 阅读全文
posted @ 2020-05-27 22:07 CusterFun 阅读(658) 评论(0) 推荐(1)
摘要:题目 原文:Is Unique: Implement an algorithm to determine if a string has all unique characters. What if you cannot use additional data structures? 中文: 实现一 阅读全文
posted @ 2019-10-21 17:53 CusterFun 阅读(466) 评论(0) 推荐(0)
摘要:前言 《Cracking the coding interview》是一本被许多人极力推荐的程序员面试书籍, 详情可见:http://www.careercup.com/book。 第六版中文版里面有189道程序员面试题目及相应的解答。 书中大部分是编程题目, 并且配有相应的java程序。 我把书中 阅读全文
posted @ 2019-10-19 16:24 CusterFun 阅读(580) 评论(0) 推荐(0)