Placing processing into another process¶ You may decide to move the processing to the different process from the main application. For example, your web application will only enq...
Running multiple server instances¶ Obsolete since 1.5 You aren’t required to have additional configuration to support multiple background processing servers in the same process ...
Using IoC containers¶ As I said in the previous section Hangfire uses the JobActivator class to instantiate the target types before invoking instance methods. You can override ...
Performing recurrent tasks¶ Recurring job registration is just as simple as background job registration – you only need to write a single line of code: RecurringJob . AddOrUpdat...