mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	* 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
		
			
				
	
	
		
			14 lines
		
	
	
		
			383 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 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
 | |
| }
 |