GetSystemPropOrEnvVar()

Return the list of supported system properties or env vars Lucee supports.

Introduced: 6.2.1.23

GetSystemPropOrEnvVar( property=string );

Returns: any

Argument Description
property
string, optional

Optional, when set, the value of the property as configured is returned

Examples

// List all system properties  
<cfdump var="#GetSystemPropOrEnvVar()#" />  

// Return the configured value; otherwise, return empty
<cfdump var="#GetSystemPropOrEnvVar('lucee.cache.variableKeys')#" />

See also