significantly lower max_update to obtain a stable ranking
This commit is contained in:
parent
6e1167ee9e
commit
ef19e3a9e7
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ use tokio;
|
||||||
const RANKER_INTERVAL: u64 = 60;
|
const RANKER_INTERVAL: u64 = 60;
|
||||||
const START_RATING: f64 = 0.0;
|
const START_RATING: f64 = 0.0;
|
||||||
const SCALE: f64 = 100.0;
|
const SCALE: f64 = 100.0;
|
||||||
const MAX_UPDATE: f64 = 10.0;
|
const MAX_UPDATE: f64 = 0.1;
|
||||||
|
|
||||||
pub async fn run_ranker(db_pool: DbPool) {
|
pub async fn run_ranker(db_pool: DbPool) {
|
||||||
// TODO: make this configurable
|
// TODO: make this configurable
|
||||||
|
|
Loading…
Reference in a new issue