Skip to content

Commit d799f2b

Browse files
committed
update README.md
1 parent 902266a commit d799f2b

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ This library aims to provide a fast & reliable solution for you data storage nee
2424
- **Fast and Efficient (0.0002s Read/Write Speed)**<br/>
2525
MMKV uses mmap to keep memory synced with file, and protobuf to encode/decode values to achieve best performance.
2626
You can see the benchmarks here: [Android](https://github.com/Tencent/MMKV/wiki/android_benchmark) & [iOS](https://github.com/Tencent/MMKV/wiki/iOS_benchmark)
27+
- **Reactive using useMMKVStorage Hook**<br/>
28+
Starting from `v0.5.5`, thanks to the power of JSI, we now have our very own `useMMKVStorage` Hook. Think of it like a persisted state that will always write every change in storage and update your app UI instantly. It doesn't matter if you reload the app or restart it.
2729
- **Multi-Process Support**<br/>
2830
MMKV supports concurrent read-read and read-write access between processes.
2931
- **Create unlimited Database instances**<br/>

docs/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ See the [Quick start](gettingstarted.md) guide for more details.
2121
- **Fast and Efficient (0.0002s Read/Write Speed)**<br/>
2222
MMKV uses mmap to keep memory synced with file, and protobuf to encode/decode values to achieve best performance.
2323
You can see the benchmarks here: [Android](https://github.com/Tencent/MMKV/wiki/android_benchmark) & [iOS](https://github.com/Tencent/MMKV/wiki/iOS_benchmark)
24+
- **Reactive using useMMKVStorage Hook**<br/>
25+
Starting from `v0.5.5`, thanks to the power of JSI, we now have our very own `useMMKVStorage` Hook. Think of it like a persisted state that will always write every change in storage and update your app UI instantly. It doesn't matter if you reload the app or restart it.
2426
- **Multi-Process Support**<br/>
2527
MMKV supports concurrent read-read and read-write access between processes.
2628
- **Create unlimited Database instances**<br/>

docs/usemmkvstorage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Reactive Apps with useMMKVStorage Hook
22

3-
Starting from `v0.5.5` , thanks to the power of JSI, we now have our very own `useMMKVStorage` Hook. Think of it like a persisted state that will always write every change in storage and update your app UI instantly. It doesn't matter if you reload the app or restart it. Everything will be in place on app load. Let's see how this works:
3+
Starting from `v0.5.5`, thanks to the power of JSI, we now have our very own `useMMKVStorage` Hook. Think of it like a persisted state that will always write every change in storage and update your app UI instantly. It doesn't matter if you reload the app or restart it. Everything will be in place on app load. Let's see how this works:
44

55
Import `MMKVStorage` and `useMMKVStorage` Hook.
66

0 commit comments

Comments
 (0)