随心的博客

好记性不如个烂笔头,随心记录!

返回顶部
摘要: 先下载包: go get github.com/bradfitz/gomemcache/memcache window下打开memcache服务: cd C:\Program Files\memcached memcached.exe start 再打开一个cmd窗口 连接memcached tel 阅读全文
posted @ 2023-04-08 22:29 yangphp 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 前言: 使用第三方开源的redis库: github.com/gomodule/redigo/redis 需要先安装redis包 go get github.com/gomodule/redigo/redis 正文: window下打开redis服务: 打开cmd命令行窗口 cd C:\Progra 阅读全文
posted @ 2023-04-08 22:28 yangphp 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 数据库连接: 使用database/sql包时必须注入(至少)一个数据库驱动。 go get github.com/go-sql-driver/mysql 导入包: import ( "database/sql" _ "github.com/go-sql-driver/mysql" ) 通过Init 阅读全文
posted @ 2023-04-08 22:27 yangphp 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 君不见高堂明镜悲白发,朝如青丝暮成雪。人生得意须尽欢,莫使金樽空对月。 阅读全文
posted @ 2023-04-08 22:21 yangphp 阅读(9) 评论(0) 推荐(0) 编辑