{"id":31559094,"url":"https://github.com/farmergreg/adif-benchmark","last_synced_at":"2025-10-05T01:13:49.410Z","repository":{"id":311512551,"uuid":"1043912642","full_name":"farmergreg/adif-benchmark","owner":"farmergreg","description":"adif parser benchmarks","archived":false,"fork":false,"pushed_at":"2025-09-30T17:04:00.000Z","size":334,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-30T18:08:58.220Z","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":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/farmergreg.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-24T21:59:57.000Z","updated_at":"2025-09-30T17:04:04.000Z","dependencies_parsed_at":"2025-10-02T08:17:32.873Z","dependency_job_id":null,"html_url":"https://github.com/farmergreg/adif-benchmark","commit_stats":null,"previous_names":["hamradiolog-net/adif-benchmark","farmergreg/adif-benchmark"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/farmergreg/adif-benchmark","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farmergreg%2Fadif-benchmark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farmergreg%2Fadif-benchmark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farmergreg%2Fadif-benchmark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farmergreg%2Fadif-benchmark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/farmergreg","download_url":"https://codeload.github.com/farmergreg/adif-benchmark/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farmergreg%2Fadif-benchmark/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278397480,"owners_count":25979993,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"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":"2025-10-05T01:13:46.827Z","updated_at":"2025-10-05T01:13:49.406Z","avatar_url":"https://github.com/farmergreg.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# adif-benchmark\n\nA test suite to gauge performance of various golang [ADIF](https://www.adif.org/) parsers.\n\nThe test data was generated by running:\n`./docker-bench.sh`\n\nFinally, the results were sorted from fastest to slowest.\nThe same data in JSON format is benchmarked using the Go standard library to provide a fixed reference point for comparisons.\n\n## Read Benchmark\n\ncpu: AMD Ryzen 9 7950X 16-Core Processor\n\n| Library         | Iterations | Time (ns/op) | Memory (B/op) | Allocations |\n|-----------------|-----------:|-------------:|--------------:|------------:|\n| farmergreg ADI  | ⭐ 2083    | ⭐ 547270    | 781104       | ⭐ 10058    |\n| matir ADI       | 866        | 1363796      | 1728728       | 38665       |\n| Go Std Lib JSON | 648        | 1833157      | ⭐ 777858    | 25617        |\n| flwyd ADI       | 529        | 2271703      | 2706394       | 66889       |\n| farmergreg JSON | 422        | 2843286      | 2835498       | 32201       |\n| eminlin ADI     | 220        | 5410024      | 4874325       | 93011       |\n\n## Write Benchmark\n\ncpu: AMD Ryzen 9 7950X 16-Core Processor\n\n| Library         | Iterations | Time (ns/op) | Memory (B/op) | Allocations |\n|-----------------|-----------:|-------------:|--------------:|------------:|\n| farmergreg ADI  | ⭐ 2326    | ⭐ 505112    | ⭐ 571013    | ⭐ 3095    |\n| Go Std Lib JSON | 1107       | 1087908      | 813832        | 17804       |\n| farmergreg JSON | 642        | 1852393      | 1871253       | 22207       |\n| matir ADI       | 638        | 1863878      | 1490438       | 28673       |\n| flwyd ADI       | 566        | 2142214      | 2279077       | 54302       |\n| eminlin ADI     | N/A        | N/A          | N/A           | N/A         |\n\n⭐ indicates best performance in each metric (higher iterations = better, lower time/memory/allocations = better)\n\n## Related Projects\n\nIf you found this library useful, you may also be interested in the following projects:\n\n- [Go ADIF Specification](https://github.com/farmergreg/spec)\n- [farmergreg adif](https://github.com/farmergreg/adif)\n- [matir adifparser](https://github.com/Matir/adifparser)\n- [flwyd adif-multitool](https://github.com/flwyd/adif-multitool)\n- [eminlin GoADIFLog](https://github.com/Eminlin/GoADIFLog)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffarmergreg%2Fadif-benchmark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffarmergreg%2Fadif-benchmark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffarmergreg%2Fadif-benchmark/lists"}