mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	Refactor cache and disable go-chi cache (#30417)
use built-in cache package to wrap external go-chi cache package
This commit is contained in:
		@@ -34,7 +34,7 @@ type commitStatusCacheValue struct {
 | 
			
		||||
 | 
			
		||||
func getCommitStatusCache(repoID int64, branchName string) *commitStatusCacheValue {
 | 
			
		||||
	c := cache.GetCache()
 | 
			
		||||
	statusStr, ok := c.Get(getCacheKey(repoID, branchName)).(string)
 | 
			
		||||
	statusStr, ok := c.Get(getCacheKey(repoID, branchName))
 | 
			
		||||
	if ok && statusStr != "" {
 | 
			
		||||
		var cv commitStatusCacheValue
 | 
			
		||||
		err := json.Unmarshal([]byte(statusStr), &cv)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user