The Java ADF spawns off five threads for each web session, which don't expire until the web session expires. This makes the Java ADF not scalable enough to handle large numbers of simultaneous users.
最後に公開された状態: August 25, 2014No Product Found
不具合 ID 番号
NIM009880
送信されました
June 23, 2007
最終更新日
June 5, 2024
適用対象
No Product Found
見つかったバージョン
9.2
プログラム言語
Java
ステータス
Will Not Be Addressed
開発チームは、この問題またはリクエストを検討した結果、これに対処しないことに決定しました。 問題の「参考情報」セクションに、さらに詳細な説明が示されていることがあります。
参考情報
No Public Explanation
対処法
When multiple resources are requested, the Java ADF requests those resources in parallel for better performance. Each parallel request requires its own thread. We believe this makes the Java ADF more scalable since requests are handled faster and thus you make better use of your existing hardware. However, it is possible to reduce the number of threads used by the application which will result in slower performance. This method below will set the thread pool size:<a href="http://edndoc.esri.com/arcobjects/9.2/Java/api/adfwebcontrols/com/esri/adf/web/data/WebContext.html#setThreadPoolSize" target="_blank">http://edndoc.esri.com/arcobjects/9.2/Java/api/adfwebcontrols/com/esri/adf/web/data/WebContext.html#setThreadPoolSize</a>(int)