在 flutter 中存储键值对的最佳选择是什么?
which best option to store key value pair in flutter?
我应该使用哪个插件将数据保存为键值对,其中一些将是序列化对象?性能有什么不同吗?
flutter_secure_storage
使用 aes
加密存储,并且与 shared_preefrences
一样保存,但 same security
有更好的选择,但性能更高 hive
.
性能差异如下所示,
for 1000 read iterations
1000 write iterations
我应该使用哪个插件将数据保存为键值对,其中一些将是序列化对象?性能有什么不同吗?
flutter_secure_storage
使用 aes
加密存储,并且与 shared_preefrences
一样保存,但 same security
有更好的选择,但性能更高 hive
.
性能差异如下所示,
for 1000 read iterations
1000 write iterations