-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch from tinylib/msgp to github.com/vmihailenco/msgpack/v5 as it's more flexible and doesn't require codegen. Might be a bit slower since it uses reflection? Haven't tested performance. Use store arbitrary metadata as something which can be serialized and deserialized to and from the Sessions struct. Might unexport the Meta struct
- Loading branch information
1 parent
679b44d
commit 53ff082
Showing
10 changed files
with
106 additions
and
557 deletions.
There are no files selected for viewing
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
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,12 +1,19 @@ | ||
module github.com/abraithwaite/jeff | ||
module github.com/abraithwaite/jeff/v2 | ||
|
||
go 1.14 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/bradfitz/gomemcache v0.0.0-20180710155616-bc664df96737 | ||
github.com/gomodule/redigo v1.8.5 | ||
github.com/gorilla/handlers v1.4.0 | ||
github.com/gorilla/mux v1.7.0 | ||
github.com/stretchr/testify v1.5.1 | ||
github.com/tinylib/msgp v1.1.6 | ||
github.com/stretchr/testify v1.6.1 | ||
github.com/vmihailenco/msgpack/v5 v5.3.6-0.20220405065333-233c977ae92b | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) |
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
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
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
Oops, something went wrong.