You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 11, 2020. It is now read-only.
I understand there would be some overheard due to creation of custom objects created to support various operations, but the current implementation of CommitObjects is 16 times slower than the raw command.
The original strange thing I noticed that the go implementation would freeze for few seconds after reaching following commit 004a0b996ff8f269451e07346f71a129a1f3fbaf then list out remaining ~ 18-20 commits.
hyperfine --min-runs 5 './main''git rev-list --all'
Benchmark #1: ./main
Time (mean ± σ): 28.729 s ± 2.729 s [User: 15.574 s, System: 12.378 s]
Range (min … max): 25.745 s … 32.868 s 5 runs
Benchmark #2: git rev-list --all
Time (mean ± σ): 1.413 s ± 0.163 s [User: 1.174 s, System: 0.171 s]
Range (min … max): 1.331 s … 1.704 s 5 runs
Warning: The first benchmarking run for this command was significantly slower than the rest (1.704 s). This could be caused by (filesystem) caches that were not filled until after the first run. You should consider using the '--warmup' option to fill those caches before the actual benchmark. Alternatively, use the '--prepare' option to clear the caches before each timing run.
Summary
'git rev-list --all' ran
20.33 ± 3.04 times faster than './main'
I am trying to write a custom git grep wrapper using
go-git
.Essentially trying to replicate
CommitObjects()
is slow compared to the commandgit rev-list --all
To benchmark it, I used a big repo, (https://github.com/odoo/odoo/) with large number of commits.
I understand there would be some overheard due to creation of custom objects created to support various operations, but the current implementation of
CommitObjects
is 16 times slower than the raw command.The original strange thing I noticed that the go implementation would freeze for few seconds after reaching following commit
004a0b996ff8f269451e07346f71a129a1f3fbaf
then list out remaining ~ 18-20 commits.main.go
I used Hyperfine(https://github.com/sharkdp/hyperfine) to run a more standard benchmark than the
time
command and result is same.Profiling code
Profile output
cpu_profiling.pdf
Am I missing something ?
Is there a more performant way of iterating commits ?
P.S. Benchmark was performed on a 2017 MBP
The text was updated successfully, but these errors were encountered: