ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
1export const SEARCH_CONFIG = {
2 BATCH_SIZE: 25,
3 MAX_MATCHES: 1000,
4} as const;
5
6export const FOLLOW_CONFIG = {
7 BATCH_SIZE: 50,
8} as const;
9
10export const CACHE_CONFIG = {
11 DEFAULT_TTL: 5 * 60 * 1000, // 5 minutes
12 PROFILE_TTL: 5 * 60 * 1000,
13 UPLOAD_LIST_TTL: 2 * 60 * 1000,
14 UPLOAD_DETAILS_TTL: 10 * 60 * 1000,
15 SEARCH_RESULTS_TTL: 10 * 60 * 1000,
16 FOLLOW_STATUS_TTL: 2 * 60 * 1000,
17} as const;