目前线上的 redis内存容量急剧增加,已经达到98%了.解决方案除了 扩容 redis内存,还需要分析下线上的数据增加是否符合预期. 所以需要下载线上的 rdb 文件来分析 数据使用情况. 目前使用的工具有两个一个 python 的 redis_rdb_tools,另外一个是 golang的rdr ...
分类:
数据库 时间:
2021-04-21 12:11:32
阅读次数:
0
golang easyjson使用 1.先安装easyjson go get -u github.com/mailru/easyjson/ 2.在结构体上加//easyjson:json的注解 //easyjson:json type School struct { Name string `jso ...
分类:
Web程序 时间:
2021-04-20 14:21:08
阅读次数:
0
匿名函数 ::操作符 A static method (ClassName::methName) An instance method of a particular object (instanceRef::methName) A super method of a particular obje ...
分类:
编程语言 时间:
2021-04-16 12:22:24
阅读次数:
0
参考下面的代码即可。 package main import ( "time" "fmt" ) func main() { //获取当前时间 t := time.Now() //2018-07-11 15:07:51.8858085 +0800 CST m=+0.004000001 fmt.Prin ...
分类:
其他好文 时间:
2021-04-15 12:17:48
阅读次数:
0
一、Golang开发环境搭建 1.下载安装jetbrain Goland IDE 下载地址:https://www.jetbrains.com/go/download/#section=windows 2.安装golang编译器 下载地址:https://golang.google.cn/doc/i ...
分类:
其他好文 时间:
2021-04-13 12:35:02
阅读次数:
0
一、背景 今天看到组内项目中有这样一段代码 ,第一反应是局部变量 index 太奇怪了,当然也不能说这样写是错的,只是个人强迫症看着很难受... 1 for _, index := range entities { 2 key := index.TemplateId 刚好借此机会,梳理下 Go 的 ...
分类:
其他好文 时间:
2021-04-13 12:32:49
阅读次数:
0
package stream import ( "log" "reflect" "sort" ) type ( // a Stream is where one can drain data from Stream chan interface{} // buffer stream BufferSt ...
【安装运行时】 直接上官网下载运行时安装即可:golang 官网 根据自己操作系统选择 golang 运行时版本,例如windows 当然我们也可以直接选择下面的稳定版本进行下载 下载安装后,安装程序会自动配置环境变量,我们在cmd中输入 go version 查看当前golang运行时版本 go ...
分类:
其他好文 时间:
2021-04-09 13:04:44
阅读次数:
0
匿名函数lambda: # def foo(x,y):# return x+y## foo(12,4)#python的匿名函数: lambda 参数:函数体# print((lambda x,y:x+y)(12,4))a = [1,2,3,4,5,6]# def foo(x):# return x ...
分类:
编程语言 时间:
2021-04-07 11:31:34
阅读次数:
0
一--介绍 Lambda 表达式(lambda expression)是一个匿名函数,即没有函数名的函数。 二 为什么要使用Lambda表达式 1)避免匿名内部类定义过多 2)可以让你的代码看起来很简洁 3)去掉一堆没有意义的代码,只留下核心的逻辑 三 理解函数式接口 概念:任何接口,如果只包含唯一 ...
分类:
其他好文 时间:
2021-04-05 12:02:36
阅读次数:
0