Skip to content

[WFR] on #259 #615

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 18 additions & 17 deletions ja/learn/admin/REST/rest-buckets-streamingURI.dita
Original file line number Diff line number Diff line change
@@ -1,31 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE reference PUBLIC "-//OASIS//DTD DITA Reference//EN" "reference.dtd">

<reference xml:lang="en-us" id="rest-buckets-streamingURI">
<title>Getting bucket streaming URI</title>
<shortdesc>To retrieve the streaming URI, use <codeph>GET /pools/default/buckets/default</codeph>
HTTP method and URI.</shortdesc>
<reference xml:lang="ja" id="rest-buckets-streamingURI">
<title>bucketストリーミングURIの取得</title>
<shortdesc>ストリーミングURIを取得するには、<codeph>GET /pools/default/buckets/default</codeph> HTTPメソッドとURIを使用します。</shortdesc>

<refbody>
<section><title>HTTP method and URI</title>
<section><title>HTTPメソッドとURI</title>
<codeblock>GET /pools/default/buckets/default</codeblock>

<p>The individual bucket request is exactly the same as what would be obtained from the item
in the array for the entire buckets list. The streamingUri is exactly the same except it
streams HTTP chunks using chunked encoding. A response of “\n\n\n\n” delimits chunks which
may be converted to a “zero chunk” in a future release. The behavior of the streamingUri
should be considered evolving.</p>
<p>
個々のbucketリクエストは全体のbucketリストの配列内のアイテムから取得されるものと一致します。。
streamingUriはチャンクされたエンコードを使用したHTTPチャンクをストリーム配信する以外は一致します。
“\n\n\n\n”のレスポンスは将来のリリースで“zero chunk”に変換できるかもしれないチャンクを区切ります。
streamingUriの挙動は今後の展開を考慮すべきです。
</p>

</section>

<section><title>Syntax</title>
<p>Curl request syntax:</p>
<section>
<title>シンタックス</title>
<p>Curlリクエストシンタックス:</p>
<codeblock>
curl -u [admin]:[password] -X GET
http://[localhost]:8091/pools/default/buckets/default
</codeblock>

<p>Raw HTTP request syntax:</p>
<p>Raw HTTPリクエストシンタックス:</p>

<codeblock>
GET /pools/default/buckets/default
Expand All @@ -36,15 +37,15 @@ X-memcachekv-Store-Client-Specification-Version: 0.1
</codeblock>
</section>

<section><title>Example</title>
<p>Curl request example</p>
<section><title></title>
<p>Curlリクエスト例</p>
<codeblock>
curl -u Administrator:password -X GET
http://10.5.2.117:8091/pools/default/buckets/default
</codeblock>


<p>Raw HTTP request example:</p>
<p>Raw HTTPリクエスト例:</p>
<codeblock>
GET /pools/default/buckets/default
Host: 10.5.2.117:8091
Expand All @@ -54,7 +55,7 @@ X-memcachekv-Store-Client-Specification-Version: 0.1
</codeblock>
</section>

<section><title>Response</title>
<section><title>レスポンス</title>

<codeblock>
% Total % Received % Xferd Average Speed Time Time Time Current
Expand Down