An open API service indexing awesome lists of open source software.

https://github.com/interledgerjs/ilp-store-redis

Redis store for ILP
https://github.com/interledgerjs/ilp-store-redis

Last synced: 5 months ago
JSON representation

Redis store for ILP

Awesome Lists containing this project

README

          

# ILP Store Redis
> ILP store for the connector, using redis as a backend

```js
const Store = require('ilp-store-redis')
const redisStore = new Store({
path: 'test.example', // used as prefix for keys and publish
port: 6379 // extra arguments are passed to `ioredis` constructor
})

await redisStore.get(key)
await redisStore.put(key, value)
await redisStore.del(key)
```