Announcement

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

  • aderosso
    replied
    Awesome, that's what I was leaning towards. Thank you Blama

    Leave a comment:


  • Blama
    replied
    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

    Leave a comment:


  • aderosso
    started a topic Performance Question for Loading Datasources

    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>
Working...
X