如何配置hangfire在db中使用none默认模式?

cunj1qz1  于 2021-06-18  发布在  Mysql
关注(0)|答案(0)|浏览(147)

我已经使用hangfire.mysql.core和hangfire core实现了hangfire。它创建默认模式而不使用 hangfire.tablename . 我想添加前缀来添加hangfire的默认模式,
在下面的代码表中,前缀无效。

GlobalConfiguration.Configuration.UseStorage(
    new MySqlStorage(
        connectionString,
        new MySqlStorageOptions
        {
            TransactionIsolationLevel = IsolationLevel.ReadCommitted,
            QueuePollInterval = TimeSpan.FromSeconds(15),
            JobExpirationCheckInterval = TimeSpan.FromHours(1),
            CountersAggregateInterval = TimeSpan.FromMinutes(5),
            PrepareSchemaIfNecessary = true,
            DashboardJobListLimit = 50000,
            TransactionTimeout = TimeSpan.FromMinutes(1),
            TablesPrefix = "Hangfire"
        }));

我还安装了以下软件包仍然没有解决。

Hangfire.MySqlStorage.TablesPrefixedWithSchema

hangfire.mysql.core是否支持表前缀?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题