mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-22 18:32:29 +01:00
Typeorm redis cache
This commit is contained in:
parent
b1933bb1ce
commit
ea09ba535e
@ -33,7 +33,12 @@ export function initDatabase(): Promise<Connection> {
|
||||
synchronize: type !== "mongodb",
|
||||
logging: false,
|
||||
cache: {
|
||||
duration: 1000 * 3, // cache all find queries for 3 seconds
|
||||
duration: 1000 * 30,
|
||||
type: "redis",
|
||||
options: {
|
||||
host: "localhost",
|
||||
port: 6379,
|
||||
},
|
||||
},
|
||||
bigNumberStrings: false,
|
||||
supportBigNumbers: true,
|
||||
|
Loading…
Reference in New Issue
Block a user