Apollo服务器端缓存:缓存的键值是什么?
创始人
2024-09-09 09:00:58
0

在Apollo服务器中,缓存的键值(cache key)是由query和variables两个属性决定的。query属性表示查询语句的字符串,variables属性表示查询语句所需的变量,两者合并起来作为缓存的键值。

以下示例代码演示了如何使用实际查询和变量来生成唯一的缓存键值。

import { ApolloServer } from 'apollo-server-express';
import { InMemoryCache } from 'apollo-cache-inmemory';
import { createHttpLink } from 'apollo-link-http';
import fetch from 'node-fetch';
import express from 'express';
import schema from './schema';

const app = express();

const httpLink = createHttpLink({
  uri: 'https://api.example.com/graphql',
  fetch: fetch,
});

const cache = new InMemoryCache();

const server = new ApolloServer({
  schema,
  cache,
  link: httpLink,
  context: ({ req }) => ({
    headers: req.headers,
  }),
  cacheControl: {
    defaultMaxAge: 86400,
  },
  plugins: [{
    requestDidStart(requestContext) {
      const query = requestContext.request.query;
      const variables = JSON.stringify(requestContext.request.variables);
      const cacheKey = `${query}:${variables}`;
      requestContext.context.cacheKey = cacheKey;
      return {
        willSendResponse(requestContext) {
          const { cacheKey } = requestContext.context;
          if (cacheKey) {
            const { response, cache } = requestContext;
            const { data } = response;
            cache.set(cacheKey, data);
          }
        },
      };
    },
  }],
});

server.applyMiddleware({
  app,
});

app.listen({ port: 4000 }, () =>
  console.log(`� Server ready at http://localhost:4000${server.graphqlPath}`)
);

在上面的示例代码中,我们使用了Apollo的requestDidStart插件,在请求开始时获取query和variables,并将两者合并成一个唯一的缓存键值(cache key),存储在请求上下文中,供后面使用。

然后

相关内容

热门资讯

避坑细节((pokerrrr2... 避坑细节((pokerrrr2俱乐部))外挂透明挂辅助工具(透明辅助挂)果真真的有挂(wpk教程)-...
关于((云扑克cloudpok... 关于((云扑克cloudpoker))外挂透明挂辅助工具(智能辅助)总是真的有挂(高科技教程)-百度...
分享一款((传奇扑克))外挂透... 分享一款((传奇扑克))外挂透明挂辅助app(黑科技辅助挂)本来真的有挂(科技教程)-哔哩哔哩1、机...
揭秘((aapOKER))外挂... 揭秘((aapOKER))外挂透明挂辅助插件(脚本辅助挂)原来真的有挂(新2025教程)-哔哩哔哩;...
一分钟了解((红龙软件德州扑克... 一分钟了解((红龙软件德州扑克))外挂透明挂辅助插件(德州辅助)的确是有挂的(爆料教程)-微博热搜德...
科技新动态((cloudpok... 科技新动态((cloudpoker云扑克))外挂透明挂辅助软件(智能辅助)都是真的有挂(科技教程)-...
热点讨论((鱼扑克app俱乐部... 热点讨论((鱼扑克app俱乐部))外挂透明挂辅助黑科技(透视辅助)的确是有挂的(微扑克教程)-抖音辅...
重磅来袭((线上wpk德州))... 重磅来袭((线上wpk德州))外挂透明挂辅助黑科技(wpk辅助)一般真的有挂(必胜教程)-哔哩哔哩1...
每日必看((红龙扑克))外挂透... 每日必看((红龙扑克))外挂透明挂辅助软件(黑科技辅助挂)好像真的有挂(详细教程)-百度贴吧1、完成...
重大通报((WEpoke))外... 重大通报((WEpoke))外挂透明挂辅助工具(脚本辅助挂)好像真的有挂(教你攻略)-小红书1. a...