Browse Source

update smart-socket to 1.4.0-rc.10 (#4621)

* 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

* config thread number

* update  to 1.0.10.0324-beta

* update smart-socket to 1.4.0-rc.9

* update smart-socket to 1.4.0-rc.10
三刀 6 years ago
parent
commit
e44ff84a44

+ 1 - 1
frameworks/Java/smart-socket/pom.xml

@@ -25,7 +25,7 @@
         <dependency>
             <groupId>org.smartboot.socket</groupId>
             <artifactId>aio-core</artifactId>
-            <version>1.4.0-rc.9</version>
+            <version>1.4.0-rc.10</version>
         </dependency>
         <dependency>
             <groupId>com.alibaba</groupId>

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

@@ -21,10 +21,10 @@ public class Bootstrap {
     static byte[] body = "Hello, World!".getBytes();
 
     public static void main(String[] args) {
-        System.setProperty("smart-socket.server.pageSize", (512 * 1024) + "");
-        System.setProperty("smart-socket.bufferPool.pageNum", 512 + "");
+        System.setProperty("smart-socket.server.pageSize", (8 * 1024 * 1024) + "");
+//        System.setProperty("smart-socket.bufferPool.pageNum", 512 + "");
         System.setProperty("smart-socket.session.writeChunkSize", (1024 * 4) + "");
-//        System.setProperty("sun.nio.ch.maxCompletionHandlersOnStack","2");
+//        System.setProperty("sun.nio.ch.maxCompletionHandlersOnStack","24");
         HttpMessageProcessor processor = new HttpMessageProcessor(System.getProperty("webapps.dir", "./"));
         processor.route("/plaintext", new HttpHandle() {
 
@@ -53,8 +53,8 @@ public class Bootstrap {
     public static void http(MessageProcessor<Http11Request> processor) {
         // 定义服务器接受的消息类型以及各类消息对应的处理器
         AioQuickServer<Http11Request> server = new AioQuickServer<>(8080, new HttpRequestProtocol(), processor);
-        server.setReadBufferSize(1024 * 2);
-        server.setThreadNum((int)(Runtime.getRuntime().availableProcessors() * 1.2));
+        server.setReadBufferSize(1024 * 4);
+        server.setThreadNum((int) (Runtime.getRuntime().availableProcessors() * 1.2));
         try {
             server.start();
         } catch (IOException e) {