Skip to main content
Perform MultiProcessingParams’s parameter loading from the profile file to load TMPFS-related parameters. This function must be called after the LoadProfile() function.

Syntax

C++

HRESULT LoadMultiProcessingParamsFromProfile();

C#

void LoadMultiProcessingParamsFromProfile();

Visual Basic .NET

Sub LoadMultiProcessingParamsFromProfile()

Return values

This method has no specific return values. It returns the standard return values of ABBYY FineReader Engine functions.

Remarks

Changing the default tmpfs path (e.g., /dev/shm) is only supported on Linux systems and may negatively impact performance.
If a regular filesystem is used instead of tmpfs, private data may persist on disk.

Samples

// Load Engine
CSafePtr<IEngine> engine = FRE::GetFREngine(options);
...
engine->LoadProfile(userProfilePath);
engine->LoadMultiProcessingParamsFromProfile();

See also

MultiProcessingParams