mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 23:29:12 +01:00
7f8e3192cd
* Allow common redis and leveldb connections Prevents multiple reopening of redis and leveldb connections to the same place by sharing connections. Further allows for more configurable redis connection type using the redisURI and a leveldbURI scheme. Signed-off-by: Andrew Thornton <art27@cantab.net> * add unit-test Signed-off-by: Andrew Thornton <art27@cantab.net> * as per @lunny Signed-off-by: Andrew Thornton <art27@cantab.net> * add test Signed-off-by: Andrew Thornton <art27@cantab.net> * Update modules/cache/cache_redis.go * Update modules/queue/queue_disk.go * Update modules/cache/cache_redis.go * Update modules/cache/cache_redis.go * Update modules/queue/unique_queue_disk.go * Update modules/queue/queue_disk.go * Update modules/queue/unique_queue_disk.go * Update modules/session/redis.go Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: Lauris BH <lauris@nix.lv>
15 lines
480 B
Modula-2
Vendored
15 lines
480 B
Modula-2
Vendored
module github.com/go-redis/redis/v7
|
|
|
|
require (
|
|
github.com/golang/protobuf v1.3.2 // indirect
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/onsi/ginkgo v1.10.1
|
|
github.com/onsi/gomega v1.7.0
|
|
golang.org/x/net v0.0.0-20190923162816-aa69164e4478 // indirect
|
|
golang.org/x/sys v0.0.0-20191010194322-b09406accb47 // indirect
|
|
golang.org/x/text v0.3.2 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/yaml.v2 v2.2.4 // indirect
|
|
)
|
|
|
|
go 1.11
|