1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-23 15:19:42 +02:00

boosted SQL maxAllowedPacket

This commit is contained in:
Harvey Kandola 2017-10-29 19:49:11 -04:00
parent 5ad905a576
commit 2b642f25d3

View file

@ -84,7 +84,7 @@ func InitRuntime(r *env.Runtime, s *domain.Store) bool {
var stdParams = map[string]string{
"charset": "utf8mb4",
"parseTime": "True",
"maxAllowedPacket": "4194304", // 4194304 // 16777216 = 16MB
"maxAllowedPacket": "104857600", // 4194304 // 16777216 = 16MB // 104857600 = 100MB
}
func stdConn(cs string) string {