SessionBaseSetMinMaxStringIntern Method |
A persistent string read into memory from a
Database is interned using
Intern(String) to speed up comparisons and conserve memory (when the same string occurs in many places)
Namespace:
VelocityDb.Session
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public static void SetMinMaxStringIntern(
ushort minSize,
ushort maxSize
)
Public Shared Sub SetMinMaxStringIntern (
minSize As UShort,
maxSize As UShort
)
public:
static void SetMinMaxStringIntern(
unsigned short minSize,
unsigned short maxSize
)
static member SetMinMaxStringIntern :
minSize : uint16 *
maxSize : uint16 -> unit
Parameters
- minSize
- Type: SystemUInt16
Selected minimum plus one string length of a string to be interned - maxSize
- Type: SystemUInt16
Selected maximum string length for a string to be interned
See Also