[This is preliminary documentation and is subject to change.]
The TableOptions type exposes the following members.Constructors
Name | Description | |
---|---|---|
![]() | TableOptions(String) | Initializes a new instance of the TableOptions class |
![]() | TableOptions(IConfigSectionNode, Boolean) | Initializes a new instance of the TableOptions class |
Methods
Name | Description | |
---|---|---|
![]() | Clone |
Makes an identical copy of this instance
|
![]() | ![]() | Determines whether the specified object is equal to the current object. (Inherited from ![]() |
![]() | ![]() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from ![]() |
![]() | ![]() | Serves as the default hash function. (Inherited from ![]() |
![]() | ![]() | Gets the (Inherited from ![]() ![]() |
![]() | ![]() | Creates a shallow copy of the current (Inherited from ![]() ![]() |
![]() | ![]() | Returns a string that represents the current object. (Inherited from ![]() |
Extension Methods
Fields
Properties
Name | Description | |
---|---|---|
![]() | AsExternalParameter |
Allows to get/set options as external parameters
|
![]() | DefaultMaxAgeSec |
Specifies default max age length which is applied to cache items if Put() does not specify particular max age
|
![]() | DetailedInstrumentation |
True to include instrumentation details per table
|
![]() | GrowthFactor |
Defines the factor of growth - how much does a table grow when HWM is reached. The number has to be at least 1.2d
|
![]() | InitialCapacity |
How many elements an empty table should contain. The value is dependent on bucket count, so the actual table capacity is bucket-dependent
|
![]() | LoadFactorHWM |
Defines the load factor above which the growth is triggered
|
![]() | LoadFactorLWM |
Defines the load factor below which the shrinking is triggered
|
![]() | MaximumCapacity |
How many elements a table may have at maximum, the property is checked at growth.
Zero = no limit
|
![]() | MinimumCapacity |
How many elements a table may have at minimum, the property is checked at shrinking.
Zero = no limit.
The value is dependent on bucket count, so the actual table capacity is bucket-dependent
|
![]() | Name | |
![]() | ShrinkFactor |
Defines the factor of shrinking - how much does a table shrink when LWM is reached. The number has to be at most 0.7d
|
See Also