-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9aa8451
commit 1b74c80
Showing
16 changed files
with
245 additions
and
154 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
module github.com/vividvilla/simplesessions/examples/fastglue-redis | ||
|
||
go 1.18 | ||
|
||
require ( | ||
github.com/redis/go-redis/v9 v9.5.1 | ||
github.com/valyala/fasthttp v1.54.0 | ||
github.com/vividvilla/simplesessions/stores/redis/v3 v3.0.0 | ||
github.com/vividvilla/simplesessions/v3 v3.0.0 | ||
github.com/zerodha/fastglue v1.8.0 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/fasthttp/router v1.5.0 // indirect | ||
github.com/klauspost/compress v1.17.8 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/savsgio/gotils v0.0.0-20240303185622-093b76447511 // indirect | ||
github.com/stretchr/testify v1.9.0 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
replace ( | ||
github.com/vividvilla/simplesessions/stores/redis/v3 => ../../stores/redis | ||
github.com/vividvilla/simplesessions/v3 => ../.. | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
module github.com/vividvilla/simplesessions/examples/fasthttp-inmemory | ||
|
||
go 1.18 | ||
|
||
require ( | ||
github.com/valyala/fasthttp v0.0.0-20180901052036-d7688109a57b | ||
github.com/vividvilla/simplesessions/stores/memory/v3 v3.0.0 | ||
github.com/vividvilla/simplesessions/v3 v3.0.0 | ||
) | ||
|
||
require ( | ||
github.com/klauspost/compress v1.4.0 // indirect | ||
github.com/klauspost/cpuid v0.0.0-20180405133222-e7e905edc00e // indirect | ||
github.com/valyala/bytebufferpool v0.0.0-20160817181652-e746df99fe4a // indirect | ||
github.com/valyala/fasthttp v0.0.0-20180901052036-d7688109a57b | ||
github.com/vividvilla/simplesessions v0.0.1 | ||
github.com/vividvilla/simplesessions/stores/memory v0.0.0-20180905073812-64bb2453ba8a | ||
) | ||
|
||
replace ( | ||
github.com/vividvilla/simplesessions/stores/memory/v3 => ../../stores/memory | ||
github.com/vividvilla/simplesessions/v3 => ../.. | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
module github.com/vividvilla/simplesessions/examples/fasthttp-redis | ||
|
||
go 1.14 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/gomodule/redigo v2.0.0+incompatible | ||
github.com/valyala/fasthttp v1.52.0 | ||
github.com/vividvilla/simplesessions/stores/redis/v2 v2.0.0 | ||
github.com/vividvilla/simplesessions/v3 v2.0.0 | ||
github.com/redis/go-redis/v9 v9.5.1 | ||
github.com/valyala/fasthttp v1.54.0 | ||
github.com/vividvilla/simplesessions/stores/redis/v3 v3.0.0 | ||
github.com/vividvilla/simplesessions/v3 v3.0.0 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.1.0 // indirect | ||
github.com/klauspost/compress v1.17.6 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/klauspost/compress v1.17.7 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
) | ||
|
||
replace ( | ||
github.com/vividvilla/simplesessions/stores/redis/v3 => ../../stores/redis | ||
github.com/vividvilla/simplesessions/v3 => ../.. | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
module github.com/vividvilla/simplesessions/examples/fasthttp-redis | ||
|
||
go 1.18 | ||
|
||
require ( | ||
github.com/redis/go-redis/v9 v9.5.1 | ||
github.com/valyala/fasthttp v1.54.0 | ||
github.com/vividvilla/simplesessions/stores/redis/v3 v3.0.0 | ||
github.com/vividvilla/simplesessions/v3 v3.0.0 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/klauspost/compress v1.17.7 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
) | ||
|
||
replace ( | ||
github.com/vividvilla/simplesessions/stores/redis/v3 => ../../stores/redis | ||
github.com/vividvilla/simplesessions/v3 => ../.. | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
module github.com/vividvilla/simplesessions/examples/nethttp-inmemory | ||
|
||
go 1.14 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/vividvilla/simplesessions/stores/memory/v2 v2.0.0 | ||
github.com/vividvilla/simplesessions/v3 v2.0.0 | ||
github.com/vividvilla/simplesessions/stores/memory/v3 v3.0.0 | ||
github.com/vividvilla/simplesessions/v3 v3.0.0 | ||
) | ||
|
||
replace ( | ||
github.com/vividvilla/simplesessions/stores/memory/v3 => ../../stores/memory | ||
github.com/vividvilla/simplesessions/v3 => ../.. | ||
) |
Oops, something went wrong.