Skip to content

Instantly share code, notes, and snippets.

@ahayes91
Created July 29, 2021 17:10
Show Gist options
  • Save ahayes91/5f36665b9b30f2b9948bae2f5a83c9c0 to your computer and use it in GitHub Desktop.
Save ahayes91/5f36665b9b30f2b9948bae2f5a83c9c0 to your computer and use it in GitHub Desktop.
export const NO_CACHE = 0; // expires immediately, set as the default for any requests using axiosHelper methods with a cache
export const SHORT_SESSION = 5 * 60 * 1000; // 5 minutes
export const MEDIUM_SESSION = 15 * 60 * 1000; // 15 minutes
export const LONG_SESSION = 60 * 60 * 1000; // 1 hour
export const IMMUTABLE = 60 * 24 * 60 * 1000; // 24 hours
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment