ePrivacy and GPDR Cookie Consent by Cookie Consent Skip to main content

Meiro Events SDK performance

Slow web loading with integrated ME SDK

ME SDK is inserted into the web code with the flag "async", so it does not block the display and its javascript code is run immediately after loading. The script itself has a cache expiration set to 30 minutes (approximately corresponds to a session), ie, after the first download, it is saved to the user's disk, from where it is loaded for the next 30 minutes each time it is used and is not downloaded again from the server until this period expires.

1.png

Note:

  • Green = Parsing HTML
  • Blue = Downloading JS File
  • Red = Execuring JS Code

Influence of ME SDK on web performance in benchmarks

After deploying to the Web, the SDK performs the following actions on each page view:

  • Initializes meiro_user_id if neither cookie nor local storage exists
  • Initializes meiro_session_id
  • Sends an event with a Google client id, or an event with data from the Optimizely service, if any
  • Runs the banner selection evaluation algorithm and eventually displays the banner
  • Sends a page view event
  • Registers an event listener for clicking on the outbound_link_click event tracking link

 

The above-mentioned procedures have a minimal effect on the performance of the website in benchmarks. This follows from ten measurements performed simultaneously in the https://developers.google.com/speed/pagespeed/insights/ application when we tested a static HTML page with one <h1> element (on the basic hosting of Wedos) and an SDK with 10 active banners. The total application score ranged from 99 to 100, with the Total Blocking Time value ranging from 70 to 120 ms.

2.png