SHA256
23 lines
511 B
YAML
23 lines
511 B
YAML
# MySQL 数据库连接配置(复制为 config.yaml 后填入真实值)
|
|
mysql:
|
|
host: "localhost"
|
|
port: 3306
|
|
user: "root"
|
|
password: "your_password"
|
|
database: "ashare"
|
|
charset: "utf8mb4"
|
|
|
|
# 数据抓取配置
|
|
fetch:
|
|
# 每次请求间隔(秒),避免被限流
|
|
delay: 0.5
|
|
# 失败重试次数
|
|
retry: 3
|
|
# 并发线程数;当前主流程以本地缓存为主,通常保持 1 即可
|
|
workers: 1
|
|
|
|
# 通达信本地客户端配置
|
|
tdx:
|
|
# 通达信安装目录
|
|
dir: "C:\\new_tdx64"
|