-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support multiple 3dtiles url #8742
Comments
The maximum number of concurrent requests is limited by the browser. More concurrent requests doesn't necessary mean a faster application, see Kevin's write up on this here: #8549 (comment) and the general 3D Tiles request scheduler issue here #5509. Your code snippet implies you're trying to load multiple 3D Tilesets in your scene. You can do this by making one If you're still having issues in your app feel free to start a thread on the Cesium community: https://community.cesium.com/. |
Also Specifically look at |
FYI, the actual concurrent request limit depends on the browser (Chrome uses 6) and the limit is also per-server (there is an additional overall limit of 10 for the page in Chrome I believe). These limits go away or are much higher if HTTP/2 servers are used. |
Thanks. Using `RequestScheduler' and HTTP/2 helped me a lot . |
When I was testing, the loading of 3dtiles was limited by the browser, and only 6 requests could be concurrent at a time.
Can I support the following code to improve the request speed?
Thanks!
The text was updated successfully, but these errors were encountered: