apollo-server-memcached
TypeScript icon, indicating that this package has built-in type declarations

0.1.0-rc.10 • Public • Published

MemcachedCache

npm version Build Status

This package exports an implementation of KeyValueCache that allows using Memcached as a backing store for resource caching in Data Sources.

Usage

const { MemcachedCache } = require('apollo-server-memcached');
 
const server = new ApolloServer({
  typeDefs,
  resolvers,
  cache: new MemcachedCache(
    ['memcached-server-1', 'memcached-server-2', 'memcached-server-3'],
    { retries: 10, retry: 10000 }, // Options
  ),
  dataSources: () => ({
    moviesAPI: new MoviesAPI(),
  }),
});

For documentation of the options you can pass to the underlying memcached client, look here.

Readme

Keywords

none

Package Sidebar

Install

npm i apollo-server-memcached

Weekly Downloads

112

Version

0.1.0-rc.10

License

MIT

Unpacked Size

7.98 kB

Total Files

8

Last publish

Collaborators

  • apollo-bot