mirror of
https://github.com/vale981/apollo-server
synced 2025-03-05 09:41:40 -05:00
.. | ||
src | ||
.npmignore | ||
package.json | ||
README.md | ||
tsconfig.json |
RedisCache
This package exports an implementation of KeyValueCache
that allows using Redis as a backing store for resource caching in Data Sources.
Usage
const { RedisCache } = require('apollo-server-cache-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.