https://medium.com/@bosung90/tackling-react-native-storage-part-1-d27b2bfa480f
AsyncStorage
https://facebook.github.io/react-native/docs/asyncstorage.html
Realm
https://realm.io/kr/news/realm-react-native-1-0/
firebase
나는 AyncStorage로 관리하다가 export해야할때 firebase를 사용할 예정.
앱이 온라인 환경일 필요가 없어서 AsyncStorage를 사용하는 것이고,
사용자가 데이터 보관을 해야할 때는 firebase. 이유는 익숙해서.
AsyncStorage
AsyncStorage는 로컬저장소.
단점: slow runtime, no indexing capabilities
이런 이유는 value로 sting만 받고,
모든 데이터가 string으로 serialize <-> deserialize과정이 필요해서.
데이터 용량이 큰 경우 안 쓰는 것이 낫다.
'개발 > React, React Native' 카테고리의 다른 글
color-blend-mode (0) | 2017.04.11 |
---|---|
full size image background 효과 (0) | 2017.04.11 |
image picker (0) | 2017.04.10 |
리액트 네이티브 유데미 강의 섹션9~ (0) | 2017.03.28 |
리액트 네이티브 유데미 강의 섹션1~8 (0) | 2017.03.16 |