后台清理任务
()
| 389 | // 后台清理任务 |
| 390 | |
| 391 | func (c *ToolCache) cleanupLoop() { |
| 392 | ticker := time.NewTicker(5 * time.Minute) |
| 393 | defer ticker.Stop() |
| 394 | |
| 395 | for range ticker.C { |
| 396 | c.cleanup() |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | func (c *ToolCache) cleanup() { |
| 401 | c.stats.LastCleanupAt = time.Now() |
no test coverage detected