Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NOTE: For bots or clients without the ability to run Javascript , every page request will trigger SSR. This is because the static page can never be dynamically replaced by the User Interface application.  However, this is necessary behavior to support Search Engine Optimization, as some . Some search engine bots cannot run Javascript and require parsing of & therefore cannot index sites which do not generate static HTML files.

Keep in mind, SSR can be potentially taxing for very large pages with a lot of objects or data display.  This is because Node.js has to make requests to the REST API to gather all the data for the page before rendering the static HTML.  Because of this, we do also document some Performance Tuning suggestions for the User Interface (e.g. there is an option to cache these SSR generated static pages in order to generate them less frequently).