瀏覽代碼

Update README.md

wkh237 8 年之前
父節點
當前提交
1e5fe3bcb7
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      README.md

+ 2
- 2
README.md 查看文件

@@ -709,11 +709,11 @@ Here's a [sample app](https://github.com/wkh237/rn-firebase-storage-upload-sampl
709 709
 
710 710
 ## Performance Tips
711 711
 
712
-**Read Stream Event Overheard**
712
+**Read Stream Event Overhead**
713 713
 
714 714
 When reading data via `fs.readStream` the process seems blocking JS thread when file is large, it's because the default buffer size is quite small (4kb) which result in large amount of events triggered in JS thread, try to increase the buffer size (for example 100kb = 102400) and set a larger interval (which is introduced in 0.9.4 default value is 10ms) to limit the frequency. 
715 715
 
716
-**Reduce RCT Bridge and BASE64 Overheard**
716
+**Reduce RCT Bridge and BASE64 Overhead**
717 717
 
718 718
 React Native connects JS and Native context by passing JSON around React Native bridge, and there will be an overhead to convert data before they sent to each side. When data is large, this will be quite a performance impact to your app, it's recommended to use file storage instead of BASE64 if possible.The following chart shows how much faster when loading data from storage than BASE64 encoded string on iphone 6.
719 719