书栈网 · BookStack 本次搜索耗时 0.018 秒,为您找到 104 个相关结果.
  • 使用取消令牌

    3313 2018-06-08 《hangfire 中文文档》
    使用取消令牌¶ Hangfire在发起一个取消任务请求或者终止任务时,为任务提供了取消令牌的支持,在前一种情况下,将自动放回队列的对头,允许Hangfire重新处理任务。 取消令牌通过 IJobCancellationToken 的接口暴露出来。当发起取消任务请求时,它通过 ThrowIfCancellationRequested 方法来抛出 ...
  • 配置并行数

    3626 2018-06-08 《hangfire 中文文档》
    配置并行数¶ 后台任务由在Hangfire Server的子系统中运行的专用工作线程池进行处理。当您启动后台任务服务器时,它将初始化线程池并启动固定的worker。您可以通过将值传递给 UseHangfireServer 方法来指定并行数。 var options = new BackgroundJobServerOptio...
  • 在后台中调用方法

    5485 2018-06-08 《hangfire 中文文档》
    在后台中调用方法¶ Fire-and-forget 的调用方法极其简单。正如您从 快速开始 一节中了解到,您只需要传递一个具有相应方法和参数的lambda表达式: BackgroundJob . Enqueue (() => Console . WriteLine ( "Hello, world!" )); ...
  • Configuring Job Queues

    Configuring Job Queues¶ Hangfire can process multiple queues. If you want to prioritize your jobs or split the processing across your servers (some processes the archive queue, o...
  • Configuring the degree of parallelism

    Configuring the degree of parallelism¶ Background jobs are processed by a dedicated pool of worker threads that run inside Hangfire Server subsystem. When you start the backgroun...
  • 语法高亮教程

    3547 2018-06-08 《hangfire 中文文档》
    语法高亮教程¶ 简单示例 https://github.com/odinserj/Hangfire.Highlighter 完整示例 http://highlighter.hangfire.io , sources Table of Contents 概述 配置项目 先决条件 创建项目...
  • 配置任务队列

    5479 2018-06-23 《Hangfire中文文档》
    配置任务队列¶ Hangfire可以处理多个队列。如果您要优先处理作业或按服务实例分割(一些处理存档的队列, 其他处理镜像队列等),则可以告知Hangfire处理。 要将任务放入不同的队列中, 在你的方法中使用 QueueAttribute 类: [ Queue ( "critical" )] public void SomeMethod ...
  • 使用 SQL Server

    7386 2018-06-23 《Hangfire中文文档》
    配置¶ 该包提供了GlobalConfiguration类的扩展方法。 使用任何你拥有的SQL Server的 连接字符串 或者连接名称。 GlobalConfiguration . Configuration // Use connection string name defined in `web.config` or `app.co...
  • Using Batches

    Using Batches¶ Pro Only This feature is a part of Hangfire Pro package set Batches allow you to create a bunch of background jobs atomically. This means that if there was an e...
  • 运行多个服务实例

    5189 2018-06-23 《Hangfire中文文档》
    运行多个服务实例¶ 自1.5后就过时了 在Hangfire 1.5之后,您不需要额外的配置来支持多个服务实例处理同一个后台任务,可以跳过本文了。现在使用GUID生成服务器标识符,因此所有实例名称都是唯一的。 可以同时在一个程序、机器或多台机器上运行多个服务器实例。每个服务实例使用分布式锁来执行协调逻辑。 在上述情况中,每个Hangfire服务器都有...