issues
search
calebmer
/
connect
10
stars
2
forks
source link
Cache persistence and eviction
#22
Open
calebmer
opened
5 years ago
calebmer
commented
5 years ago
The client-side data cache should:
Persist across page loads. We should use IndexedDB for this.
Evict entries using an LRU algorithm if we end up caching too much.
Purge all entries if the user signs out.
The client-side data cache should: