package runtime import ( "time" "github.com/genofire/hs_master-kss-monolith/lib/worker" "github.com/genofire/hs_master-kss-monolith/models" ) var CacheConfig models.CacheWorkerConfig func CleanCache() { before := time.Now().Add(-CacheConfig.After.Duration) // Cache if product exists for index, cache := range productExistCache { if before.After(cache.LastCheck) { delete(productExistCache, index) } } // Cache for permissions for index, cache := range permissionCache { if before.After(cache.LastCheck) { delete(permissionCache, index) } } } func NewCacheWorker() (w *worker.Worker) { return worker.NewWorker(CacheConfig.Every.Duration, CleanCache) }