diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-06-06 12:26:43 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-06-09 11:02:36 -0400 |
| commit | 0c84d73294cb85a2126696abadb37003f3c08d7b (patch) | |
| tree | ddd9986c9010d79f2e5aa9520bfe67f8f20c38c2 /packages/backend/src/core/CacheService.ts | |
| parent | disable caches in unit tests (diff) | |
| download | sharkey-0c84d73294cb85a2126696abadb37003f3c08d7b.tar.gz sharkey-0c84d73294cb85a2126696abadb37003f3c08d7b.tar.bz2 sharkey-0c84d73294cb85a2126696abadb37003f3c08d7b.zip | |
move QuantumKVCache to a separate file
Diffstat (limited to 'packages/backend/src/core/CacheService.ts')
| -rw-r--r-- | packages/backend/src/core/CacheService.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/backend/src/core/CacheService.ts b/packages/backend/src/core/CacheService.ts index 2c136eac2b..e59857b4ce 100644 --- a/packages/backend/src/core/CacheService.ts +++ b/packages/backend/src/core/CacheService.ts @@ -7,7 +7,8 @@ import { Inject, Injectable } from '@nestjs/common'; import * as Redis from 'ioredis'; import { In, IsNull } from 'typeorm'; import type { BlockingsRepository, FollowingsRepository, MutingsRepository, RenoteMutingsRepository, MiUserProfile, UserProfilesRepository, UsersRepository, MiFollowing, MiNote } from '@/models/_.js'; -import { MemoryKVCache, QuantumKVCache, RedisKVCache } from '@/misc/cache.js'; +import { MemoryKVCache, RedisKVCache } from '@/misc/cache.js'; +import { QuantumKVCache } from '@/misc/QuantumKVCache.js'; import type { MiLocalUser, MiUser } from '@/models/User.js'; import { DI } from '@/di-symbols.js'; import { UserEntityService } from '@/core/entities/UserEntityService.js'; |