{"id":16389726,"url":"https://github.com/yuce/hazelcast-go-client-benchmark","last_synced_at":"2026-06-23T05:31:48.486Z","repository":{"id":146806335,"uuid":"519484767","full_name":"yuce/hazelcast-go-client-benchmark","owner":"yuce","description":null,"archived":false,"fork":false,"pushed_at":"2022-08-09T11:09:21.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-13T05:35:38.634Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yuce.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-07-30T10:23:15.000Z","updated_at":"2022-07-30T10:42:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"9de3b753-4501-401e-8559-91a87bf39f72","html_url":"https://github.com/yuce/hazelcast-go-client-benchmark","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yuce/hazelcast-go-client-benchmark","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuce%2Fhazelcast-go-client-benchmark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuce%2Fhazelcast-go-client-benchmark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuce%2Fhazelcast-go-client-benchmark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuce%2Fhazelcast-go-client-benchmark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yuce","download_url":"https://codeload.github.com/yuce/hazelcast-go-client-benchmark/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuce%2Fhazelcast-go-client-benchmark/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34677382,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T04:34:09.607Z","updated_at":"2026-06-23T05:31:48.465Z","avatar_url":"https://github.com/yuce.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hazelcast Go Client Benchmark\n\n**Requirements**\n\n* Go 1.18\n\n## Build\n\n    $ git clone https://github.com/yuce/hazelcast-go-client-benchmark.git\n    $ go build .\n\n## Usage\n\nRun `./hazelcast-go-client-benchmark` with a configuration file, e.g.,:\n\n    $ ./hazelcast-go-client-benchmark configs/128x1024_500keys_nc.json\n\n## Configuration\n\nHere's a sample JSON configuration:\n\n      \"Client\": {\n        \"Cluster\": {\n          \"Network\": {\n            \"Addresses\": [\n              \"localhost:5701\"\n            ]\n          }\n        },\n        \"NearCaches\": [\n          {\n            \"Name\": \"mymap*\",\n            \"InMemoryFormat\": \"binary\",\n            \"Eviction\": {\n              \"Policy\": \"lru\",\n              \"Size\": 500\n            }\n          }\n        ]\n      },\n      \"MapName\": \"mymap1\",\n      \"KeyCount\": 500,\n      \"Repeat\": 100,\n      \"GoroutineCount\": 1,\n      \"EntryGenerator\": \"sized128x1024\",\n      \"Warmup\": false\n    }\n\nCheck out https://pkg.go.dev/github.com/hazelcast/hazelcast-go-client#hdr-Configuration for the `Client` configuration.\nThe program configuration is in `config.go` in this project.\nThe config fields can be mapped to JSON fields straightforwardly.\nThe following program configuration keys are supported:\n\n* `MapName`: Map name to be used during the benchmark.\n* `KeyCount`: Number of unique keys to be used.\n* `Repeat`: Number of `Map.Get`s to do (after the warmup, if configured)\n* `GoroutineCount`: Number of goroutines to do `Map.Get`s. \n* `Warmup`: If `true`, runs populates the Near Cache before starting the benchmark. \n* `Client`: Hazelcast client configuration. Check out https://pkg.go.dev/github.com/hazelcast/hazelcast-go-client#hdr-Configuration. \n* `EntryGenerator`: Entry generator to use for generating keys and values. See the section below.\n\n## Entry Generator\n\nCheckout `entry_generators.go` for sample entry generators and how to add yours.\nHere are the builtin ones:\n\n* `identity`: Both keys and values are the `int64` index. \n* `sized128x1024`: String key of size 128 bytes, value of size 1024 bytes.\n* `sized128x4096`: String key of size 128 bytes, value of size 4096 bytes.\n\n## License\n\nSee: [LICENSE](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyuce%2Fhazelcast-go-client-benchmark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyuce%2Fhazelcast-go-client-benchmark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyuce%2Fhazelcast-go-client-benchmark/lists"}