Table of Contents

Class DiskStorageOptions

Namespace
JobFlow.Core.Infrastructure.Storage.Disk
Assembly
JobFlow.Core.dll
public class DiskStorageOptions : StorageOptions
Inheritance
DiskStorageOptions
Inherited Members
Extension Methods

Properties

DisableUpdateConcurrencyChecks

Disable concurrency checks on Update.

public bool DisableUpdateConcurrencyChecks { get; set; }

Property Value

bool

Remarks

By disabling concurrency checks on update, you can substantially increase update performance. This is because the check requires loading the existing document first before doing an update.

Note that when disabling the checks here, concurrency checks should be enabled via the UseDocumentUpdateTransaction setting instead, if concurrency is known to be an issue.