miniflux-v2/scheduler/scheduler.go

45 lines
1.3 KiB
Go
Raw Normal View History

2017-11-20 06:10:04 +01:00
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-25 06:51:50 +02:00
package scheduler // import "miniflux.app/scheduler"
2017-11-20 06:10:04 +01:00
import (
"time"
2018-08-25 06:51:50 +02:00
"miniflux.app/logger"
"miniflux.app/storage"
2017-11-20 06:10:04 +01:00
)
2017-12-17 03:48:17 +01:00
// NewFeedScheduler starts a new scheduler that push jobs to a pool of workers.
func NewFeedScheduler(store *storage.Storage, workerPool *WorkerPool, frequency, batchSize int) {
go func() {
c := time.Tick(time.Duration(frequency) * time.Minute)
for range c {
jobs, err := store.NewBatch(batchSize)
if err != nil {
2017-12-17 03:48:17 +01:00
logger.Error("[FeedScheduler] %v", err)
} else {
2017-12-17 03:48:17 +01:00
logger.Debug("[FeedScheduler] Pushing %d jobs", len(jobs))
workerPool.Push(jobs)
}
2017-11-20 06:10:04 +01:00
}
}()
2017-11-20 06:10:04 +01:00
}
2017-12-17 03:48:17 +01:00
// NewCleanupScheduler starts a new scheduler that clean old sessions and archive read items.
func NewCleanupScheduler(store *storage.Storage, frequency int) {
2017-12-17 03:48:17 +01:00
go func() {
c := time.Tick(time.Duration(frequency) * time.Hour)
for range c {
2017-12-17 03:48:17 +01:00
nbSessions := store.CleanOldSessions()
nbUserSessions := store.CleanOldUserSessions()
logger.Info("[CleanupScheduler] Cleaned %d sessions and %d user sessions", nbSessions, nbUserSessions)
if err := store.ArchiveEntries(); err != nil {
logger.Error("[CleanupScheduler] %v", err)
}
2017-12-17 03:48:17 +01:00
}
}()
}