jarvisluong / redux-persist-realm

Realm persist engine for redux persist v4 and v5
MIT License
42 stars 13 forks source link

Is this storage engine faster then Async Storage? #9

Open wmonecke opened 4 years ago

wmonecke commented 4 years ago

Hi! I am asking because I know AsyncStorage is slow. Is this WAY faster?

jayzyaj commented 4 years ago

@wmonecke Overall. Yes, Realm is faster because they are mapping the data using in-memory, using B+ trees to avoid unnecessary copying.

You can check this link below for more details. https://www.simform.com/react-native-database-selection-guide/

wmonecke commented 4 years ago

Awesome thanks! @jayzyaj