Enum DataVeracity
Stipulates levels of data fidality, the higher the level - the more accurately verified data is provided
Namespace: NFX.DataAccess.Distributed
Assembly: NFX.dll
Syntax
public enum DataVeracity
Fields
Name | Description |
---|---|
Any | The backend will return the fist available data as soon as it finds it. This mode is the fastest however it may return data that has since been overwritten in some other storage devices/mediums. This mode may be used in cases when performance is paramount but 100% data accuracy is not really needed, i.e. when showing message/forum post comments on a social web site |
BackedUp | The backend will return the data which is stored in more than one device/medium |
Maximum | The highest level of data accuracy - the backend will compare data from multiple storage mediums/devices to calculate the most accurate/latest data. This mode is the slowest among the others |