Go项目优化——动态缓存Redis的使用

本文涉及的产品
Redis 开源版,标准版 2GB
推荐场景:
搭建游戏排行榜
云数据库 Tair(兼容Redis),内存型 2GB
简介: Go项目优化——动态缓存Redis的使用

1. Redis:

1.1 简介:

garyburd/redigo 包是网上很多博文都在推荐使用的一个高Star的Redis连接包,项目已经迁移到了gomodule/redigo,同时包的获取也理所当然地改成了go get github.com/gomodule/redigo/redis,总之,暂时不管这两个包的详细区别,以下就以新包为准,介绍下redigo包使用。

1.2 连接redis

//第一种连接方法
con,err := redis.Dial("tcp", 
  "链接地址,例如127.0.0.1:6379", 
  redis.DialPassword("密码"),
)
// or
// con,err := redis.Dial("tcp","127.0.0.1:6379")
if err != nil {
   fmt.Println(err)
}
defer con.Close()

1.3 常用api:

// Do 向服务器发送命令并返回收到的应答。
func Do(commandName string, args ...interface{}) (reply interface{}, err error)
// reply 具体类型,具体转换
func Int(reply interface{}, err error) (int, error) 
func String(reply interface{}, err error) (string, error)
func Bool(reply interface{}, err error) (bool, error) 
func Values(reply interface{}, err error) ([]interface{}, error) 
func Strings(reply interface{}, err error) ([]string, error)
func ByteSlices(reply interface{}, err error) ([][]byte, error)
func Ints(reply interface{}, err error) ([]int, error)
func StringMap(result interface{}, err error) (map[string]string, error)
...
// 更多函数自行探索

1.3 连接池

在golang的项目中,若要频繁的用redis(或者其他类似的NoSQL)来存取数据,最好用redigo自带的池来管理连接。

 不然的话,每当要操作redis时,建立连接,用完后再关闭,会导致大量的连接处于TIME_WAIT状态(redis连接本质上就是tcp)。

注:TIME_WAIT,也叫TCP半连接状态,会继续占用本地端口。

import (
  "fmt"
  "github.com/gomodule/redigo/redis"
  "time"
)
var redisPoll *redis.Pool
func initRedis() {
  redisPoll = &redis.Pool{
    // 连接方法
    Dial: func() (redis.Conn, error) {
      c, err := redis.Dial("tcp", "链接地址,例如127.0.0.1:6379",
        redis.DialPassword("密码"),
        redis.DialReadTimeout(1*time.Second),
        redis.DialWriteTimeout(1*time.Second),
        redis.DialConnectTimeout(1*time.Second),
      )
      if err != nil {
        return nil, err
      }
      return c, nil
    },
    // 最大的空闲连接数,
    // 表示即使没有redis连接时依然可以保持N个空闲的连接,而不被清除,随时处于待命状态。
    MaxIdle: 256,
    // 最大的激活连接数,表示同时最多有N个连接
    MaxActive: 256,
    // 最大的空闲连接等待时间,超过此时间后,空闲连接将被关闭
    IdleTimeout: time.Duration(120),
  }
}
// myDo
// @Title myDo
// @Description 封装的 redis Do函数
// Do(commandName string, args ...interface{}) (reply interface{}, err error)
// @Param cmd string 命令
// @Param key interface{} 键
// @Param args ...interface{} 参数
// @Return interface{} redis服务器返回值
// @Return error 错误
func myDo(cmd string, key interface{}, args ...interface{}) (interface{}, error) {
  // 从pool里获取一个redis连接,如果连接池没有,会调用 Dial()
  con := redisPoll.Get()
  if err := con.Err(); err != nil {
    return nil, err
  }
  parmas := make([]interface{}, 0)
  parmas = append(parmas, key)
  // 如果参数不为空,也加入参数列表
  if len(args) > 0 {
    for _, arg := range args {
      parmas = append(parmas, arg)
    }
  }
  return con.Do(cmd, parmas...)
}
func main() {
  initRedis()
  myDo("set", "mykey1", "myvalue1")
  result, err := myDo("get", "mykey1")
  if err != nil {
    fmt.Println(err.Error())
  }
  // String()是将命令应答转换为字符串的帮助器。
  str, _ := redis.String(result, err)
  fmt.Println(str)
}

1.4 项目中使用:

dynamic cache:动态缓存

conf/dynamicache.conf

#*******************
#动态缓存配置
#*******************
# redis地址
dynamicache_addrstr=127.0.0.1:6379
# redis密码
dynamicache_passwd=密码

conf/app.conf

...
# 引入动态缓存配置文件
include "dynamicache.conf"
...

utils/dynamic_cache.go

package dynamicache
import (
  "encoding/json"
  "github.com/astaxie/beego/logs"
  "strconv"
  "time"
  "github.com/astaxie/beego"
  "github.com/gomodule/redigo/redis"
)
var (
  pool *redis.Pool = nil
  // MaxIdle 最大的空闲连接数,
  MaxIdle int = 0
  // MaxOpen 最大的激活连接数,表示同时最多有N个连接
  MaxOpen int = 0
  // ExpireSec 超时时间
  ExpireSec int64 = 0
)
// InitCache 在 sysinit.go 中调用
// 初始化redis配置
func InitCache() {
  addr := beego.AppConfig.String("dynamicache_addrstr")
  if len(addr) == 0 {
    addr = "127.0.0.1:6379"
  }
  if MaxIdle <= 0 {
    MaxIdle = 256
  }
  password := beego.AppConfig.String("dynamicache_passwd")
  if len(password) == 0 {
    pool = &redis.Pool{
      MaxIdle:     MaxIdle,
      MaxActive:   MaxOpen, // 最大
      IdleTimeout: time.Duration(120),
      Dial: func() (redis.Conn, error) {
        return redis.Dial(
          "tcp",
          addr,
          redis.DialReadTimeout(1*time.Second),
          redis.DialWriteTimeout(1*time.Second),
          redis.DialConnectTimeout(1*time.Second),
        )
      },
    }
  } else {
    pool = &redis.Pool{
      MaxIdle:     MaxIdle,
      MaxActive:   MaxOpen,
      IdleTimeout: time.Duration(120),
      Dial: func() (redis.Conn, error) {
        return redis.Dial(
          "tcp",
          addr,
          redis.DialReadTimeout(1*time.Second),
          redis.DialWriteTimeout(1*time.Second),
          redis.DialConnectTimeout(1*time.Second),
          redis.DialPassword(password),
        )
      },
    }
  }
}

sysinit/sysinit.go

package sysinit
import (
    ...
  "mybook/utils/dynamicache"
  ...
)
....
// initDynamicCache
// @Title initDynamicCache
// @Description 初始化dynamic_cache.go里的公有值,并初始化redis配置 
func initDynamicCache() {
  dynamicache.MaxOpen = 128
  dynamicache.MaxIdle = 128
  dynamicache.ExpireSec = 10
  dynamicache.InitCache()
}
....

根据实际业务需要,在utils/dynamic_cache.go里封装会用到的方法

utils/dynamic_cache.go

...
// redisDo
// @Title redisDo
// @Description 封装的 redis Do函数
// Do(commandName string, args ...interface{}) (reply interface{}, err error)
// @Param cmd string 命令
// @Param key interface{} 键
// @Param args ...interface{} 参数
// @Return interface{} redis服务器返回值
// @Return error 错误
func redisDo(cmd string, key interface{}, args ...interface{}) (interface{}, error) {
  con := pool.Get()
  if err := con.Err(); err != nil {
    return nil, err
  }
  params := make([]interface{}, 0)
  params = append(params, key)
  if len(args) > 0 {
    for _, v := range args {
      params = append(params, v)
    }
  }
  return con.Do(cmd, params...)
}
// WriteString
// @Title WriteString
// @Description 写字符串
// @Param key string 键
// @Param value string 值
// @Return error 错误
func WriteString(key string, value string) error {
  _, err := redisDo("SET", key, value)
  logs.Debug("redis set:" + key + "-" + value)
  redisDo("EXPIRE", key, ExpireSec)
  return err
}
// ReadString
// @Title ReadString
// @Description  读字符串
// @Param key string 键
// @Param value string 值
// @Return error 错误
func ReadString(key string) (string, error) {
  result, err := redisDo("GET", key)
  logs.Debug("redis get:" + key)
  if nil == err {
    str, _ := redis.String(result, err)
    return str, nil
  } else {
    logs.Debug("redis get error:" + err.Error())
    return "", err
  }
}
// 以下封装的方法都是在WriteString() ReadString()上封装的,使用的都是redis里的string类型
// WriteStruct
// @Title WriteStruct
// @Description 写结构体(本质是还是写json字符串)
func WriteStruct(key string, obj interface{}) error {
  data, err := json.Marshal(obj)
  if nil == err {
    return WriteString(key, string(data))
  } else {
    return nil
  }
}
// ReadStruct
// @Title ReadStruct
// @Description 读结构体
func ReadStruct(key string, obj interface{}) error {
  if data, err := ReadString(key); nil == err {
    return json.Unmarshal([]byte(data), obj)
  } else {
    return err
  }
}
// WriteList
// @Title WriteList
// @Description 写数组
func WriteList(key string, list interface{}, total int) error {
  realKeyList := key + "_list"
  realKeyCount := key + "_count"
  data, err := json.Marshal(list)
  if nil == err {
    WriteString(realKeyCount, strconv.Itoa(total))
    return WriteString(realKeyList, string(data))
  } else {
    return nil
  }
}
// ReadList
// @Title ReadList
// @Description 读数组
func ReadList(key string, list interface{}) (int, error) {
  realKeyList := key + "_list"
  realKeyCount := key + "_count"
  if data, err := ReadString(realKeyList); nil == err {
    totalStr, _ := ReadString(realKeyCount)
    total := 0
    if len(totalStr) > 0 {
      total, _ = strconv.Atoi(totalStr)
    }
    return total, json.Unmarshal([]byte(data), list)
  } else {
    return 0, err
  }
}
相关实践学习
基于Redis实现在线游戏积分排行榜
本场景将介绍如何基于Redis数据库实现在线游戏中的游戏玩家积分排行榜功能。
云数据库 Redis 版使用教程
云数据库Redis版是兼容Redis协议标准的、提供持久化的内存数据库服务,基于高可靠双机热备架构及可无缝扩展的集群架构,满足高读写性能场景及容量需弹性变配的业务需求。 产品详情:https://www.aliyun.com/product/kvstore &nbsp; &nbsp; ------------------------------------------------------------------------- 阿里云数据库体验:数据库上云实战 开发者云会免费提供一台带自建MySQL的源数据库&nbsp;ECS 实例和一台目标数据库&nbsp;RDS实例。跟着指引,您可以一步步实现将ECS自建数据库迁移到目标数据库RDS。 点击下方链接,领取免费ECS&amp;RDS资源,30分钟完成数据库上云实战!https://developer.aliyun.com/adc/scenario/51eefbd1894e42f6bb9acacadd3f9121?spm=a2c6h.13788135.J_3257954370.9.4ba85f24utseFl
相关文章
|
11天前
|
NoSQL Java API
springboot项目Redis统计在线用户
通过本文的介绍,您可以在Spring Boot项目中使用Redis实现在线用户统计。通过合理配置Redis和实现用户登录、注销及统计逻辑,您可以高效地管理在线用户。希望本文的详细解释和代码示例能帮助您在实际项目中成功应用这一技术。
22 3
|
19天前
|
缓存 监控 测试技术
如何利用浏览器的缓存来优化网站性能?
【10月更文挑战第23天】通过以上多种方法合理利用浏览器缓存,可以显著提高网站的性能,减少网络请求,加快资源加载速度,提升用户的访问体验。同时,要根据网站的具体情况和资源的特点,不断优化和调整缓存策略,以适应不断变化的业务需求和用户访问模式。
62 7
|
1月前
|
Go
使用go语言将A助手加入项目中
使用go语言将A助手加入项目中
24 2
|
1月前
|
SQL 关系型数据库 MySQL
Go语言项目高效对接SQL数据库:实践技巧与方法
在Go语言项目中,与SQL数据库进行对接是一项基础且重要的任务
58 11
|
1月前
|
缓存 JavaScript 前端开发
Vue 3的事件监听缓存如何优化性能?
【10月更文挑战第5天】随着前端应用复杂度的增加,性能优化变得至关重要。Vue 3 通过引入事件监听缓存等新特性提升了应用性能。本文通过具体示例介绍这一特性,解释其工作原理及如何利用它优化性能。与 Vue 2 相比,Vue 3 可在首次渲染时注册事件监听器并在后续渲染时重用,避免重复注册导致的资源浪费和潜在内存泄漏问题。通过使用 `watchEffect` 或 `watch` 监听状态变化并更新监听器,进一步提升应用性能。事件监听缓存有助于减少浏览器负担,特别在大型应用中效果显著,使应用更加流畅和响应迅速。
78 1
|
1月前
|
存储 缓存 监控
HTTP:强缓存优化实践
HTTP强缓存是提升网站性能的关键技术之一。通过精心设计缓存策略,不仅可以显著减少网络延迟,还能降低服务器负载,提升用户体验。实施上述最佳实践,结合持续的监控与调整,能够确保缓存机制高效且稳定地服务于网站性能优化目标。
47 3
|
2月前
|
缓存 JavaScript 中间件
优化Express.js应用程序性能:缓存策略、请求压缩和路由匹配
在开发Express.js应用时,采用合理的缓存策略、请求压缩及优化路由匹配可大幅提升性能。本文介绍如何利用`express.static`实现缓存、`compression`中间件压缩响应数据,并通过精确匹配、模块化路由及参数化路由提高路由处理效率,从而打造高效应用。
157 10
|
2月前
|
关系型数据库 Go 数据处理
高效数据迁移:使用Go语言优化ETL流程
在本文中,我们将探索Go语言在处理大规模数据迁移任务中的独特优势,以及如何通过Go语言的并发特性来优化数据提取、转换和加载(ETL)流程。不同于其他摘要,本文不仅展示了Go语言在ETL过程中的应用,还提供了实用的代码示例和性能对比分析。
|
2月前
|
NoSQL Go API
go语言操作Redis
go语言操作Redis
|
2月前
|
缓存 监控 负载均衡
在使用CDN时,如何配置缓存规则以优化性能
在使用CDN时,如何配置缓存规则以优化性能

热门文章

最新文章

下一篇
无影云桌面