-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
In the past the time needed for the computation of some test code snippets, was approximately 1 second and lesser.
With #280 the computation time of some code snippets increased up to 4 seconds, in some cases to 8 - 16 seconds.
Examples (time increased to ~ 4 sec, scope: params.global)
"teststring/1" : "teststring/1 value",
${params.global.teststring/1} : "${params.global.teststring/1} extended"
"list_param" : ["A", "B", "C"],
"val2" : "${params.global.list_param[1]}"
"dict_param" : {"A" : 1 , "B" : 2},
"list_param" : ["A", "B", "C"],
"val3" : "${params.global.list_param[${params.global.dict_param}['A']]}"
"dict_param" : {"A" : 1 , "B" : 2},
"list_param" : ["A", "B", "C"],
"val4" : "${params.global.list_param[${params.global.dict_param}[${params.global.list_param}[0]]]}"
"dict_param" : {"A" : 1 , "B" : 2},
"list_param" : ["A", "B", "C"],
"val5" : "${params.global.list_param[${params.global.dict_param}['${params.global.list_param}[0]']]}"
Example (time increased to ~ 8 - 16 sec, scope: params.global)
"teststring*1" : "teststring*1 value",
${params.global.teststring*1} : "${params.global.teststring*1} extended"
This should be investigated.
Metadata
Metadata
Assignees
Projects
Status
Done