You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1 - To define a kind of SDK, it is made of a lot of classes, methods etc... it is huge.
2 - Send some data to process: it can be refreshed on some condition (it is a static variable, a big array of values)
3 - Evaluate some code a lot of times (several thousands of calls to the same method)
So, mainly 3 "evaluates". It works but each time I have to create a new runtime, then call the 3 evaluates.
It is not very performant, it is slow.
So, my goal would be to always use the same runtime, but I got the following error message "SyntaxError: redeclaration of 'candles'"
The problem is that it redefines an existing method or variables.
I have found no way to clear or redefine anything. Do you think it is possible?
The text was updated successfully, but these errors were encountered:
Hi,
I use multiple calls to 'evaluate':
1 - To define a kind of SDK, it is made of a lot of classes, methods etc... it is huge.
2 - Send some data to process: it can be refreshed on some condition (it is a static variable, a big array of values)
3 - Evaluate some code a lot of times (several thousands of calls to the same method)
So, mainly 3 "evaluates". It works but each time I have to create a new runtime, then call the 3 evaluates.
It is not very performant, it is slow.
So, my goal would be to always use the same runtime, but I got the following error message "SyntaxError: redeclaration of 'candles'"
The problem is that it redefines an existing method or variables.
I have found no way to clear or redefine anything. Do you think it is possible?
The text was updated successfully, but these errors were encountered: