memcache wrapper with jsi
npm install react-native-memcachejsimemcache wrapper with jsi
iOS
``shell`
pod 'MemCache-Swift'
Android
`shell`
implemention 'com.yongping.jmemcache:MemCache:0.0.1'
react native
`sh`
npm install react-native-memcachejsi
`js
import MemCache from "react-native-memcachejsi";
// ...
// get
MemCache.getInt("
// put
MemCache.putInt("
MemCache.putJson('key-for-json', JSON.stringfy({key1: 'value1', key2: false}))
// patch json
MemCache.patchJson("key-for-json", JSON.stringfy({a: 10, b: 'bbb'}))
``
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT