Provider rate limiting
Default throttles for upstream APIs (SIMKL + Trakt + MDBList) and how to override them.
Defaults (no config needed)
Override limits in config.json
config.json{
"simkl": {
"rate_limit": {
"get_per_sec": 10,
"post_per_sec": 1
}
},
"mdblist": {
"rate_limit": {
"get_per_sec": 10,
"post_per_sec": 1
}
},
"trakt": {
"rate_limit": {
"get_per_sec": 3.33,
"post_per_sec": 1
}
}
}Tuning tips
Last updated
Was this helpful?