type assertion:类型断言 适用于 interface{}; 将 interface{}转换为具体类型;可能会失败
1 2 var a interface{} = 100; value,ok := a.(int) convertion: 类型转换 only for numerical type
1. widening conversion(implict conversion) go dont’s support
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 class Test { public static void main(String[] args) { int i = 100; // automatic type conversion long l = i; // automatic type conversion float f = l; System.
1. forward proxy vs reverserd proxy they both forward client request; act as an intermediary for client and server
the basic defination:
forward proxy: autual client is transparent for server vpn; cache server reverser proxy: acutal server is transparent for client; nginx gateway 2. nginx use case static server reversed proxy 为什么不适合做网关 网关除了要服务转发外,还需要包含限流,鉴权等其他一些功能;需要进一步开发;
nginx architecture master-work; master: manager worker work: handle request
configue 1. nginx configure basic 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 # events s events { } # http modules http{ //**作用于所有server** include /etc/nginx/proxy.
Help: Shadowed variables · YourBasic Go - https://yourbasic.org/golang/gotcha-shadowing-variables/
函数是每门编程语言重要组成部分,golang作为一门现代化的语言,函数上有自己的一些特点
特点 1. 支持可变参数函数(variadic function) 如果一个函数的参数数量是可变的,则该函数是可变参数函数
Go中可变参数函数的最后一位参数使用 参数名 ...类型的格式声明,表明该类型参数可传入的数量是不限制的
1 2 3 func function_name(para1 type,para2 type, para3 ...type){ // code... } 要点:
在函数内部 ...type参数是用一个slice类型的变量表示 可以用 slice类型变量...方式传入可变参数 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 package main import "fmt" func sum(init int,nums ...int) { for _, num := range nums { // nums是slice 类型 init += num } fmt.
Get Started with JSON Web Tokens JSON Web Token (JWT)
An Introduction to OAuth 2
jwt what: 服务端颁发的临时id, 每次客户端拿着id访问资源,服务端需要验证是否是有效的id,
token: 临时凭证
token ways:
cache + randomID valid id jwt = payload+sigature if jwt.sigature== generateSig(payload, localKey), jwt is valid
http 是一种无状态的协议,这意味每个请求都是独立无关联的,上一次请求的状态并不能传递给下一次请求。这就导致如果没有其他机制,即使成功调用了验证请求,并不能已登验证这一状态保存到下一个请求,下一次请求仍然是未验证状态。每个需要验证的请求每次都需要自己把验证信息传送过去再验证一次。如下:/oders 和 /order/42 请求每次都需要携带验证信息。这显然是不可接受的。
session 如上所述,在没有任何优化的情况下,客户端每次请求都需要携带验证信息进行验证。我们能想到最直接优化方式就是客户端第一次验证请求之后,给客户端发放一个令牌,下一次客户端请求再携带这个令牌,服务端即认为客户端已经验证通过了,可以继续执行接下来的操作,而这正也是session的实现机制。
一直很直接的方法就是,服务端通过验证后生成一个标示id,该id对应一个用户信息,将该键值对存储在服务端内存或者文件中。然后将该id返回给客户端,用户下次请求只需要把这个id带上来,服务端检索本地存储的键值对,如能检索出相应的用户信息,即认为客户端已经验证通过,可以继续执行之后的请求。
这也是session 实现的机制,session id 存储在cookie 中,
session存在的问题
内存无限增大
难以水平拓展
JWT session 的本质 JWT介绍 jwt误区 session http无状态, 需要一个标记 session
1. session的问题 JWT 我们验证session id 其实是检索内存或者本地文件,有没有一种方式不需要
是什么 hello :="hello"
短变量声明(short variable declaration)是golang中声明变量的一种方式,是golang特有的语法,相比 var hello="hello"的声明方式,可以少写一个 var,能稍微减少代码量
特点 1. 可以重复声明 一般强类型语言的变量都不允许重复声明,在golang中使用var重复声明变量同样会抛出错误
1 2 3 4 5 6 7 package main import "fmt" func main() { var a = 100 var a = 200 fmt.Println(a) } 编译时报错:a redeclared in this block
使用短变量声明时候:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 // example1: package main import "fmt" func main() { a:= 100 a := 200 fmt.
详尽干货!从源码角度看 Golang 的调度
调度器
详尽干货!从源码角度看 Golang 的调度(上)
Getting Started With Golang Channels! Here’s Everything You Need to Know
深入golang runtime的调度
code
Go: What Does a Goroutine Switch Actually Involve?
Go: How Does the Goroutine Stack Size Evolve?
MPG 模型与并发调度单元
Illustrated Tales of Go Runtime Scheduler.
Go调度器系列(3)图解调度原理
Go netpoller 原生网络模型之源码全面揭秘
图解Go运行时调度器
Go 运行程序中的线程数
Go中的调度器(4)–goroutine状态转移
Go 程序启动过程是怎样的
GMP
【深入理解Go】协程设计与调度原理(上)
Go 为什么这么“快”
Golang三关-典藏版 Golang 调度器 GMP 原理与调度全分析
How Goroutines Work - https://blog.nindalf.com/posts/how-goroutines-work/
go runtime - go程序启动过程 Go: g0, Special Goroutine