# 缓存查询

你可以缓存getManygetOnegetRawManygetRawOnegetCount这些QueryBuilder方法的查询结果。

还可以缓存findfindAndCountfindByIdscount这些Repository方法查询的结果。

要启用缓存,需要在连接选项中明确启用它:

{
    type: "mysql",
    host: "localhost",
    username: "test",
    ...
    cache: true
}
1
2
3
4
5
6
7

首次启用缓存时,你必须同步数据库架构(使用 CLI,migrations 或synchronize连接选项)。

然后在QueryBuilder中,你可以为任何查询启用查询缓存:

const users = await connection
  .createQueryBuilder(User, "user")
  .where("user.isAdmin = :isAdmin", { isAdmin: true })
  .cache(true)
  .getMany();
1
2
3
4
5

等同于Repository查询:

const users = await connection.getRepository(User).find({
  where: { isAdmin: true },
  cache: true
});
1
2
3
4

这将执行查询以获取所有 admin users 并缓存结果。 下次执行相同的代码时,它将从缓存中获取所有 admin users。 默认缓存生存期为1000 ms,例如 1 秒。 这意味着在调用查询构建器代码后 1 秒内缓存将无效。 实际上,这也意味着如果用户在 3 秒内打开用户页面 150 次,则在此期间只会执行三次查询。 在 1 秒缓存窗口期间插入的任何 users 都不会返回到 user。

你可以通过QueryBuilder手动更改缓存时间:

const users = await connection
  .createQueryBuilder(User, "user")
  .where("user.isAdmin = :isAdmin", { isAdmin: true })
  .cache(60000) // 1 分钟
  .getMany();
1
2
3
4
5

或者通过 Repository:

const users = await connection.getRepository(User).find({
  where: { isAdmin: true },
  cache: 60000
});
1
2
3
4

或者通过全局连接选项:

{
    type: "mysql",
    host: "localhost",
    username: "test",
    ...
    cache: {
        duration: 30000 // 30 seconds
    }
}
1
2
3
4
5
6
7
8
9

此外,你可以通过QueryBuilder设置"cache id":

const users = await connection
  .createQueryBuilder(User, "user")
  .where("user.isAdmin = :isAdmin", { isAdmin: true })
  .cache("users_admins", 25000)
  .getMany();
1
2
3
4
5

或者通过 Repository:

const users = await connection.getRepository(User).find({
  where: { isAdmin: true },
  cache: {
    id: "users_admins",
    milisseconds: 25000
  }
});
1
2
3
4
5
6
7

这使你可以精确控制缓存,例如,在插入新用户时清除缓存的结果:

await connection.queryResultCache.remove(["users_admins"]);
1

默认情况下,TypeORM 使用一个名为query-result-cache的单独表,并在那里存储所有查询和结果。 表名是可配置的,因此您可以通过在 tableName 属性中给出值来更改它 例如:

{
    type: "mysql",
    host: "localhost",
    username: "test",
    ...
    cache: {
        type: "database",
        tableName: "configurable-table-query-result-cache"
    }
}
1
2
3
4
5
6
7
8
9
10

如果在单个数据库表中存储缓存对你无效,则可以将缓存类型更改为"redis"或者"ioredis",而 TypeORM 将以 redis 形式存储所有缓存的记录。 例如:

{
    type: "mysql",
    host: "localhost",
    username: "test",
    ...
    cache: {
        type: "redis",
        options: {
            host: "localhost",
            port: 6379
        }
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13

"options" 可以是node_redis specific options (opens new window) 或者 ioredis specific options (opens new window),具体取决于你使用的类型。

如果你想使用IORedis的集群功能连接到redis-cluster,则可以通过方式下操作来执行此操作:

{
   type: "mysql",
   host: "localhost",
   username: "test",
   cache: {
       type: "ioredis/cluster",
       options: {
           startupNodes: [
               {
                   host: 'localhost',
                   port: 7000,
               },
               {
                   host: 'localhost',
                   port: 7001,
               },
               {
                   host: 'localhost',
                   port: 7002,
               }
           ],
           options: {
               scaleReads: 'all',
               clusterRetryStrategy: function (times) { return null },
               redisOptions: {
                   maxRetriesPerRequest: 1
               }
           }
       }
   }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

请注意,你仍然可以使用选项作为IORedis的集群构造函数的第一个参数。

{
    ...
    cache: {
        type: "ioredis/cluster",
        options: [
            {
                host: 'localhost',
                port: 7000,
            },
            {
                host: 'localhost',
                port: 7001,
            },
            {
                host: 'localhost',
                port: 7002,
            }
        ]
    },
    ...
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

你可以使用typeorm cache:clear来清除存储在缓存中的所有内容。