just a little question.
what is the most efficient option?
1/ variables globally declared and used in SR_Service_Prepare()
2/ variables locally declared inside SR_Service_Prepare() and used in SR_Service_Prepare()
I guess in the case 2/ each time the SR_Service_Prepare() is called, declarations eat cpu time … right ?
so it may be the 1/ to choose
?!