Compare Akavache cache types
mainAkavache provides four distinct cache types based on your data's sensitivity, persistence requirements, and sharing needs. Use the following summary to choose the right one:
| Cache Type | Purpose | Persistence | Sharing | Encryption |
|---|---|---|---|---|
| UserAccount | User-specific data | ✅ Persistent | Per-user | Optional |
| LocalMachine | App-wide data | ✅ Persistent | All users | Optional |
| Secure | Sensitive data | ✅ Persistent | Per-user | ✅ Required |
| InMemory | Temporary data | ❌ Memory only | Current session | ❌ None |