Created
July 29, 2021 17:10
-
-
Save ahayes91/5f36665b9b30f2b9948bae2f5a83c9c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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