add paritional files uploading for minIO

This commit is contained in:
2026-04-14 21:42:22 +02:00
parent 48d3c6f857
commit 60a02b73c0
5 changed files with 21 additions and 15 deletions
+7 -3
View File
@@ -3,7 +3,11 @@ package globals
import "time"
const (
MaxDirectMsgCache uint32 = 12
FileStorageBucketName string = "communicator"
FileDownloadLinkTtl time.Duration = 24 * time.Hour
MaxDirectMsgCache uint32 = 12
FileStorageBucketName string = "communicator"
MaxPostBytes uint32 = 4 << 10
MaxPostWithFileBytes uint32 = 1 << 30
FileProcessingPartSize uint64 = 24 << 10
FileProcessingThreads uint = 3
FileDownloadLinkTtl time.Duration = 24 * time.Hour
)