[Groonga-commit] groonga/groonga [master] Added clearlock.html

Zurück zum Archiv-Index

null+****@clear***** null+****@clear*****
2010年 6月 19日 (土) 16:33:44 JST


Daijiro MORI	2010-06-19 07:33:44 +0000 (Sat, 19 Jun 2010)

  New Revision: bfdc911a5ff2a3cd5f187f9b1d94694fba59b9a3

  Log:
    Added clearlock.html

  Added files:
    doc/ja/commands/clearlock.html

  Added: doc/ja/commands/clearlock.html (+201 -0) 100644
===================================================================
--- /dev/null
+++ doc/ja/commands/clearlock.html    2010-06-19 07:33:44 +0000 (344cf13)
@@ -0,0 +1,201 @@
+
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    
+    <title>3.2.3. 名前 &mdash; groonga v0.7.3 documentation</title>
+    <link rel="stylesheet" href="../_static/default.css" type="text/css" />
+    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
+    <script type="text/javascript">
+      var DOCUMENTATION_OPTIONS = {
+        URL_ROOT:    '../',
+        VERSION:     '0.7.3',
+        COLLAPSE_INDEX: false,
+        FILE_SUFFIX: '.html',
+        HAS_SOURCE:  true
+      };
+    </script>
+    <script type="text/javascript" src="../_static/jquery.js"></script>
+    <script type="text/javascript" src="../_static/underscore.js"></script>
+    <script type="text/javascript" src="../_static/doctools.js"></script>
+    <link rel="top" title="groonga v0.7.3 documentation" href="../index.html" />
+    <link rel="up" title="3.2. 組み込みコマンド一覧" href="../commands.html" />
+    <link rel="next" title="3.2.9. column_create" href="column_create.html" />
+    <link rel="prev" title="3.2.2. cache_limit" href="cache_limit.html" /> 
+  </head>
+  <body>
+    <div class="related">
+      <h3>Navigation</h3>
+      <ul>
+        <li class="right" style="margin-right: 10px">
+          <a href="../genindex.html" title="General Index"
+             accesskey="I">index</a></li>
+        <li class="right" >
+          <a href="column_create.html" title="3.2.9. column_create"
+             accesskey="N">next</a> |</li>
+        <li class="right" >
+          <a href="cache_limit.html" title="3.2.2. cache_limit"
+             accesskey="P">previous</a> |</li>
+        <li><a href="../index.html">groonga v0.7.3 documentation</a> &raquo;</li>
+          <li><a href="../reference.html" >3. リファレンスマニュアル</a> &raquo;</li>
+          <li><a href="../commands.html" accesskey="U">3.2. 組み込みコマンド一覧</a> &raquo;</li> 
+      </ul>
+    </div>  
+
+    <div class="document">
+      <div class="documentwrapper">
+        <div class="bodywrapper">
+          <div class="body">
+            
+  <p>clearlock
+===</p>
+<div class="section" id="id1">
+<h1>3.2.3. 名前<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h1>
+<p>clearlock - オブジェクトにセットされたロックを解除する</p>
+</div>
+<div class="section" id="id2">
+<h1>3.2.4. 書式<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h1>
+<div class="highlight-none"><div class="highlight"><pre>clearlock objname [output_type [id]]
+</pre></div>
+</div>
+</div>
+<div class="section" id="id3">
+<h1>3.2.5. 説明<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h1>
+<p>groonga組込コマンドの一つであるclearlockについて説明します。組込コマンドは、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリクエストを送信することによって実行します。</p>
+<p>clearlockは、対象となるオブジェクト(データベース,テーブル,インデックス等)を指定し、オブジェクトにかけられたロックを再帰的に解除します。</p>
+</div>
+<div class="section" id="id4">
+<h1>3.2.6. 引数<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h1>
+<p><tt class="docutils literal"><span class="pre">objname</span></tt></p>
+<blockquote>
+対象となるオブジェクト名を指定します。空の場合、開いているdbオブジェクトが対象となります。</blockquote>
+<p><tt class="docutils literal"><span class="pre">output_type</span></tt></p>
+<blockquote>
+出力形式を、json,tsv,xmlのいずれかで指定します。</blockquote>
+<p><tt class="docutils literal"><span class="pre">id</span></tt></p>
+<blockquote>
+レコードIDによってレコードを指定します。idパラメータを指定する場合は、keyパラメータを指定してはいけません。 <a class="footnote-reference" href="#id9" id="id5">[1]</a></blockquote>
+<p>返値
+&#8212;</p>
+<p>以下のようなjson形式で値が返却されます。 <a class="footnote-reference" href="#id10" id="id6">[2]</a></p>
+<div class="highlight-none"><div class="highlight"><pre>[リターンコード, 処理開始時間, 処理時間]
+</pre></div>
+</div>
+<p><tt class="docutils literal"><span class="pre">リターンコード</span></tt></p>
+<blockquote>
+grn_rcに対応する数値が返されます。0(GRN_SUCCESS)以外の場合は、続いてエラー内容を示す
+文字列が返されます。</blockquote>
+<p><tt class="docutils literal"><span class="pre">処理開始時間</span></tt></p>
+<blockquote>
+処理を開始した時間について、1970年1月1日0時0分0秒を起点とした秒数を小数で返します。</blockquote>
+<p><tt class="docutils literal"><span class="pre">処理時間</span></tt></p>
+<blockquote>
+処理にかかった秒数を返します。</blockquote>
+</div>
+<div class="section" id="id7">
+<h1>3.2.7. 例<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h1>
+<p>開いているデータベースのロックをすべて解除する</p>
+<blockquote>
+<p>clearlock</p>
+<p>[[0,1276673270.12593,2.5e-05]]</p>
+</blockquote>
+<p>テーブル名 Entry のカラム body のロックを解除する</p>
+<blockquote>
+<p>clearlock Entry.body</p>
+<p>[[0,1276673437.30953,5.0e-06]]</p>
+</blockquote>
+</div>
+<div class="section" id="id8">
+<h1>3.2.8. 関連項目<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h1>
+<p><a class="reference internal" href="load.html"><em>load</em></a></p>
+<table class="docutils footnote" frame="void" id="id9" rules="none">
+<colgroup><col class="label" /><col /></colgroup>
+<tbody valign="top">
+<tr><td class="label"><a class="fn-backref" href="#id5">[1]</a></td><td>output_columnsでのgrn式指定はv1.0でサポートされます。</td></tr>
+</tbody>
+</table>
+<table class="docutils footnote" frame="void" id="id10" rules="none">
+<colgroup><col class="label" /><col /></colgroup>
+<tbody valign="top">
+<tr><td class="label"><a class="fn-backref" href="#id6">[2]</a></td><td>idパラメータはv1.0でサポートされます。</td></tr>
+</tbody>
+</table>
+<table class="docutils footnote" frame="void" id="id11" rules="none">
+<colgroup><col class="label" /><col /></colgroup>
+<tbody valign="top">
+<tr><td class="label">[3]</td><td>tsv,xml出力はv1.0でサポートされます。また、処理開始時間・処理時間については正確でない場合があります。</td></tr>
+</tbody>
+</table>
+</div>
+
+
+          </div>
+        </div>
+      </div>
+      <div class="sphinxsidebar">
+        <div class="sphinxsidebarwrapper">
+  <h3><a href="../index.html">Table Of Contents</a></h3>
+  <ul>
+<li><a class="reference internal" href="#">3.2.3. 名前</a></li>
+<li><a class="reference internal" href="#id2">3.2.4. 書式</a></li>
+<li><a class="reference internal" href="#id3">3.2.5. 説明</a></li>
+<li><a class="reference internal" href="#id4">3.2.6. 引数</a></li>
+<li><a class="reference internal" href="#id7">3.2.7. 例</a></li>
+<li><a class="reference internal" href="#id8">3.2.8. 関連項目</a></li>
+</ul>
+
+  <h4>Previous topic</h4>
+  <p class="topless"><a href="cache_limit.html"
+                        title="previous chapter">3.2.2. cache_limit</a></p>
+  <h4>Next topic</h4>
+  <p class="topless"><a href="column_create.html"
+                        title="next chapter">3.2.9. column_create</a></p>
+  <h3>This Page</h3>
+  <ul class="this-page-menu">
+    <li><a href="../_sources/commands/clearlock.txt"
+           rel="nofollow">Show Source</a></li>
+  </ul>
+<div id="searchbox" style="display: none">
+  <h3>Quick search</h3>
+    <form class="search" action="../search.html" method="get">
+      <input type="text" name="q" size="18" />
+      <input type="submit" value="Go" />
+      <input type="hidden" name="check_keywords" value="yes" />
+      <input type="hidden" name="area" value="default" />
+    </form>
+    <p class="searchtip" style="font-size: 90%">
+    Enter search terms or a module, class or function name.
+    </p>
+</div>
+<script type="text/javascript">$('#searchbox').show(0);</script>
+        </div>
+      </div>
+      <div class="clearer"></div>
+    </div>
+    <div class="related">
+      <h3>Navigation</h3>
+      <ul>
+        <li class="right" style="margin-right: 10px">
+          <a href="../genindex.html" title="General Index"
+             >index</a></li>
+        <li class="right" >
+          <a href="column_create.html" title="3.2.9. column_create"
+             >next</a> |</li>
+        <li class="right" >
+          <a href="cache_limit.html" title="3.2.2. cache_limit"
+             >previous</a> |</li>
+        <li><a href="../index.html">groonga v0.7.3 documentation</a> &raquo;</li>
+          <li><a href="../reference.html" >3. リファレンスマニュアル</a> &raquo;</li>
+          <li><a href="../commands.html" >3.2. 組み込みコマンド一覧</a> &raquo;</li> 
+      </ul>
+    </div>
+    <div class="footer">
+        &copy; Copyright 2009-2010, Brazil, Inc.
+      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0b2.
+    </div>
+  </body>
+</html>
\ No newline at end of file




Groonga-commit メーリングリストの案内
Zurück zum Archiv-Index