我正在使用cassandra 2.1.16版。我已经证实cli.history文件包含最多501行。但是我没有看到cqlsh_history文件有限制。对此有任何想法。
答案 0 :(得分:1)
cqlsh
uses the readline
Python module,并且未设置历史记录长度。默认情况下,readline
does not limit the history file。
这假设您正在使用CPython 2.7。如果您有不同的解释器,则可以使用
检查默认值python -c "import readline; print readline.get_history_length()"