aboutsummaryrefslogtreecommitdiffstats
path: root/cache/common.go
Commit message (Collapse)AuthorAgeFilesLines
* packfile: cache undeltified objects to improve decode performance (#218)Antonio Navarro Perez2017-01-251-0/+16
* Simple object cache that keeps in memory the last undeltified objects. When no more objects can be kept into memory, the oldest one is deleted (FIFO). This speeds up packfile operations preventing redundant seeks and decodes.