Skip to content

Commit

Permalink
redis optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
jmesyan committed Feb 18, 2022
1 parent 0638e78 commit b2fd7a7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion stores/redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package stores

import (
"context"
"encoding/json"
"errors"
"strconv"
"strings"
Expand All @@ -11,6 +10,11 @@ import (
"github.com/jqiris/kungfu/v2/logger"

"github.com/go-redis/redis/v8"
jsoniter "github.com/json-iterator/go"
)

var (
json = jsoniter.ConfigCompatibleWithStandardLibrary
)

const (
Expand Down

0 comments on commit b2fd7a7

Please sign in to comment.