Commit 78906378 authored by Fred Drake's avatar Fred Drake

- add key to specify the monitor address

- de-tabify everything
parent b72102d0
...@@ -8,50 +8,66 @@ ...@@ -8,50 +8,66 @@
</description> </description>
<key name="address" datatype="socket-address" <key name="address" datatype="socket-address"
required="yes"> required="yes">
<description> <description>
The address at which the server should listen. This can be in The address at which the server should listen. This can be in
the form 'host:port' to signify a TCP/IP connection or a the form 'host:port' to signify a TCP/IP connection or a
pathname string to signify a Unix domain socket connection (at pathname string to signify a Unix domain socket connection (at
least one '/' is required). A hostname may be a DNS name or a least one '/' is required). A hostname may be a DNS name or a
dotted IP address. If the hostname is omitted, the platform's dotted IP address. If the hostname is omitted, the platform's
default behavior is used when binding the listening socket ('' default behavior is used when binding the listening socket (''
is passed to socket.bind() as the hostname portion of the is passed to socket.bind() as the hostname portion of the
address). address).
</description> </description>
</key> </key>
<key name="read-only" datatype="boolean" <key name="read-only" datatype="boolean"
required="no" required="no"
default="false"> default="false">
<description> <description>
Flag indicating whether the server should operate in read-only Flag indicating whether the server should operate in read-only
mode. Defaults to false. Note that even if the server is mode. Defaults to false. Note that even if the server is
operating in writable mode, individual storages may still be operating in writable mode, individual storages may still be
read-only. But if the server is in read-only mode, no write read-only. But if the server is in read-only mode, no write
operations are allowed, even if the storages are writable. Note operations are allowed, even if the storages are writable. Note
that pack() is considered a read-only operation. that pack() is considered a read-only operation.
</description> </description>
</key> </key>
<key name="invalidation-queue-size" datatype="integer" <key name="invalidation-queue-size" datatype="integer"
required="no" required="no"
default="100"> default="100">
<description> <description>
The storage server keeps a queue of the objects modified by the The storage server keeps a queue of the objects modified by the
last N transactions, where N == invalidation_queue_size. This last N transactions, where N == invalidation_queue_size. This
queue is used to speed client cache verification when a client queue is used to speed client cache verification when a client
disconnects for a short period of time. disconnects for a short period of time.
</description>
</key>
<key name="monitor-address" datatype="socket-address"
required="no">
<description>
The address at which the monitor server should listen. If
specified, a monitor server is started. The monitor server
provides server statistics in a simple text format. This can
be in the form 'host:port' to signify a TCP/IP connection or a
pathname string to signify a Unix domain socket connection (at
least one '/' is required). A hostname may be a DNS name or a
dotted IP address. If the hostname is omitted, the platform's
default behavior is used when binding the listening socket (''
is passed to socket.bind() as the hostname portion of the
address).
</description> </description>
</key> </key>
<key name="transaction-timeout" datatype="integer" <key name="transaction-timeout" datatype="integer"
required="no"> required="no">
<description> <description>
The maximum amount of time to wait for a transaction to commit The maximum amount of time to wait for a transaction to commit
after acquiring the storage lock, specified in seconds. If the after acquiring the storage lock, specified in seconds. If the
transaction takes too long, the client connection will be closed transaction takes too long, the client connection will be closed
and the transaction aborted. and the transaction aborted.
</description> </description>
</key> </key>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment