Development in Salesforce Marketing Cloud: Ampscript or SSJS? - Part 3

Published by: Santiago Tabuenca on June 1, 2023
 Santiago Tabuenca

As we have previously mentioned, in chapter 2 of the "Development in Salesforce Marketing Cloud" series, within the advantages and disadvantages of both languages is the issue of the performance of each one.

 

If the difference were slight, it would be a negligible variable, unless the data handling is immense, both in the number of records and related tables that are used to personalize emails, cloud pages, etc. 

 

Finally, we show you some numbers. These won't matter if you use little data; because in many cases, and today when going to smaller niches, this amount of data is limited. But in some of our clients with huge amounts of data, it is a factor to take into account when both languages ​​meet the desired objective.

 

New call-to-action

 

Should we use one language or another depending on its performance?

 

As we will see, and given the performance differences between one and the other, the answer, if you use a lot of data, maybe YES.

 

The test carried out is very basic but conclusive, we have used typical data tasks to analyze this performance.

 

  • A loop with text printing on each iteration.

  • Just a loop, without printing data or doing any other operation.

  • A data retrieval from a Data Extension and its printing in a table (50 rows).

  • A loop with a GET call to a page (5 requests).

  • And a test of doing 500 inserts in a Data Extension with 6 fields.

 

The results are very striking: the difference is very big in some tasks, mostly to the detriment of SSJS (bad news for those of us who prefer this language) and curiously the biggest difference is an elementary loop to print a text; but in the rest, there are also differences, it only wins if it is a loop without text, something that is not very common either (the truth is).

 

Here is the table of results:

 
 
 COMPARISON OF EXECUTION TIME IN SECONDS: AMPSCRIPT VERSUS SSJS
Script type Ampscript SSJS
Differential (%)
Printing in a loop of 5000 iterations of a String 0,016 0,708 4325%
20000 iteration loop without printing 0,06 0,032 -47%
Lookup and printing of 50 rows of a Data Extension 0,016 0,422 2538%
HTTP get to a URL in a loop 5 calls 0,158 0,219 39%
500 data inserts in a DE 0,783 0,9496 21%

 

And here is a table, representing the greater or lesser slowness of one language versus the other.


Performance between Ampscript vs SSJS

 

We hope these data give you some light. They have helped us decide in each development because we prioritized SSJS more than we should and now we will take AMPSCRIPT more into account in certain jobs.

 

 

If you liked this article, you may also be interested in:

 


 

Nueva llamada a la acción

 

If you liked this article, share it!


Topic: SF Marketing Cloud