Change Worker Count at runtime

Hi

Is it possibe to change the WorkerCount of a queue at runtime ?
does it have any side effect if I change the WorkerCount in HangFire.Server table ?
or when a server starts it sets the worker for entire life of the server ?

Workers are created at startup so changing that value won’t help:

You could re-create the BackgroundJobServer if you need to change the number of workers, but I’d question why you need to change this number at runtime ?

I am in need of updating the count at run time, is there any way to increase/decrease the count?