diff options
| author | Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com> | 2019-06-11 20:49:08 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-06-11 20:49:08 +0900 |
| commit | 1432a7193d338b7945f2a285614f5068397d3fe9 (patch) | |
| tree | 2ef0c911416e7a92c8f57a7c6e4e37fd645e875b /src/config | |
| parent | Update README.md [AUTOGEN] (#5044) (diff) | |
| download | misskey-1432a7193d338b7945f2a285614f5068397d3fe9.tar.gz misskey-1432a7193d338b7945f2a285614f5068397d3fe9.tar.bz2 misskey-1432a7193d338b7945f2a285614f5068397d3fe9.zip | |
設定でPostgreSQLのクエリー結果のキャッシュを無効できるように (#5046)
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/types.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config/types.ts b/src/config/types.ts index c35bc63573..be3575d282 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -14,6 +14,7 @@ export type Source = { db: string; user: string; pass: string; + disableCache?: boolean; extra?: { [x: string]: string }; }; redis: { |