别着急,坐和放宽
Chromium 和 Node.js 的 V8 引擎中的 GC (Garbage Collector) 引擎。 分代结构 在 V8 中,堆空间会被分成两块区域,或者叫代(generation),分别叫做新生代(young generation)和老年代(old generation) ,而新生代由分为托儿所(nursery)和中间代(intermediate)。 ![](https://flapypan.top/api/v2/objects/f...
配置文件 配置文件位置: ~/.config/starship.toml 本地终端配置 "$schema" = 'https://starship.rs/config-schema.json' add_newline = false format = """ \ $os$hostname\ \ $directory\ \ $git_branch\ $git_status\ ...
摘要: 折腾 Go 语言时候记录的一些可能有用的知识
Fiber 使用 JWT 登录验证 创建 项目 mkdir go-fiber-jwt cd go-fiber-jwt go mod init go-fiber-jwt 安装相关依赖 go get github.com/gofiber/fiber/v2 go get github.com/gofiber/contrib/jwt 编写 JWT 校验中间件 //...