The load
command adds new records to the specified table.
Column values of existing records are updated by new values, if the table has a primary key and there are existing records with specified keys.
This is compatible to the load
command of the Groonga.
(ドキュメントルート)/d/load
GET
(ドキュメントルート)/d/load
POST
values
以外を指定します。values
用の値を指定します。対応していません。
対応していません。
{
"values" : <Array of records to be loaded>,
"table" : "<Name of the table>",
"columns" : "<List of column names for values, separated by ','>",
"ifexists" : "<Grn_expr to determine records which should be updated>",
"input_type" : "<Format type of the values>"
}
table
以外のパラメータはすべて省略可能です。
また、バージョン 1.1.1 の時点では以下のパラメータのみが動作します。これら以外のパラメータは未実装のため無視されます。
values
table
columns
They are compatible to the parameters of the load
command of the Groonga. See the linked document for more details.
HTTP clients can send values
as an URL parameter with GET
method, or the request body with POST
method.
The URL parameter values
is always ignored it it is sent with POST
method.
You should send data with POST
method if there is much data.
このコマンドは、レスポンスの body
としてコマンドの実行結果に関する情報を格納した配列を返却します。
[
[
<Groonga's status code>,
<Start time>,
<Elapsed time>
],
[<Number of loaded records>]
]
このコマンドはレスポンスの statusCode
として常に 200
を返します。これは、Groonga互換コマンドのエラー情報はGroongaのそれと同じ形で処理される必要があるためです。
レスポンスの body
の詳細:
0
(Droonga::GroongaHandler::Status::SUCCESS
) : 正常に処理された。.-22
(Droonga::GroongaHandler::Status::INVALID_ARGUMENT
) : 引数が不正である。