Hello guys,
in our IDS implementation we are using lots of javascript functions. This functions are defined within 2 files, one of them contains about 2000 rows. The problem is, that the include of this file with the
#include...
statement takes about 80 ms. This is a long time, especially when you know, that this file only defines methods, nothing is executed at the time of inclusion. Now my question is whether there is a possibility to tell the server to persistently keep this functions in memory with no need to include the file on every request (we are using soap for communication). Maybe there are some tricks to make the IDS JavaScript parser more performant?
Thanks in advance!
Peter