cassandra cqlsh_history 和 cli.history 行的最大 size/number 是多少?
What is the maximum size/number of lines of cassandra cqlsh_history and cli.history?
我使用的是 cassandra 2.1.16 版。我已确认 cli.history 文件最多包含 501 行。但是我没有看到 cqlsh_history 文件有限制。对此有任何想法。
cqlsh
uses the readline
Python module, and does not set a history length. By default, readline
does not limit the history file。
这假定您使用的是 CPython 2.7。如果您有不同的解释器,您可以使用
检查默认值
python -c "import readline; print readline.get_history_length()"
我使用的是 cassandra 2.1.16 版。我已确认 cli.history 文件最多包含 501 行。但是我没有看到 cqlsh_history 文件有限制。对此有任何想法。
cqlsh
uses the readline
Python module, and does not set a history length. By default, readline
does not limit the history file。
这假定您使用的是 CPython 2.7。如果您有不同的解释器,您可以使用
检查默认值python -c "import readline; print readline.get_history_length()"