]> git.lizzy.rs Git - go-anidb.git/blob - misc.go
anidb: Implement MYLIST for single files
[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         UIDCacheDuration = 16 * DefaultCacheDuration // Can these even be changed?
19
20         // Used for anime that have already finished airing.
21         // It's unlikely that they get any important updates.
22         FinishedAnimeCacheDuration = 4 * AnimeCacheDuration
23
24         // Used when a request uses a non-existing key (AID, ed2k+size, etc)
25         InvalidKeyCacheDuration = 1 * time.Hour
26
27         // Used when the UDP API Anime query fails, but the HTTP API query succeeds.
28         AnimeIncompleteCacheDuration = 24 * time.Hour
29
30         // Used when there's some data missing on a file.
31         // Usually happens because the AVDump data hasn't been merged with the database
32         // yet, which is done on a daily cron job.
33         FileIncompleteCacheDuration = 24 * time.Hour
34 )