File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed
Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -112,16 +112,10 @@ export const queryClient = new QueryClient({
112112
113113``` mermaid
114114flowchart TD
115- subgraph Browser["Browser"]
116- IDBCache[["IDBCache"]]
117- Application(["Client app"])
118- WebWorker{{"Web Worker"}}
119- IndexedDB[("IndexedDB")]
120- end
121- Application -- ".setItem()" --> IDBCache
122- IDBCache -. Unencrypted chunks .-> WebWorker
123- WebWorker -. Encrypted chunks .-> IDBCache
124- IDBCache -. Encrypted chunks .-> IndexedDB
115+ Application([Client app]) --> |".setItem()"| IDBCache[[IDBCache]]
116+ IDBCache -.-> |"Unencrypted chunks"| WebWorker{{Web Worker}}
117+ WebWorker -.-> |"Encrypted chunks"| IDBCache
118+ IDBCache -.-> |"Encrypted chunks"| IndexedDB[(IndexedDB)]
125119```
126120
127121### getItem
You can’t perform that action at this time.
0 commit comments