Skip to content

Commit 127a460

Browse files
maxtsarenkoodinserj
authored andcommitted
fix typo (HangfireIO#43)
- remove duplicate 'the'
1 parent b3bb931 commit 127a460

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2017-09-20-hangfire-1.6.17.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ category: release
66

77
This release contains important improvements when SQL Server is used as a job storage. Distributed locks are much more robust now even when there are significant connectivity issues (like those sometimes happen in Azure or other cloud environments) and require much fewer connections to SQL Server. Another improvement is related to a new option that allows transactions to be committed with fewer round-trips.
88

9-
This new option is called `SqlServerStorageOptions.CommandBatchMaxTimeout`, is disabled by default currently and works only on .NET Framework. It uses the the internal `SqlCommandSet` class (not available in .NET Core) to queue commands on a client and flush them within a one network call, instead of waiting for confirmation after each command. This method significantly reduces the time required for a transaction to be committed, and decrease wait time for other transactions blocked by the former one. You can enable the new mode in the following way:
9+
This new option is called `SqlServerStorageOptions.CommandBatchMaxTimeout`, is disabled by default currently and works only on .NET Framework. It uses the internal `SqlCommandSet` class (not available in .NET Core) to queue commands on a client and flush them within a one network call, instead of waiting for confirmation after each command. This method significantly reduces the time required for a transaction to be committed, and decrease wait time for other transactions blocked by the former one. You can enable the new mode in the following way:
1010

1111
<pre><code><span class="type">GlobalConfiguration</span>.Configuration.UseSqlServerStorage(
1212
<span class="string">"connection_string"</span>,

0 commit comments

Comments
 (0)