-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: performance concerns in the git plugin's contributors_for_commit
Although the git plugin's `RawCommit` struct contains author and committer information, the `Commit` struct does not. For looking up the contributors to a commit we were doing a lot of expensive and wasteful computation to re-engineer what is already available in `RawCommit`. This commit exposes more functionality to the query endpoint functions to get `RawCommit` collections so we spend less time looking for information that was already there before we discarded it.
- Loading branch information
1 parent
9848c67
commit a562c90
Showing
4 changed files
with
99 additions
and
203 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 was deleted.
Oops, something went wrong.
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