Initialize a new instance of the embedded service configuration options
Namespace: BrightstarDB.Config
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public EmbeddedServiceConfiguration(
PageCachePreloadConfiguration preloadConfiguration = null,
bool enableTransactionLoggingOnNewStores = true
) |
Visual Basic |
---|
Public Sub New (
Optional preloadConfiguration As PageCachePreloadConfiguration = Nothing,
Optional enableTransactionLoggingOnNewStores As Boolean = true
) |
Visual C++ |
---|
public:
EmbeddedServiceConfiguration(
PageCachePreloadConfiguration^ preloadConfiguration = nullptr,
bool enableTransactionLoggingOnNewStores = true
) |
F# |
---|
new :
?preloadConfiguration : PageCachePreloadConfiguration *
?enableTransactionLoggingOnNewStores : bool
(* Defaults:
let _preloadConfiguration = defaultArg preloadConfiguration null
let _enableTransactionLoggingOnNewStores = defaultArg enableTransactionLoggingOnNewStores true
*)
-> EmbeddedServiceConfiguration |
Parameters
- preloadConfiguration (Optional)
- Type: BrightstarDB.Config..::..PageCachePreloadConfiguration
OPTIONAL: Initial value of the PreloadConfiguration configuration option. Defaults to null (no page cache preload)
- enableTransactionLoggingOnNewStores (Optional)
- Type: System..::..Boolean
OPTIONAL: Initial value of the EnableTransactionLoggingOnNewStores flag. Defaults to true.
See Also