diff --git a/en/deployment/configuration/index.html b/en/deployment/configuration/index.html index 65d6956..eb91dbd 100644 --- a/en/deployment/configuration/index.html +++ b/en/deployment/configuration/index.html @@ -25,7 +25,8 @@ English
stream: Whether to enable Stream mode, default is false. When enabled, the Bot will stream files directly to storage endpoints (if supported), without downloading them locally.Stream mode is very useful for deployment environments with limited disk space, but it also has some drawbacks:
- Cannot use multi-threading to download files from Telegram, resulting in slower speeds.
- Higher task failure rate when the network is unstable.
- Cannot process files in the middle layer, such as automatic file type identification.
- Not supported by all storage endpoints; unsupported endpoints may downgrade to normal mode or fail to upload.
workers: Number of tasks to process simultaneously, default is 3.threads: Number of threads used when downloading files, default is 4. Only effective when Stream mode is not enabled.retry: Number of retries when a task fails, default is 3.proxy: Global proxy configuration. After setting this, all network connections inside the program will try to use this proxy. Optional.stream = false
+#lang: The language used by the Bot, default is zh-CN (Simplified Chinese). en is used for English.stream: Whether to enable Stream mode, default is false. When enabled, the Bot will stream files directly to storage endpoints (if supported), without downloading them locally.Stream mode is very useful for deployment environments with limited disk space, but it also has some drawbacks:
- Cannot use multi-threading to download files from Telegram, resulting in slower speeds.
- Higher task failure rate when the network is unstable.
- Cannot process files in the middle layer, such as automatic file type identification.
- Not supported by all storage endpoints; unsupported endpoints may downgrade to normal mode or fail to upload.
workers: Number of tasks to process simultaneously, default is 3.threads: Number of threads used when downloading files, default is 4. Only effective when Stream mode is not enabled.retry: Number of retries when a task fails, default is 3.proxy: Global proxy configuration. After setting this, all network connections inside the program will try to use this proxy. Optional.
lang = "en"
+stream = false
workers = 3
threads = 4
retry = 3
@@ -89,6 +90,6 @@ English# Temporary download folder configuration
[temp]
base_path = "./cache"
-