Github user robertdale commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/800#discussion_r169302920
--- Diff: docs/src/reference/gremlin-applications.asciidoc ---
@@ -1073,7 +1073,8 @@ The following table describes the various
configuration options that Gremlin Ser
|graphs |A `Map` of `Graph` configuration files where the key of the `Map`
becomes the name to which the `Graph` will be bound and the value is the file
name of a `Graph` configuration file. |_none_
|gremlinPool |The number of "Gremlin" threads available to execute actual
scripts in a `ScriptEngine`. This pool represents the workers available to
handle blocking operations in Gremlin Server. When set to `0`, Gremlin Server
will use the value provided by `Runtime.availableProcessors()`. |0
|host |The name of the host to bind the server to. |localhost
-|useEpollEventLoop |try to use epoll event loops (works only on Linux os)
instead of netty NIO. |false
+|idleReadLimit |Time in milliseconds that the server will allow a channel
to not receive requests from a client before it automatically closes. If
enabled, the value provided should typically exceed the amount of time given to
`idleWriteLimit`. Set this value to `0` to disable this feature. |0
+|idleWriteLimit |Time in milliseconds that the server will allow a channel
to not send responses to a client before it sends a "ping" to see if it is
still present. If it is present, the client should respond with a "pong" which
will thus reset the {@link #idleReadLimit} and keep the channel open. If
enabled, this number should be smaller than the value provided to the
`idleReadLimit`. Set this value to `0` to disable this feature. |0
--- End diff --
`{@link #idleReadLimit}` looks like a javadoc comment and doesn't render
here.
---