From 830a8701586f31576b63239a68d7bc8cea14ab91 Mon Sep 17 00:00:00 2001 From: charlie <3140647@qq.com> Date: Tue, 26 Apr 2022 17:12:02 +0800 Subject: [PATCH] cache --- go.mod | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index ad3f7d4..67fa36a 100644 --- a/go.mod +++ b/go.mod @@ -13,6 +13,7 @@ require ( require ( github.com/davecgh/go-spew v1.1.1 // indirect + github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect @@ -20,10 +21,16 @@ require ( ) require ( - github.com/antonfisher/nested-logrus-formatter v1.3.1 + github.com/allegro/bigcache v1.2.1 + github.com/coocood/freecache v1.2.1 + github.com/go-playground/assert/v2 v2.0.1 + github.com/go-redis/redis/v8 v8.11.5 github.com/sirupsen/logrus v1.8.1 + gopkg.in/natefinch/lumberjack.v2 v2.0.0 + github.com/antonfisher/nested-logrus-formatter v1.3.1 github.com/stretchr/testify v1.7.1 - golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064 // indirect - golang.org/x/exp v0.0.0-20220328175248-053ad81199eb - golang.org/x/sys v0.0.0-20220330033206-e17cdc41300f // indirect + golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect + golang.org/x/exp v0.0.0-20220414153411-bcd21879b8fd + golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect + )