Update server version

This commit is contained in:
mochi-co
2023-02-04 10:57:27 +00:00
parent ae3ee81bb4
commit db760c34a5
2 changed files with 2 additions and 1 deletions

View File

@@ -120,6 +120,7 @@ The server comes with a variety of pre-packaged network listeners which allow th
| --- | --- | | --- | --- |
| listeners.NewTCP | A TCP listener | | listeners.NewTCP | A TCP listener |
| listeners.NewUnixSock | A Unix Socket listener | | listeners.NewUnixSock | A Unix Socket listener |
| listeners.NewNet | A net.Listener listener |
| listeners.NewWebsocket | A Websocket listener | | listeners.NewWebsocket | A Websocket listener |
| listeners.NewHTTPStats | An HTTP $SYS info dashboard | | listeners.NewHTTPStats | An HTTP $SYS info dashboard |

View File

@@ -26,7 +26,7 @@ import (
) )
const ( const (
Version = "2.1.6" // the current server version. Version = "2.1.7" // the current server version.
defaultSysTopicInterval int64 = 1 // the interval between $SYS topic publishes defaultSysTopicInterval int64 = 1 // the interval between $SYS topic publishes
defaultFanPoolSize uint64 = 32 // the number of concurrent workers in the pool defaultFanPoolSize uint64 = 32 // the number of concurrent workers in the pool
defaultFanPoolQueueSize uint64 = 1024 // the capacity of each worker queue defaultFanPoolQueueSize uint64 = 1024 // the capacity of each worker queue