]> git.lizzy.rs Git - go-anidb.git/blob - misc.go
anidb: Add missing loop 'break's to EpisodeByEID
[go-anidb.git] / misc.go
1 package anidb
2
3 import (
4         "time"
5 )
6
7 type Language string
8
9 var (
10         // Default durations for the various caches.
11         // Used by the IsStale methods.
12         DefaultCacheDuration = 7 * 24 * time.Hour
13         AnimeCacheDuration   = DefaultCacheDuration
14         EpisodeCacheDuration = DefaultCacheDuration
15         GroupCacheDuration   = 4 * DefaultCacheDuration // They don't change that often.
16         FileCacheDuration    = 8 * DefaultCacheDuration // These change even less often.
17
18         // Used when a request uses a non-existing key (AID, ed2k+size, etc)
19         InvalidKeyCacheDuration = 1 * time.Hour
20
21         // Used when the UDP API Anime query fails, but the HTTP API query succeeds.
22         AnimeIncompleteCacheDuration = 24 * time.Hour
23
24         // Used when there's some data missing on a file.
25         // Usually happens because the AVDump data hasn't been merged with the database
26         // yet, which is done on a daily cron job.
27         FileIncompleteCacheDuration = 24 * time.Hour
28 )