You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 9, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@ Command | Description
62
62
`-w`, `--workers <n>` | The number of worker threads to spawn. The default is 0.
63
63
`-m`, `--mirror [host:port]` | Mirror transactions to another cache server. Repeat this option ofr multiple mirrors.
64
64
`-m`, `--monitor-parent-process <n>` | Monitor a parent process and exit if it dies.
65
+
`--allow-ipv6` | Allow IPv6 connections if available.
65
66
`--dump-config` | Write the active configuration to the console.
66
67
`--save-config [path]` | Write the active configuration to the specified file and exit. Defaults to `./default.yml`.
67
68
`--NODE_CONFIG_DIR=<path>` | The directory to search for config files. This is equivalent to setting the `NODE_CONFIG_DIR` environment variable. If not specified, the built-in configuration is used.
.option('-p, --port <n>','Specify the server port, only apply to new cache server',myParseInt,consts.DEFAULT_PORT)
39
+
.option('-p, --port <n>','Specify the server port, only apply to new cache server',myParseInt,consts.DEFAULT_PORT)
40
40
.option('-c --cache-module [path]','Use cache module at specified path',defaultCacheModule)
41
41
.option('-P, --cache-path [path]','Specify the path of the cache directory')
42
42
.option('-l, --log-level <n>','Specify the level of log verbosity. Valid values are 0 (silent) through 5 (debug)',myParseInt,consts.DEFAULT_LOG_LEVEL)
43
43
.option('-w, --workers <n>','Number of worker threads to spawn',zeroOrMore,consts.DEFAULT_WORKERS)
44
-
.option('-m --mirror [host:port]','Mirror transactions to another cache server. Can be repeated for multiple mirrors',collect,[])
44
+
.option('-m --mirror [host:port]','Mirror transactions to another cache server. Can be repeated for multiple mirrors',collect,[])
45
+
.option('--allow-ipv6','Allow IPv6 connections if available')
45
46
.option('--dump-config','Write the active configuration to the console')
46
47
.option('--save-config [path]','Write the active configuration to the specified file and exit. Defaults to ./default.yml')
47
48
.option('--NODE_CONFIG_DIR=<path>','Specify the directory to search for config files. This is equivalent to setting the NODE_CONFIG_DIR environment variable. Without this option, the built-in configuration is used.');
0 commit comments