forked from valkey-io/valkey-glide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented writing results in json format to be transformed into csv…
… and Refactored TestClientSetGet (#24) * Added Benchmarking for go-redis and go-redis-async (multi goroutines support which is named as "async"). Restructured the project. Fixed bug in fill. * -Removed go-redis async. -Added functionality for accepting multiple clients, tasks and data sizes. -Resolved public/private exports. -Added TPS. -Fixed bug with randomization. (Concurrent threads were trying to access a global random object, made them into local objects) -Changed project structure * Address code review feedback and enhancements - Remove TODO comments - Update error messages - Refine variable naming conventions. - Update echo messages for Go benchmark runs. * -Implemented writing results in json format to be transformed into csv -Refactored TestClientSetGet * Updated ClientCount to client_count for uniformity. * Changed go version from a.b.c format to a.b. Downgraded from 1.21.1 to 1.21
- Loading branch information
1 parent
71dc0b2
commit 15b2c44
Showing
5 changed files
with
91 additions
and
22 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
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,6 +1,6 @@ | ||
module github.com/aws/babushka/go | ||
|
||
go 1.21.1 | ||
go 1.21 | ||
|
||
require github.com/redis/go-redis/v9 v9.2.0 | ||
|
||
|