apollo-server/packages/apollo-server-redis/README.md

24 lines
683 B
Markdown
Raw Normal View History

## RedisCache
This package exports an implementation of `KeyValueCache` that allows using Redis as a backing store for resource caching in [Data Sources](https://www.apollographql.com/docs/apollo-server/v2/features/data-sources.html).
## Usage
```js
const { RedisCache } = require('apollo-server-redis');
const server = new ApolloServer({
typeDefs,
resolvers,
cache: new RedisCache({
host: 'redis-server',
// Options are passed through to the Redis client
}),
dataSources: () => ({
moviesAPI: new MoviesAPI(),
}),
});
```
For documentation of the options you can pass to the underlying redis client, look [here](https://github.com/NodeRedis/node_redis).