Asynchronous File-Based Session Storage
Asynchronous File-Based Session Storage combines excellent performance with the File-Based Session Storage functionality.
This storage has the same abilities as the File-Based Session Storage except for the asynchronous file operations. It creates a separate thread that performs all file system operations.
To use this storage, set the storageType
parameter in the Session(SessionSettings, Int32, SessionStorageType, UInt64, String) constructor
to the AsyncFileBasedStorage value.
Example
SessionSettings settings = new SessionSettings();
using (Session session = new Session(settings, marketSegmentId, SessionStorageType.AsyncFileBasedStorage))
{
}