mirror of
				https://github.com/TitanEmbeds/Titan.git
				synced 2025-11-04 07:47:10 +01:00 
			
		
		
		
	Lower sqlalchemy pool count
This commit is contained in:
		@@ -26,8 +26,8 @@ app = Flask(__name__, static_folder="static")
 | 
				
			|||||||
app.config['SQLALCHEMY_DATABASE_URI'] = config['database-uri']
 | 
					app.config['SQLALCHEMY_DATABASE_URI'] = config['database-uri']
 | 
				
			||||||
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False  # Suppress the warning/no need this on for now.
 | 
					app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False  # Suppress the warning/no need this on for now.
 | 
				
			||||||
app.config['RATELIMIT_HEADERS_ENABLED'] = True
 | 
					app.config['RATELIMIT_HEADERS_ENABLED'] = True
 | 
				
			||||||
app.config['SQLALCHEMY_POOL_RECYCLE'] = 250
 | 
					app.config['SQLALCHEMY_POOL_RECYCLE'] = 100
 | 
				
			||||||
app.config['SQLALCHEMY_POOL_SIZE'] = 100
 | 
					app.config['SQLALCHEMY_POOL_SIZE'] = 15
 | 
				
			||||||
app.config['SQLALCHEMY_COMMIT_ON_TEARDOWN'] = True
 | 
					app.config['SQLALCHEMY_COMMIT_ON_TEARDOWN'] = True
 | 
				
			||||||
app.config['RATELIMIT_STORAGE_URL'] = config["redis-uri"]
 | 
					app.config['RATELIMIT_STORAGE_URL'] = config["redis-uri"]
 | 
				
			||||||
app.config['PERMANENT_SESSION_LIFETIME'] = timedelta(days=3)
 | 
					app.config['PERMANENT_SESSION_LIFETIME'] = timedelta(days=3)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user