浏览代码

update maxCompletionHandlersOnStack (#4507)

* update dockerfile

* update to 1.0.10-SNAPSHOT

* update to 1.0.10-beta

* fix bug

* update to 1.0.10.1119-beta

* update to 1.0.10.1128-beta

* 还原代码

* update to 1.0.10.1206-beta

* update to 1.0.10.1209-beta

* update to 1.0.10.1214-beta

* 增加缓冲区

* update to 1.0.10-beta

* update to 1.0.10.1231-beta

* update to 1.0.10.0106-beta

* update to 1.0.0107-beta

* update to 1.0.10.0113-beta

* set new pageSize

* update smart-socket to 1.4.0-rc.2

* update to 1.4.0-rc.3

* update smart-socket to 1.4.0-rc.4

* update  to 1.0.10.0221-beta

* update smart-socket to 1.4.0-rc.5

* update maxCompletionHandlersOnStack
三刀 6 年之前
父节点
当前提交
4b6452ee74
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      frameworks/Java/smart-socket/src/main/java/org/smartboot/http/Bootstrap.java

+ 1 - 1
frameworks/Java/smart-socket/src/main/java/org/smartboot/http/Bootstrap.java

@@ -23,7 +23,7 @@ public class Bootstrap {
     public static void main(String[] args) {
         System.setProperty("smart-socket.server.pageSize", (16 * 1024 * 1024) + "");
         System.setProperty("smart-socket.session.writeChunkSize", (1024 * 8) + "");
-//        System.setProperty("sun.nio.ch.maxCompletionHandlersOnStack","32");
+        System.setProperty("sun.nio.ch.maxCompletionHandlersOnStack","8");
         HttpMessageProcessor processor = new HttpMessageProcessor(System.getProperty("webapps.dir", "./"));
         processor.route("/plaintext", new HttpHandle() {