ce7062a422
* Cache last commit to accelerate the repository directory page visit * Default use default cache configuration * add tests for last commit cache * Simplify last commit cache * Revert Enabled back * Change the last commit cache default ttl to 8760h * Fix test
13 lines
383 B
Go
13 lines
383 B
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package git
|
|
|
|
import "gopkg.in/src-d/go-git.v4/plumbing/object"
|
|
|
|
// LastCommitCache cache
|
|
type LastCommitCache interface {
|
|
Get(ref, entryPath string) (*object.Commit, error)
|
|
Put(ref, entryPath, commitID string) error
|
|
}
|