7.3.4. プリティープリント#
7.3.4.1. 概要#
Added in version 5.1.0.
Groongaでは 出力形式 にJSONを選んだときはプリティープリント(読みやすく整形して出力)できます。
7.3.4.2. 使い方#
output_pretty
パラメーターに yes
を指定するだけです。:
> status --output_pretty yes
[
[
0,
1448344438.43783,
5.29289245605469e-05
],
{
"alloc_count": 233,
"starttime": 1448344437,
"start_time": 1448344437,
"uptime": 1,
"version": "5.0.9-135-g0763d91",
"n_queries": 0,
"cache_hit_rate": 0.0,
"command_version": 1,
"default_command_version": 1,
"max_command_version": 2
}
]
以下は output_pretty
パラメーターを指定しなかったときの結果です。:
> status
[[0,1448344438.43783,5.29289245605469e-05],{"alloc_count":233,"starttime":1448344437,...}]