| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
- // SPDX-License-Identifier: Apache-2.0
- package cli // import "miniflux.app/v2/internal/cli"
- import (
- "log/slog"
- "time"
- "miniflux.app/v2/internal/config"
- "miniflux.app/v2/internal/storage"
- "miniflux.app/v2/internal/worker"
- )
- func runScheduler(store *storage.Storage, pool *worker.Pool) {
- slog.Debug(`Starting background scheduler...`)
- go feedScheduler(
- store,
- pool,
- config.Opts.PollingFrequency(),
- config.Opts.BatchSize(),
- )
- go cleanupScheduler(
- store,
- config.Opts.CleanupFrequencyHours(),
- )
- }
- func feedScheduler(store *storage.Storage, pool *worker.Pool, frequency, batchSize int) {
- for range time.Tick(time.Duration(frequency) * time.Minute) {
- jobs, err := store.NewBatch(batchSize)
- if err != nil {
- slog.Error("Unable to fetch jobs from database", slog.Any("error", err))
- } else {
- slog.Info("Created a batch of feeds",
- slog.Int("nb_jobs", len(jobs)),
- )
- pool.Push(jobs)
- }
- }
- }
- func cleanupScheduler(store *storage.Storage, frequency int) {
- for range time.Tick(time.Duration(frequency) * time.Hour) {
- runCleanupTasks(store)
- }
- }
|