v0.3.1/reduce-redis-content-expiry #90

Merged
lamacchinadesiderante merged 2 commits from v0.3.1/reduce-redis-content-expiry into develop 2024-05-19 17:18:13 +00:00
1 changed files with 5 additions and 2 deletions
Showing only changes of commit ca1d5dfec1 - Show all commits

View File

@ -1,4 +1,7 @@
export const DEFAULT_XVIDEOS_CONTENT_EXPIRY = { EX: 60 * 60 * 24 };
export const DEFAULT_XNXX_CONTENT_EXPIRY = { EX: 60 * 60 * 24 };
const EX_HOURLY = 60 * 60
const EX_DAILY = 60 * 60 * 24
export const DEFAULT_XVIDEOS_CONTENT_EXPIRY = { EX: EX_HOURLY };
export const DEFAULT_XNXX_CONTENT_EXPIRY = { EX: EX_HOURLY };
export const DEFAULT_RELATED_VIDEO_KEY_PATH = '/related/'