书栈网 · BookStack 本次搜索耗时 0.043 秒,为您找到 58884 个相关结果.
  • Go Redis连接池

    2858 2020-11-15 《Golang 开发笔记》
    Go Redis连接池 2、redis连接池 使用示例: links Go Redis连接池 官方包 https://github.com/gomodule/redigo 1、创建配置文件 存放在conf配置文件夹,可以跟你的需要存在相应。 redis.go package conf var RedisConf ...
  • Go之web框架gin

    2858 2020-11-15 《Golang 开发笔记》
    6.1 Go之web框架gin 路由 参数 Bind 6.1 Go之web框架gin 前言 近来计划用go做一个项目,在选哪个web框架上比较纠结。go的web框架有很多,近几年流行的以性能见长的有gin、iris、echo等,经过查阅资料,及咨询从事go开发的同仁,最终选择用gin框架做。 主要基于以下几点: 人多占优(无论从使用人...
  • 关于Go中的nil

    529 2021-08-10 《Go语言101 v1.16.b》
    Go中的nil nil 是一个预声明的标识符 预声明的nil 标识符可以表示很多种类型的零值 预声明标识符nil 没有默认类型 nil 不是一个关键字 不同种类的类型的nil值的尺寸很可能不相同 两个不同类型的nil值可能不能相互比较 同一个类型的两个nil值可能不能相互比较 两个nil值可能并不相等 访问nil映射值的条目不会产生恐慌 ...
  • 1.2. Go接口API

    1.2. Go接口API 1.2.1. GetObject 1.2.2. PutObject 1.2.3. DeleteObject 1.2.4. QueryTx 1.2.5. QueryBlock 1.2.6. NewIterator 1.2. Go接口API 1.2.1. GetObject func GetObject(key ...
  • 10.3 Where To Go From Here?

    10.3 Where To Go From Here? 10.3.1 APIs 10.3.2 Shell Programming 10.3.3 Python, R, and SQL 10.3.4 Interpreting Data 10.3 Where To Go From Here? As this book is on the inter...
  • Appendix B: Go Data Types

    Appendix: Go Data Types and Templates Appendix: Go Data Types and Templates The Helm template language is implemented in the strongly typed Go programming language. For that re...
  • 关于Go中的nil

    784 2020-05-07 《Go语言101 v1.14.d》
    Go中的nil nil 是一个预声明的标识符 预声明的nil 标识符可以表示很多种类型的零值 预声明标识符nil 没有默认类型 nil 不是一个关键字 不同种类的类型的nil值的尺寸很可能不相同 两个不同类型的nil值可能不能相互比较 同一个类型的两个nil值可能不能相互比较 两个nil值可能并不相等 访问nil映射值的条目不会产生恐慌 ...
  • Go编程标准和规范

    For-learning-Go-Tutorial Golang编程标准和规范 1. 行长 2. 文件名命名规范 3. 包 4. 命名 5. 变量 6. 接口 7. 函数和结构体 8.import 10. 控制结构 11.方法的接收器 12.使用工具检查你的代码 参考文档 License For-learning-Go-Tu...
  • 37. Defining Methods in Go

    641 2020-07-05 《How To Code in Go》
    Defining Methods in Go Defining a Method Interfaces Pointer Receivers Pointer Receivers and Interfaces Conclusion Defining Methods in Go Written by Gopher Guides Function...
  • 36. Defining Structs in Go

    567 2020-07-05 《How To Code in Go》
    Defining Structs in Go Defining Structs Struct Field Exporting Inline Structs Conclusion Defining Structs in Go Written by Gopher Guides Building abstractions around concr...