Redis database adapter for sharedb
ops
are stored as sharedb:ops:{collection}:{id}
and use the type Sorted Set.
snapshot
is stored as sharedb:snapshot:{collection}:{id}
and uses the generic type.
npm require sharedb-redis
const RedisDatabase = require('sharedb-redis')
const db = new RedisDatabase({
host: '127.0.0.1',
port: 6379
})
const sharedb = new Sharedb({ db })
npm run test