Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Performance Question for Loading Datasources

    What's the recommended approach for loading data sources?

    Is something like this:
    Code:
    <script src="sc/DataSourceLoader?dataSource=DS1"></script>
    <script src="sc/DataSourceLoader?dataSource=DS2"></script>
    <script src="sc/DataSourceLoader?dataSource=DS3"></script>
    ...
    Or with one call better:
    Code:
    <script src="sc/DataSourceLoader?dataSource=DS1,DS2,DS3..."></script>

    #2
    Hi aderosso,

    I'd definitely go for the 2nd approach (less network calls, reproducible behaviour on the client side w.r.t. request timing). Also see the last point here if you run into HTTP problems.

    Best regards
    Blama

    Comment


      #3
      Awesome, that's what I was leaning towards. Thank you Blama

      Comment

      Working...
      X