0.1.1 • Published 11 months ago

react-native-memcachejsi v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

react-native-memcachejsi

memcache wrapper with jsi

Installation

iOS

pod 'MemCache-Swift'

Android

implemention 'com.yongping.jmemcache:MemCache:0.0.1'

react native

npm install react-native-memcachejsi

Usage

import MemCache from "react-native-memcachejsi";

// ...
// get
MemCache.getInt("<your-key-of-int>")
// put
MemCache.putInt("<your-key-for-int", 10 | 0)
// put json
MemCache.putJson('key-for-json', JSON.stringfy({key1: 'value1', key2: false}))
// patch json
MemCache.patchJson("key-for-json", JSON.stringfy({a: 10, b: 'bbb'}))

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

0.1.1

11 months ago

0.1.0

11 months ago