Kouhei Sutou
null+****@clear*****
Wed Jul 8 23:05:44 JST 2015
Kouhei Sutou 2015-07-08 23:05:44 +0900 (Wed, 08 Jul 2015) New Revision: dcc69a8d1ff15ab473e979060b2d43c195dff2bc https://github.com/groonga/groonga.org/commit/dcc69a8d1ff15ab473e979060b2d43c195dff2bc Message: Update Groonga document Modified files: docs/objects.inv docs/reference/commands/logical_select.html docs/reference/commands/select.html docs/searchindex.js docs/sources/reference/commands/logical_select.txt docs/sources/reference/commands/select.txt docs/static/jquery.js docs/static/underscore.js ja/docs/contribution/development/release.html ja/docs/contribution/documentation/i18n.html ja/docs/genindex.html ja/docs/install/centos.html ja/docs/install/debian.html ja/docs/install/fedora.html ja/docs/install/ubuntu.html ja/docs/news/1.2.x.html ja/docs/news/4.x.html ja/docs/objects.inv ja/docs/reference/api/grn_cache.html ja/docs/reference/api/grn_column.html ja/docs/reference/api/grn_db.html ja/docs/reference/api/grn_obj.html ja/docs/reference/commands/io_flush.html ja/docs/reference/commands/lock_clear.html ja/docs/reference/commands/logical_count.html ja/docs/reference/commands/logical_range_filter.html ja/docs/reference/commands/logical_select.html ja/docs/reference/commands/logical_table_remove.html ja/docs/reference/commands/normalize.html ja/docs/reference/commands/plugin_unregister.html ja/docs/reference/commands/register.html ja/docs/reference/commands/request_cancel.html ja/docs/reference/commands/select.html ja/docs/reference/commands/suggest.html ja/docs/reference/commands/table_create.html ja/docs/reference/executables/grndb.html ja/docs/reference/functions/geo_distance.html ja/docs/reference/grn_expr/query_syntax.html ja/docs/reference/grn_expr/script_syntax.html ja/docs/reference/normalizers.html ja/docs/reference/regular_expression.html ja/docs/reference/scorers/scorer_tf_at_most.html ja/docs/reference/scorers/scorer_tf_idf.html ja/docs/searchindex.js ja/docs/server/package.html ja/docs/sources/reference/commands/logical_select.txt ja/docs/sources/reference/commands/select.txt ja/docs/static/jquery.js ja/docs/static/underscore.js ja/docs/tutorial/data.html ja/docs/tutorial/introduction.html ja/docs/tutorial/match_columns.html ja/docs/tutorial/network.html Modified: docs/objects.inv (+0 -0) =================================================================== (Binary files differ) Modified: docs/reference/commands/logical_select.html (+621 -45) =================================================================== --- docs/reference/commands/logical_select.html 2015-07-07 00:02:39 +0900 (1df7511) +++ docs/reference/commands/logical_select.html 2015-07-08 23:05:44 +0900 (d0b8e3d) @@ -97,74 +97,646 @@ <div class="versionadded"> <p><span class="versionmodified">New in version 5.0.5.</span></p> </div> -<p>TODO</p> +<p><tt class="docutils literal"><span class="pre">logical_select</span></tt> is a sharding version of +<a class="reference internal" href="select.html"><em>select</em></a>. <tt class="docutils literal"><span class="pre">logical_select</span></tt> searches records from multiple +tables and outputs them.</p> +<p>You need to <a class="reference internal" href="plugin_register.html"><em>plugin_register</em></a> <tt class="docutils literal"><span class="pre">sharding</span></tt> plugin because +<tt class="docutils literal"><span class="pre">logical_select</span></tt> is included in <tt class="docutils literal"><span class="pre">sharding</span></tt> plugin.</p> </div> <div class="section" id="syntax"> <h2>7.3.24.2. Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h2> -<p><tt class="docutils literal"><span class="pre">logical_select</span></tt> command has seven parameters.</p> -<p>The required parameters are <tt class="docutils literal"><span class="pre">logical_table</span></tt> and <tt class="docutils literal"><span class="pre">shard_key</span></tt>:</p> +<p><tt class="docutils literal"><span class="pre">logical_select</span></tt> has many parameters.</p> +<p>The required parameters are <tt class="docutils literal"><span class="pre">logical_table</span></tt> and <tt class="docutils literal"><span class="pre">shard_key</span></tt>. Other +parameters are optional:</p> <div class="highlight-none"><div class="highlight"><pre>logical_select logical_table shard_key - [min] - [min_border] - [max] - [max_border] - [filter] + [min=null] + [min_border="include"] + [max=null] + [max_border="include"] + [filter=null] + [sortby=null] + [output_columns="_key, *"] + [offset=0] + [limit=10] + [drilldown=null] + [drilldown_sortby=null] + [drilldown_output_columns="_key, _nsubrecs"] + [drilldown_offset=0] + [drilldown_limit=10] </pre></div> </div> +<p><tt class="docutils literal"><span class="pre">logical_select</span></tt> has the following named parameters for advanced +drilldown:</p> +<blockquote> +<div><ul class="simple"> +<li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys=null</span></tt></li> +<li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby=null</span></tt></li> +<li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns="_key,</span> <span class="pre">_nsubrecs"</span></tt></li> +<li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].offset=0</span></tt></li> +<li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].limit=10</span></tt></li> +<li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_types=NONE</span></tt></li> +<li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_target=null</span></tt></li> +</ul> +</div></blockquote> +<p>You can use one or more alphabets, digits, <tt class="docutils literal"><span class="pre">_</span></tt> and <tt class="docutils literal"><span class="pre">.</span></tt> for +<tt class="docutils literal"><span class="pre">${LABEL}</span></tt>. For example, <tt class="docutils literal"><span class="pre">parent.sub1</span></tt> is a valid <tt class="docutils literal"><span class="pre">${LABEL}</span></tt>.</p> +<p>Parameters that have the same <tt class="docutils literal"><span class="pre">${LABEL}</span></tt> are grouped.</p> +<p>For example, the following parameters specify one drilldown:</p> +<blockquote> +<div><ul class="simple"> +<li><tt class="docutils literal"><span class="pre">--drilldown[label].keys</span> <span class="pre">column</span></tt></li> +<li><tt class="docutils literal"><span class="pre">--drilldown[label].sortby</span> <span class="pre">-_nsubrecs</span></tt></li> +</ul> +</div></blockquote> +<p>The following parameters specify two drilldowns:</p> +<blockquote> +<div><ul class="simple"> +<li><tt class="docutils literal"><span class="pre">--drilldown[label1].keys</span> <span class="pre">column1</span></tt></li> +<li><tt class="docutils literal"><span class="pre">--drilldown[label1].sortby</span> <span class="pre">-_nsubrecs</span></tt></li> +<li><tt class="docutils literal"><span class="pre">--drilldown[label2].keys</span> <span class="pre">column2</span></tt></li> +<li><tt class="docutils literal"><span class="pre">--drilldown[label2].sortby</span> <span class="pre">_key</span></tt></li> +</ul> +</div></blockquote> +</div> +<div class="section" id="differences-from-select"> +<h2>7.3.24.3. Differences from <tt class="docutils literal"><span class="pre">select</span></tt><a class="headerlink" href="#differences-from-select" title="Permalink to this headline">¶</a></h2> +<p>Most of <tt class="docutils literal"><span class="pre">logical_select</span></tt> features can be used like corresponding +<a class="reference internal" href="select.html"><em>select</em></a> features. For example, parameter name is same, output +format is same and so on.</p> +<p>But there are some differences from <a class="reference internal" href="select.html"><em>select</em></a>:</p> +<blockquote> +<div><ul class="simple"> +<li><tt class="docutils literal"><span class="pre">logical_table</span></tt> and <tt class="docutils literal"><span class="pre">shard_key</span></tt> parameters are required +instead of <tt class="docutils literal"><span class="pre">table</span></tt> parameter.</li> +<li>The default <tt class="docutils literal"><span class="pre">output_columns</span></tt> value doesn't include +<tt class="docutils literal"><span class="pre">_id</span></tt>. Because <tt class="docutils literal"><span class="pre">_id</span></tt> is meaningless when multiple shards are +used. <tt class="docutils literal"><span class="pre">_id</span></tt> may be duplicated because <tt class="docutils literal"><span class="pre">_id</span></tt> is managed in each +shard not in all shards.</li> +<li><tt class="docutils literal"><span class="pre">sortby</span></tt>, <tt class="docutils literal"><span class="pre">drilldown_sortby</span></tt> and +<tt class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby</span></tt> aren't supported when multiple +shards are used. (Only one shard is used, they are supported.)</li> +<li><tt class="docutils literal"><span class="pre">match_columns</span></tt> and <tt class="docutils literal"><span class="pre">query</span></tt> aren't supported yet.</li> +<li><tt class="docutils literal"><span class="pre">cache</span></tt> isn't supported yet.</li> +<li><tt class="docutils literal"><span class="pre">match_escalation_threshold</span></tt> isn't supported yet.</li> +<li><tt class="docutils literal"><span class="pre">query_flags</span></tt> isn't supported yet.</li> +<li><tt class="docutils literal"><span class="pre">query_expander</span></tt> isn't supported yet.</li> +<li><tt class="docutils literal"><span class="pre">adjuster</span></tt> isn't supported yet.</li> +<li><tt class="docutils literal"><span class="pre">drilldown_calc_types</span></tt> and <tt class="docutils literal"><span class="pre">drilldown_calc_target</span></tt> aren't +supported yet.</li> +</ul> +</div></blockquote> </div> <div class="section" id="usage"> -<h2>7.3.24.3. Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2> +<h2>7.3.24.4. Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2> +<p>Let's learn about <tt class="docutils literal"><span class="pre">logical_select</span></tt> usage with examples. This section +shows many popular usages.</p> +<p>You need to register <tt class="docutils literal"><span class="pre">sharding</span></tt> plugin because <tt class="docutils literal"><span class="pre">logical_select</span></tt> is +included in <tt class="docutils literal"><span class="pre">sharding</span></tt> plugin.</p> +<p>Execution example:</p> +<div class="highlight-none"><div class="highlight"><pre>plugin_register sharding +# [[0, 1337566253.89858, 0.000355720520019531], true] +</pre></div> +</div> +<p>Here are a schema definition and sample data to show usage.</p> +<p>Execution example:</p> +<div class="highlight-none"><div class="highlight"><pre>table_create Entries_20150708 TABLE_HASH_KEY ShortText +# [[0, 1337566253.89858, 0.000355720520019531], true] +column_create Entries_20150708 created_at COLUMN_SCALAR Time +# [[0, 1337566253.89858, 0.000355720520019531], true] +column_create Entries_20150708 content COLUMN_SCALAR Text +# [[0, 1337566253.89858, 0.000355720520019531], true] +column_create Entries_20150708 n_likes COLUMN_SCALAR UInt32 +# [[0, 1337566253.89858, 0.000355720520019531], true] +column_create Entries_20150708 tag COLUMN_SCALAR ShortText +# [[0, 1337566253.89858, 0.000355720520019531], true] +table_create Entries_20150709 TABLE_HASH_KEY ShortText +# [[0, 1337566253.89858, 0.000355720520019531], true] +column_create Entries_20150709 created_at COLUMN_SCALAR Time +# [[0, 1337566253.89858, 0.000355720520019531], true] +column_create Entries_20150709 content COLUMN_SCALAR Text +# [[0, 1337566253.89858, 0.000355720520019531], true] +column_create Entries_20150709 n_likes COLUMN_SCALAR UInt32 +# [[0, 1337566253.89858, 0.000355720520019531], true] +column_create Entries_20150709 tag COLUMN_SCALAR ShortText +# [[0, 1337566253.89858, 0.000355720520019531], true] +table_create Terms TABLE_PAT_KEY ShortText \ + --default_tokenizer TokenBigram \ + --normalizer NormalizerAuto +# [[0, 1337566253.89858, 0.000355720520019531], true] +column_create Terms entries_key_index_20150708 \ + COLUMN_INDEX|WITH_POSITION Entries_20150708 _key +# [[0, 1337566253.89858, 0.000355720520019531], true] +column_create Terms entries_content_index_20150708 \ + COLUMN_INDEX|WITH_POSITION Entries_20150708 content +# [[0, 1337566253.89858, 0.000355720520019531], true] +column_create Terms entries_key_index_20150709 \ + COLUMN_INDEX|WITH_POSITION Entries_20150709 _key +# [[0, 1337566253.89858, 0.000355720520019531], true] +column_create Terms entries_content_index_20150709 \ + COLUMN_INDEX|WITH_POSITION Entries_20150709 content +# [[0, 1337566253.89858, 0.000355720520019531], true] +load --table Entries_20150708 +[ +{"_key": "The first post!", + "created_at": "2015/07/08 00:00:00", + "content": "Welcome! This is my first post!", + "n_likes": 5, + "tag": "Hello"}, +{"_key": "Groonga", + "created_at": "2015/07/08 01:00:00", + "content": "I started to use Groonga. It's very fast!", + "n_likes": 10, + "tag": "Groonga"}, +{"_key": "Mroonga", + "created_at": "2015/07/08 02:00:00", + "content": "I also started to use Mroonga. It's also very fast! Really fast!", + "n_likes": 15, + "tag": "Groonga"} +] +# [[0, 1337566253.89858, 0.000355720520019531], 3] +load --table Entries_20150709 +[ +{"_key": "Good-bye Senna", + "created_at": "2015/07/09 00:00:00", + "content": "I migrated all Senna system!", + "n_likes": 3, + "tag": "Senna"}, +{"_key": "Good-bye Tritonn", + "created_at": "2015/07/09 01:00:00", + "content": "I also migrated all Tritonn system!", + "n_likes": 3, + "tag": "Senna"} +] +# [[0, 1337566253.89858, 0.000355720520019531], 2] +</pre></div> +</div> +<p>There are two tables, <tt class="docutils literal"><span class="pre">Entries_20150708</span></tt> and <tt class="docutils literal"><span class="pre">Entries_20150709</span></tt>, +for blog entries.</p> +<div class="admonition note"> +<p class="first admonition-title">Note</p> +<p class="last">You need to use <tt class="docutils literal"><span class="pre">${LOGICAL_TABLE_NAME}_${YYYYMMDD}</span></tt> naming rule +for table names. In this example, <tt class="docutils literal"><span class="pre">LOGICAL_TABLE_NAME</span></tt> is +<tt class="docutils literal"><span class="pre">Entries</span></tt> and <tt class="docutils literal"><span class="pre">YYYYMMDD</span></tt> is <tt class="docutils literal"><span class="pre">20150708</span></tt> or <tt class="docutils literal"><span class="pre">20150709</span></tt>.</p> +</div> +<p>An entry has title, created time, content, the number of likes for the +entry and tag. Title is key of <tt class="docutils literal"><span class="pre">Entries_YYYYMMDD</span></tt>. Created time is +value of <tt class="docutils literal"><span class="pre">Entries_YYYYMMDD.created_at</span></tt> column. Content is value of +<tt class="docutils literal"><span class="pre">Entries_YYYYMMDD.content</span></tt> column. The number of likes is value of +<tt class="docutils literal"><span class="pre">Entries_YYYYMMDD.n_likes</span></tt> column. Tag is value of +<tt class="docutils literal"><span class="pre">Entries_YYYYMMDD.tag</span></tt> column.</p> +<p><tt class="docutils literal"><span class="pre">Entries_YYYYMMDD._key</span></tt> column and <tt class="docutils literal"><span class="pre">Entries_YYYYMMDD.content</span></tt> +column are indexed using <tt class="docutils literal"><span class="pre">TokenBigram</span></tt> tokenizer. So both +<tt class="docutils literal"><span class="pre">Entries_YYYYMMDD._key</span></tt> and <tt class="docutils literal"><span class="pre">Entries_YYYYMMDD.content</span></tt> are +fulltext search ready.</p> +<p>OK. The schema and data for examples are ready.</p> +<div class="section" id="simple-usage"> +<h3>7.3.24.4.1. Simple usage<a class="headerlink" href="#simple-usage" title="Permalink to this headline">¶</a></h3> <p>TODO</p> </div> +</div> <div class="section" id="parameters"> -<h2>7.3.24.4. Parameters<a class="headerlink" href="#parameters" title="Permalink to this headline">¶</a></h2> +<h2>7.3.24.5. Parameters<a class="headerlink" href="#parameters" title="Permalink to this headline">¶</a></h2> <p>This section describes parameters of <tt class="docutils literal"><span class="pre">logical_select</span></tt>.</p> <div class="section" id="required-parameter"> -<h3>7.3.24.4.1. Required parameter<a class="headerlink" href="#required-parameter" title="Permalink to this headline">¶</a></h3> +<h3>7.3.24.5.1. Required parameter<a class="headerlink" href="#required-parameter" title="Permalink to this headline">¶</a></h3> <p>There are required parameters, <tt class="docutils literal"><span class="pre">logical_table</span></tt> and <tt class="docutils literal"><span class="pre">shard_key</span></tt>.</p> <div class="section" id="logical-table"> -<h4>7.3.24.4.1.1. <tt class="docutils literal"><span class="pre">logical_table</span></tt><a class="headerlink" href="#logical-table" title="Permalink to this headline">¶</a></h4> -<p>Specifies logical table name. It means table name without "_YYYYMMDD" postfix. -If you use actual table such as "Logs_20150203", "Logs_20150203" and so on, logical table name is "Logs".</p> +<span id="logical-select-logical-table"></span><h4>7.3.24.5.1.1. <tt class="docutils literal"><span class="pre">logical_table</span></tt><a class="headerlink" href="#logical-table" title="Permalink to this headline">¶</a></h4> +<p>Specifies logical table name. It means table name without +<tt class="docutils literal"><span class="pre">_YYYYMMDD</span></tt> postfix. If you use actual table such as +<tt class="docutils literal"><span class="pre">Entries_20150708</span></tt>, <tt class="docutils literal"><span class="pre">Entries_20150709</span></tt> and so on, logical table +name is <tt class="docutils literal"><span class="pre">Entries</span></tt>.</p> +<p>You can show 10 records by specifying <tt class="docutils literal"><span class="pre">logical_table</span></tt> and +<tt class="docutils literal"><span class="pre">shard_key</span></tt> parameters. They are required parameters.</p> +<p>Execution example:</p> +<div class="highlight-none"><div class="highlight"><pre>logical_select --logical_table Entries --shard_key created_at +# [ +# [ +# 0, +# 1337566253.89858, +# 0.000355720520019531 +# ], +# [ +# [ +# [ +# 5 +# ], +# [ +# [ +# "_key", +# "ShortText" +# ], +# [ +# "content", +# "Text" +# ], +# [ +# "created_at", +# "Time" +# ], +# [ +# "n_likes", +# "UInt32" +# ], +# [ +# "tag", +# "ShortText" +# ] +# ], +# [ +# "The first post!", +# "Welcome! This is my first post!", +# 1436281200.0, +# 5, +# "Hello" +# ], +# [ +# "Groonga", +# "I started to use Groonga. It's very fast!", +# 1436284800.0, +# 10, +# "Groonga" +# ], +# [ +# "Mroonga", +# "I also started to use Mroonga. It's also very fast! Really fast!", +# 1436288400.0, +# 15, +# "Groonga" +# ], +# [ +# "Good-bye Senna", +# "I migrated all Senna system!", +# 1436367600.0, +# 3, +# "Senna" +# ], +# [ +# "Good-bye Tritonn", +# "I also migrated all Tritonn system!", +# 1436371200.0, +# 3, +# "Senna" +# ] +# ] +# ] +# ] +</pre></div> +</div> +<p>If nonexistent table is specified, an error is returned.</p> +<p>Execution example:</p> +<div class="highlight-none"><div class="highlight"><pre>logical_select --logical_table Nonexistent --shard_key created_at +# [ +# [ +# -22, +# 1337566253.89858, +# 0.000355720520019531, +# "[logical_select] no shard exists: logical_table: <Nonexistent>: shard_key: <created_at>", +# [ +# [ +# "Groonga::Context.set_groonga_error", +# "/home/kou/work/c/groonga.clean/lib/mrb/scripts/context.rb", +# 27 +# ] +# ] +# ] +# ] +</pre></div> +</div> </div> <div class="section" id="shard-key"> -<h4>7.3.24.4.1.2. <tt class="docutils literal"><span class="pre">shard_key</span></tt><a class="headerlink" href="#shard-key" title="Permalink to this headline">¶</a></h4> -<p>Specifies column name which is treated as shared key in each parted table.</p> +<span id="logical-select-shard-key"></span><h4>7.3.24.5.1.2. <tt class="docutils literal"><span class="pre">shard_key</span></tt><a class="headerlink" href="#shard-key" title="Permalink to this headline">¶</a></h4> +<p>Specifies column name which is treated as shared key. Shard key is a +column that stores data that is used for distributing records to +suitable shards.</p> +<p>Shard key must be <tt class="docutils literal"><span class="pre">Time</span></tt> type for now.</p> +<p>See <a class="reference internal" href="#logical-select-logical-table"><em>logical_table</em></a> how to specify <tt class="docutils literal"><span class="pre">shard_key</span></tt>.</p> </div> </div> <div class="section" id="optional-parameters"> -<h3>7.3.24.4.2. Optional parameters<a class="headerlink" href="#optional-parameters" title="Permalink to this headline">¶</a></h3> +<h3>7.3.24.5.2. Optional parameters<a class="headerlink" href="#optional-parameters" title="Permalink to this headline">¶</a></h3> <p>There are optional parameters.</p> <div class="section" id="min"> -<h4>7.3.24.4.2.1. <tt class="docutils literal"><span class="pre">min</span></tt><a class="headerlink" href="#min" title="Permalink to this headline">¶</a></h4> -<p>Specifies the min value of <tt class="docutils literal"><span class="pre">shard_key</span></tt></p> +<h4>7.3.24.5.2.1. <tt class="docutils literal"><span class="pre">min</span></tt><a class="headerlink" href="#min" title="Permalink to this headline">¶</a></h4> +<p>Specifies the minimum value of <tt class="docutils literal"><span class="pre">shard_key</span></tt> column. If shard doesn't +have any matched records, the shard isn't searched.</p> +<p>For example, <tt class="docutils literal"><span class="pre">min</span></tt> is <tt class="docutils literal"><span class="pre">"2015/07/09</span> <span class="pre">00:00:00"</span></tt>, <tt class="docutils literal"><span class="pre">Entry_20150708</span></tt> +isn't searched. Because <tt class="docutils literal"><span class="pre">Entry_20150708</span></tt> has only records for +<tt class="docutils literal"><span class="pre">""2015/07/08"</span></tt>.</p> +<p>The following example only uses <tt class="docutils literal"><span class="pre">Entry_20150709</span></tt> +table. <tt class="docutils literal"><span class="pre">Entry_20150708</span></tt> isn't used.</p> +<p>Execution example:</p> +<div class="highlight-none"><div class="highlight"><pre>logical_select \ + --logical_table Entries \ + --shard_key created_at \ + --min "2015/07/09 00:00:00" +# [ +# [ +# 0, +# 1337566253.89858, +# 0.000355720520019531 +# ], +# [ +# [ +# [ +# 2 +# ], +# [ +# [ +# "_key", +# "ShortText" +# ], +# [ +# "content", +# "Text" +# ], +# [ +# "created_at", +# "Time" +# ], +# [ +# "n_likes", +# "UInt32" +# ], +# [ +# "tag", +# "ShortText" +# ] +# ], +# [ +# "Good-bye Senna", +# "I migrated all Senna system!", +# 1436367600.0, +# 3, +# "Senna" +# ], +# [ +# "Good-bye Tritonn", +# "I also migrated all Tritonn system!", +# 1436371200.0, +# 3, +# "Senna" +# ] +# ] +# ] +# ] +</pre></div> +</div> </div> <div class="section" id="min-border"> -<h4>7.3.24.4.2.2. <tt class="docutils literal"><span class="pre">min_border</span></tt><a class="headerlink" href="#min-border" title="Permalink to this headline">¶</a></h4> -<p>Specifies whether the min value of borderline must be include or not. -Specify <tt class="docutils literal"><span class="pre">include</span></tt> or <tt class="docutils literal"><span class="pre">exclude</span></tt> as the value of this parameter.</p> +<h4>7.3.24.5.2.2. <tt class="docutils literal"><span class="pre">min_border</span></tt><a class="headerlink" href="#min-border" title="Permalink to this headline">¶</a></h4> +<p>Specifies whether the minimum value is include or not. Here is +available values.</p> +<table border="1" class="docutils"> +<colgroup> +<col width="50%" /> +<col width="50%" /> +</colgroup> +<thead valign="bottom"> +<tr class="row-odd"><th class="head">Value</th> +<th class="head">Description</th> +</tr> +</thead> +<tbody valign="top"> +<tr class="row-even"><td><tt class="docutils literal"><span class="pre">include</span></tt></td> +<td>Includes <tt class="docutils literal"><span class="pre">min</span></tt> value. This is the default.</td> +</tr> +<tr class="row-odd"><td><tt class="docutils literal"><span class="pre">exclude</span></tt></td> +<td>Doesn't include <tt class="docutils literal"><span class="pre">min</span></tt> value.</td> +</tr> +</tbody> +</table> +<p>Here is an example for <tt class="docutils literal"><span class="pre">exclude</span></tt>. The result doesn't include the +<tt class="docutils literal"><span class="pre">"Good-bye</span> <span class="pre">Senna"</span></tt> record because its <tt class="docutils literal"><span class="pre">created_at</span></tt> value is +<tt class="docutils literal"><span class="pre">"2015/07/09</span> <span class="pre">00:00:00"</span></tt>.</p> +<p>Execution example:</p> +<div class="highlight-none"><div class="highlight"><pre>logical_select \ + --logical_table Entries \ + --shard_key created_at \ + --min "2015/07/09 00:00:00" \ + --min_border "exclude" +# [ +# [ +# 0, +# 1337566253.89858, +# 0.000355720520019531 +# ], +# [ +# [ +# [ +# 1 +# ], +# [ +# [ +# "_key", +# "ShortText" +# ], +# [ +# "content", +# "Text" +# ], +# [ +# "created_at", +# "Time" +# ], +# [ +# "n_likes", +# "UInt32" +# ], +# [ +# "tag", +# "ShortText" +# ] +# ], +# [ +# "Good-bye Tritonn", +# "I also migrated all Tritonn system!", +# 1436371200.0, +# 3, +# "Senna" +# ] +# ] +# ] +# ] +</pre></div> +</div> </div> <div class="section" id="max"> -<h4>7.3.24.4.2.3. <tt class="docutils literal"><span class="pre">max</span></tt><a class="headerlink" href="#max" title="Permalink to this headline">¶</a></h4> -<p>Specifies the max value of <tt class="docutils literal"><span class="pre">shard_key</span></tt>.</p> +<h4>7.3.24.5.2.3. <tt class="docutils literal"><span class="pre">max</span></tt><a class="headerlink" href="#max" title="Permalink to this headline">¶</a></h4> +<p>Specifies the maximum value of <tt class="docutils literal"><span class="pre">shard_key</span></tt> column. If shard doesn't +have any matched records, the shard isn't searched.</p> +<p>For example, <tt class="docutils literal"><span class="pre">max</span></tt> is <tt class="docutils literal"><span class="pre">"2015/07/08</span> <span class="pre">23:59:59"</span></tt>, <tt class="docutils literal"><span class="pre">Entry_20150709</span></tt> +isn't searched. Because <tt class="docutils literal"><span class="pre">Entry_20150709</span></tt> has only records for +<tt class="docutils literal"><span class="pre">""2015/07/09"</span></tt>.</p> +<p>The following example only uses <tt class="docutils literal"><span class="pre">Entry_20150708</span></tt> +table. <tt class="docutils literal"><span class="pre">Entry_20150709</span></tt> isn't used.</p> +<p>Execution example:</p> +<div class="highlight-none"><div class="highlight"><pre>logical_select \ + --logical_table Entries \ + --shard_key created_at \ + --max "2015/07/08 23:59:59" +# [ +# [ +# 0, +# 1337566253.89858, +# 0.000355720520019531 +# ], +# [ +# [ +# [ +# 3 +# ], +# [ +# [ +# "_key", +# "ShortText" +# ], +# [ +# "content", +# "Text" +# ], +# [ +# "created_at", +# "Time" +# ], +# [ +# "n_likes", +# "UInt32" +# ], +# [ +# "tag", +# "ShortText" +# ] +# ], +# [ +# "The first post!", +# "Welcome! This is my first post!", +# 1436281200.0, +# 5, +# "Hello" +# ], +# [ +# "Groonga", +# "I started to use Groonga. It's very fast!", +# 1436284800.0, +# 10, +# "Groonga" +# ], +# [ +# "Mroonga", +# "I also started to use Mroonga. It's also very fast! Really fast!", +# 1436288400.0, +# 15, +# "Groonga" +# ] +# ] +# ] +# ] +</pre></div> +</div> </div> <div class="section" id="max-border"> -<h4>7.3.24.4.2.4. <tt class="docutils literal"><span class="pre">max_border</span></tt><a class="headerlink" href="#max-border" title="Permalink to this headline">¶</a></h4> -<p>Specifies whether the max value of borderline must be include or not. -Specify <tt class="docutils literal"><span class="pre">include</span></tt> or <tt class="docutils literal"><span class="pre">exclude</span></tt> as the value of this parameter.</p> +<h4>7.3.24.5.2.4. <tt class="docutils literal"><span class="pre">max_border</span></tt><a class="headerlink" href="#max-border" title="Permalink to this headline">¶</a></h4> +<p>Specifies whether the maximum value is include or not. Here is +available values.</p> +<table border="1" class="docutils"> +<colgroup> +<col width="50%" /> +<col width="50%" /> +</colgroup> +<thead valign="bottom"> +<tr class="row-odd"><th class="head">Value</th> +<th class="head">Description</th> +</tr> +</thead> +<tbody valign="top"> +<tr class="row-even"><td><tt class="docutils literal"><span class="pre">include</span></tt></td> +<td>Includes <tt class="docutils literal"><span class="pre">max</span></tt> value. This is the default.</td> +</tr> +<tr class="row-odd"><td><tt class="docutils literal"><span class="pre">exclude</span></tt></td> +<td>Doesn't include <tt class="docutils literal"><span class="pre">max</span></tt> value.</td> +</tr> +</tbody> +</table> +<p>Here is an example for <tt class="docutils literal"><span class="pre">exclude</span></tt>. The result doesn't include the +<tt class="docutils literal"><span class="pre">"Good-bye</span> <span class="pre">Senna"</span></tt> record because its <tt class="docutils literal"><span class="pre">created_at</span></tt> value is +<tt class="docutils literal"><span class="pre">"2015/07/09</span> <span class="pre">00:00:00"</span></tt>.</p> +<p>Execution example:</p> +<div class="highlight-none"><div class="highlight"><pre>logical_select \ + --logical_table Entries \ + --shard_key created_at \ + --max "2015/07/09 00:00:00" \ + --max_border "exclude" +# [ +# [ +# 0, +# 1337566253.89858, +# 0.000355720520019531 +# ], +# [ +# [ +# [ +# 3 +# ], +# [ +# [ +# "_key", +# "ShortText" +# ], +# [ +# "content", +# "Text" +# ], +# [ +# "created_at", +# "Time" +# ], +# [ +# "n_likes", +# "UInt32" +# ], +# [ +# "tag", +# "ShortText" +# ] +# ], +# [ +# "The first post!", +# "Welcome! This is my first post!", +# 1436281200.0, +# 5, +# "Hello" +# ], +# [ +# "Groonga", +# "I started to use Groonga. It's very fast!", +# 1436284800.0, +# 10, +# "Groonga" +# ], +# [ +# "Mroonga", +# "I also started to use Mroonga. It's also very fast! Really fast!", +# 1436288400.0, +# 15, +# "Groonga" +# ] +# ] +# ] +# ] +</pre></div> +</div> </div> <div class="section" id="filter"> -<h4>7.3.24.4.2.5. <tt class="docutils literal"><span class="pre">filter</span></tt><a class="headerlink" href="#filter" title="Permalink to this headline">¶</a></h4> +<h4>7.3.24.5.2.5. <tt class="docutils literal"><span class="pre">filter</span></tt><a class="headerlink" href="#filter" title="Permalink to this headline">¶</a></h4> </div> </div> </div> <div class="section" id="return-value"> -<h2>7.3.24.5. Return value<a class="headerlink" href="#return-value" title="Permalink to this headline">¶</a></h2> -<p>TODO: add more description for RESULTS</p> -<div class="highlight-none"><div class="highlight"><pre>[HEADER, RESULTS] -</pre></div> -</div> +<h2>7.3.24.6. Return value<a class="headerlink" href="#return-value" title="Permalink to this headline">¶</a></h2> +<p>The return value format of <tt class="docutils literal"><span class="pre">logical_select</span></tt> is compatible with +<a class="reference internal" href="select.html"><em>select</em></a>. See <a class="reference internal" href="select.html#select-return-value"><em>Return value</em></a> for details.</p> </div> </div> @@ -179,24 +751,28 @@ Specify <tt class="docutils literal"><span class="pre">include</span></tt> or <t <li><a class="reference internal" href="#">7.3.24. <tt class="docutils literal"><span class="pre">logical_select</span></tt></a><ul> <li><a class="reference internal" href="#summary">7.3.24.1. Summary</a></li> <li><a class="reference internal" href="#syntax">7.3.24.2. Syntax</a></li> -<li><a class="reference internal" href="#usage">7.3.24.3. Usage</a></li> -<li><a class="reference internal" href="#parameters">7.3.24.4. Parameters</a><ul> -<li><a class="reference internal" href="#required-parameter">7.3.24.4.1. Required parameter</a><ul> -<li><a class="reference internal" href="#logical-table">7.3.24.4.1.1. <tt class="docutils literal"><span class="pre">logical_table</span></tt></a></li> -<li><a class="reference internal" href="#shard-key">7.3.24.4.1.2. <tt class="docutils literal"><span class="pre">shard_key</span></tt></a></li> +<li><a class="reference internal" href="#differences-from-select">7.3.24.3. Differences from <tt class="docutils literal"><span class="pre">select</span></tt></a></li> +<li><a class="reference internal" href="#usage">7.3.24.4. Usage</a><ul> +<li><a class="reference internal" href="#simple-usage">7.3.24.4.1. Simple usage</a></li> +</ul> +</li> +<li><a class="reference internal" href="#parameters">7.3.24.5. Parameters</a><ul> +<li><a class="reference internal" href="#required-parameter">7.3.24.5.1. Required parameter</a><ul> +<li><a class="reference internal" href="#logical-table">7.3.24.5.1.1. <tt class="docutils literal"><span class="pre">logical_table</span></tt></a></li> +<li><a class="reference internal" href="#shard-key">7.3.24.5.1.2. <tt class="docutils literal"><span class="pre">shard_key</span></tt></a></li> </ul> </li> -<li><a class="reference internal" href="#optional-parameters">7.3.24.4.2. Optional parameters</a><ul> -<li><a class="reference internal" href="#min">7.3.24.4.2.1. <tt class="docutils literal"><span class="pre">min</span></tt></a></li> -<li><a class="reference internal" href="#min-border">7.3.24.4.2.2. <tt class="docutils literal"><span class="pre">min_border</span></tt></a></li> -<li><a class="reference internal" href="#max">7.3.24.4.2.3. <tt class="docutils literal"><span class="pre">max</span></tt></a></li> -<li><a class="reference internal" href="#max-border">7.3.24.4.2.4. <tt class="docutils literal"><span class="pre">max_border</span></tt></a></li> -<li><a class="reference internal" href="#filter">7.3.24.4.2.5. <tt class="docutils literal"><span class="pre">filter</span></tt></a></li> +<li><a class="reference internal" href="#optional-parameters">7.3.24.5.2. Optional parameters</a><ul> +<li><a class="reference internal" href="#min">7.3.24.5.2.1. <tt class="docutils literal"><span class="pre">min</span></tt></a></li> +<li><a class="reference internal" href="#min-border">7.3.24.5.2.2. <tt class="docutils literal"><span class="pre">min_border</span></tt></a></li> +<li><a class="reference internal" href="#max">7.3.24.5.2.3. <tt class="docutils literal"><span class="pre">max</span></tt></a></li> +<li><a class="reference internal" href="#max-border">7.3.24.5.2.4. <tt class="docutils literal"><span class="pre">max_border</span></tt></a></li> +<li><a class="reference internal" href="#filter">7.3.24.5.2.5. <tt class="docutils literal"><span class="pre">filter</span></tt></a></li> </ul> </li> </ul> </li> -<li><a class="reference internal" href="#return-value">7.3.24.5. Return value</a></li> +<li><a class="reference internal" href="#return-value">7.3.24.6. Return value</a></li> </ul> </li> </ul> Modified: docs/reference/commands/select.html (+194 -52) =================================================================== --- docs/reference/commands/select.html 2015-07-07 00:02:39 +0900 (512471d) +++ docs/reference/commands/select.html 2015-07-08 23:05:44 +0900 (20decb0) @@ -93,12 +93,12 @@ <p><tt class="docutils literal"><span class="pre">select</span></tt> searches records that are matched to specified conditions from a table and then outputs them.</p> <p><tt class="docutils literal"><span class="pre">select</span></tt> is the most important command in groonga. You need to -understand <tt class="docutils literal"><span class="pre">select</span></tt> to use the full power of groonga.</p> +understand <tt class="docutils literal"><span class="pre">select</span></tt> to use the full power of Groonga.</p> </div> <div class="section" id="syntax"> <h2>7.3.36.2. Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h2> <p><tt class="docutils literal"><span class="pre">select</span></tt> has many parameters. The required parameter is only -<tt class="docutils literal"><span class="pre">table</span></tt> and others are optional:</p> +<tt class="docutils literal"><span class="pre">table</span></tt>. Other parameters are optional:</p> <div class="highlight-none"><div class="highlight"><pre>select table [match_columns=null] [query=null] @@ -211,7 +211,7 @@ using <tt class="docutils literal"><span class="pre">TokenBigram</span></tt> tok <tt class="docutils literal"><span class="pre">Entries.content</span></tt> are fulltext search ready.</p> <p>OK. The schema and data for examples are ready.</p> <div class="section" id="simple-usage"> -<h3>7.3.36.3.1. Simple usage<a class="headerlink" href="#simple-usage" title="Permalink to this headline">¶</a></h3> +<span id="select-simple-usage"></span><h3>7.3.36.3.1. Simple usage<a class="headerlink" href="#simple-usage" title="Permalink to this headline">¶</a></h3> <p>Here is the most simple usage with the above schema and data. It outputs all records in <tt class="docutils literal"><span class="pre">Entries</span></tt> table.</p> <p>Execution example:</p> @@ -2356,7 +2356,7 @@ number of records is <tt class="docutils literal"><span class="pre">5</span></tt <p>The default value is <tt class="docutils literal"><span class="pre">0</span></tt>.</p> </div> <div class="section" id="limit"> -<h4>7.3.36.4.4.4. <tt class="docutils literal"><span class="pre">limit</span></tt><a class="headerlink" href="#limit" title="Permalink to this headline">¶</a></h4> +<span id="select-limit"></span><h4>7.3.36.4.4.4. <tt class="docutils literal"><span class="pre">limit</span></tt><a class="headerlink" href="#limit" title="Permalink to this headline">¶</a></h4> <p>Specifies the max number of output records. If the number of matched records is less than <tt class="docutils literal"><span class="pre">limit</span></tt>, all records are outputted.</p> <p>Here is a simple <tt class="docutils literal"><span class="pre">limit</span></tt> usage example.</p> @@ -4905,61 +4905,203 @@ the same <tt class="docutils literal"><span class="pre">"KEYWORD"</spa </div> </div> </div> -<div class="section" id="id7"> -<h2>7.3.36.5. 返値<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h2> -<p>TODO: write in English and add example.</p> -<p>以下のようなjson形式で値が返却されます。</p> -<div class="highlight-none"><div class="highlight"><pre>[[リターンコード, 処理開始時間, 処理時間], [検索結果, ドリルダウン結果]] +<div class="section" id="return-value"> +<span id="select-return-value"></span><h2>7.3.36.5. Return value<a class="headerlink" href="#return-value" title="Permalink to this headline">¶</a></h2> +<p><tt class="docutils literal"><span class="pre">select</span></tt> returns response with the following format:</p> +<div class="highlight-none"><div class="highlight"><pre>[ + HEADER, + [ + SEARCH_RESULT, + DRILLDOWN_RESULT_1, + DRILLDOWN_RESULT_2, + ..., + DRILLDOWN_RESULT_N + ] +] </pre></div> </div> -<p><tt class="docutils literal"><span class="pre">リターンコード</span></tt></p> -<blockquote> -<div>grn_rcに対応する数値が返されます。0(GRN_SUCCESS)以外の場合は、続いてエラー内容を示す -文字列が返されます。</div></blockquote> -<p><tt class="docutils literal"><span class="pre">処理開始時間</span></tt></p> -<blockquote> -<div>処理を開始した時間について、1970年1月1日0時0分0秒を起点とした秒数を小数で返します。</div></blockquote> -<p><tt class="docutils literal"><span class="pre">処理時間</span></tt></p> -<blockquote> -<div>処理にかかった秒数を返します。</div></blockquote> -<p><tt class="docutils literal"><span class="pre">検索結果</span></tt></p> -<blockquote> -<div><p>drilldown条件が実行される前の検索結果が以下のように出力されます。:</p> -<div class="highlight-none"><div class="highlight"><pre>[[ヒット数], [[カラム名1,カラム型1],..], 検索結果1,..] +<p>If <tt class="docutils literal"><span class="pre">select</span></tt> fails, error details are in <tt class="docutils literal"><span class="pre">HEADER</span></tt>.</p> +<p>See <a class="reference internal" href="../command/output_format.html"><em>Output format</em></a> for <tt class="docutils literal"><span class="pre">HEADER</span></tt>.</p> +<p>There are zero or more <tt class="docutils literal"><span class="pre">DRILLDOWN_RESULT</span></tt>. If no <tt class="docutils literal"><span class="pre">drilldown</span></tt> and +<tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt> are specified, they are omitted like the +following:</p> +<div class="highlight-none"><div class="highlight"><pre>[ + HEADER, + [ + SEARCH_RESULT + ] +] </pre></div> </div> -<p><tt class="docutils literal"><span class="pre">ヒット数</span></tt></p> -<blockquote> -<div>検索条件にヒットしたレコードの数が出力されます。 <tt class="docutils literal"><span class="pre">--limit</span></tt> オプションで出力件数を制限した場合は出力するレコード数と一致しません。 <tt class="docutils literal"><span class="pre">ヒット数</span></tt> は <tt class="docutils literal"><span class="pre">--limit</span></tt> オプションに関係なく常にヒットしたレコードの数になります。</div></blockquote> -<p><tt class="docutils literal"><span class="pre">カラム名n</span></tt></p> -<blockquote> -<div>output_columnsに指定された条件に従って、対象となるカラム名が出力されます。</div></blockquote> -<p><tt class="docutils literal"><span class="pre">カラム型n</span></tt></p> -<blockquote> -<div>output_columnsに指定された条件に従って、対象となるカラム型が出力されます。</div></blockquote> -<p><tt class="docutils literal"><span class="pre">検索結果n</span></tt></p> -<blockquote> -<div>output_columns, offset, limitによって指定された条件に従って各レコードの値が出力されます。</div></blockquote> -</div></blockquote> -<p><tt class="docutils literal"><span class="pre">drilldown結果</span></tt></p> -<blockquote> -<div><p>drilldown処理の結果が以下のように出力されます。:</p> -<div class="highlight-none"><div class="highlight"><pre>[[[件数], [[カラム名1,カラム型1],..], 検索結果1,..],..] +<p>If <tt class="docutils literal"><span class="pre">drilldown</span></tt> has two or more keys like <tt class="docutils literal"><span class="pre">--drilldown</span> <span class="pre">"_key,</span> +<span class="pre">column1,</span> <span class="pre">column2"</span></tt>, multiple <tt class="docutils literal"><span class="pre">DRILLDOWN_RESULT</span></tt> exist:</p> +<div class="highlight-none"><div class="highlight"><pre>[ + HEADER, + [ + SEARCH_RESULT, + DRILLDOWN_RESULT_FOR_KEY, + DRILLDOWN_RESULT_FOR_COLUMN1, + DRILLDOWN_RESULT_FOR_COLUMN2 + ] +] </pre></div> </div> -<p><tt class="docutils literal"><span class="pre">件数</span></tt></p> -<blockquote> -<div>drilldownに指定されたカラムの値の異なり数が出力されます。</div></blockquote> -<p><tt class="docutils literal"><span class="pre">カラム名n</span></tt></p> -<blockquote> -<div>drilldown_output_columnsに指定された条件に従って、対象となるカラム名が出力されます。</div></blockquote> -<p><tt class="docutils literal"><span class="pre">カラム型n</span></tt></p> -<blockquote> -<div>drilldown_output_columnsに指定された条件に従って、対象となるカラム型が出力されます。</div></blockquote> -<p><tt class="docutils literal"><span class="pre">ドリルダウン結果n</span></tt></p> +<p>If <tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt> is used, only one <tt class="docutils literal"><span class="pre">DRILLDOWN_RESULT</span></tt> +exist:</p> +<div class="highlight-none"><div class="highlight"><pre>[ + HEADER, + [ + SEARCH_RESULT, + DRILLDOWN_RESULT_FOR_LABELED_DRILLDOWN + ] +] +</pre></div> +</div> +<p><tt class="docutils literal"><span class="pre">DRILLDOWN_RESULT</span></tt> format is different between <tt class="docutils literal"><span class="pre">drilldown</span></tt> and +<tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt>. It's described later.</p> +<p><tt class="docutils literal"><span class="pre">SEARCH_RESULT</span></tt> is the following format:</p> +<div class="highlight-none"><div class="highlight"><pre>[ + [N_HITS], + COLUMNS, + RECORDS +] +</pre></div> +</div> +<p>See <a class="reference internal" href="#select-simple-usage"><em>Simple usage</em></a> for concrete example of the format.</p> +<p><tt class="docutils literal"><span class="pre">N_HITS</span></tt> is the number of matched records before <a class="reference internal" href="#select-limit"><em>limit</em></a> +is applied.</p> +<p><tt class="docutils literal"><span class="pre">COLUMNS</span></tt> describes about output columns specified by +<a class="reference internal" href="#select-output-columns"><em>output_columns</em></a>. It uses the following format:</p> +<div class="highlight-none"><div class="highlight"><pre>[ + [COLUMN_NAME_1, COLUMN_TYPE_1], + [COLUMN_NAME_2, COLUMN_TYPE_2], + ..., + [COLUMN_NAME_N, COLUMN_TYPE_N] +] +</pre></div> +</div> +<p><tt class="docutils literal"><span class="pre">COLUMNS</span></tt> includes one or more output column information. Each +output column information includes the followings:</p> <blockquote> -<div>drilldown_output_columns, drilldown_offset, drilldown_limitによって指定された条件に従って各レコードの値が出力されます。</div></blockquote> +<div><ul class="simple"> +<li>Column name as string</li> +<li>Column type as string or <tt class="docutils literal"><span class="pre">null</span></tt></li> +</ul> </div></blockquote> +<p>Column name is extracted from value specified as +<a class="reference internal" href="#select-output-columns"><em>output_columns</em></a>.</p> +<p>Column type is Groonga's type name or <tt class="docutils literal"><span class="pre">null</span></tt>. It doesn't describe +whether the column value is vector or scalar. You need to determine it +by whether real column value is array or not.</p> +<p>See <a class="reference internal" href="../types.html"><em>Data types</em></a> for type details.</p> +<p><tt class="docutils literal"><span class="pre">null</span></tt> is used when column value type isn't determined. For example, +function call in <a class="reference internal" href="#select-output-columns"><em>output_columns</em></a> such as +<tt class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">"snippet_html(content)"</span></tt> uses <tt class="docutils literal"><span class="pre">null</span></tt>.</p> +<p>Here is an example of <tt class="docutils literal"><span class="pre">COLUMNS</span></tt>:</p> +<div class="highlight-none"><div class="highlight"><pre>[ + ["_id", "UInt32"], + ["_key", "ShortText"], + ["n_likes", "UInt32"], +] +</pre></div> +</div> +<p><tt class="docutils literal"><span class="pre">RECORDS</span></tt> includes column values for each matched record. Included +records are selected by <a class="reference internal" href="#select-offset"><em>offset</em></a> and +<a class="reference internal" href="#select-limit"><em>limit</em></a>. It uses the following format:</p> +<div class="highlight-none"><div class="highlight"><pre>[ + [ + RECORD_1_COLUMN_1, + RECORD_1_COLUMN_2, + ..., + RECORD_1_COLUMN_N + ], + [ + RECORD_2_COLUMN_1, + RECORD_2_COLUMN_2, + ..., + RECORD_2_COLUMN_N + ], + ... + [ + RECORD_N_COLUMN_1, + RECORD_N_COLUMN_2, + ..., + RECORD_N_COLUMN_N + ] +] +</pre></div> +</div> +<p>Here is an example <tt class="docutils literal"><span class="pre">RECORDS</span></tt>:</p> +<div class="highlight-none"><div class="highlight"><pre>[ + [ + 1, + "The first post!", + 5 + ], + [ + 2, + "Groonga", + 10 + ], + [ + 3, + "Mroonga", + 15 + ] +] +</pre></div> +</div> +<p><tt class="docutils literal"><span class="pre">DRILLDOWN_RESULT</span></tt> format is different between <tt class="docutils literal"><span class="pre">drilldown</span></tt> and +<tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt>.</p> +<p><tt class="docutils literal"><span class="pre">drilldown</span></tt> uses the same format as <tt class="docutils literal"><span class="pre">SEARCH_RESULT</span></tt>:</p> +<div class="highlight-none"><div class="highlight"><pre>[ + [N_HITS], + COLUMNS, + RECORDS +] +</pre></div> +</div> +<p>And <tt class="docutils literal"><span class="pre">drilldown</span></tt> generates one or more <tt class="docutils literal"><span class="pre">DRILLDOWN_RESULT</span></tt> when +<a class="reference internal" href="#select-drilldown"><em>drilldown</em></a> has one ore more keys.</p> +<p><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt> uses the following format. Multiple +<tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt> are mapped to one object (key-value +pairs):</p> +<div class="highlight-none"><div class="highlight"><pre>{ + "LABEL_1": [ + [N_HITS], + COLUMNS, + RECORDS + ], + "LABEL_2": [ + [N_HITS], + COLUMNS, + RECORDS + ], + ..., + "LABEL_N": [ + [N_HITS], + COLUMNS, + RECORDS + ] +} +</pre></div> +</div> +<p>Each <tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt> corresponds to the following:</p> +<div class="highlight-none"><div class="highlight"><pre>"LABEL": [ + [N_HITS], + COLUMNS, + RECORDS +] +</pre></div> +</div> +<p>The following value part is the same format as <tt class="docutils literal"><span class="pre">SEARCH_RESULT</span></tt>:</p> +<div class="highlight-none"><div class="highlight"><pre>[ + [N_HITS], + COLUMNS, + RECORDS +] +</pre></div> +</div> </div> <div class="section" id="see-also"> <h2>7.3.36.6. See also<a class="headerlink" href="#see-also" title="Permalink to this headline">¶</a></h2> @@ -5047,7 +5189,7 @@ the same <tt class="docutils literal"><span class="pre">"KEYWORD"</spa </li> </ul> </li> -<li><a class="reference internal" href="#id7">7.3.36.5. 返値</a></li> +<li><a class="reference internal" href="#return-value">7.3.36.5. Return value</a></li> <li><a class="reference internal" href="#see-also">7.3.36.6. See also</a></li> </ul> </li> Modified: docs/searchindex.js (+1 -1) =================================================================== --- docs/searchindex.js 2015-07-07 00:02:39 +0900 (73aa3e1) +++ docs/searchindex.js 2015-07-08 23:05:44 +0900 (afc725a) @@ -1 +1 @@ -Search.setIndex({envversion:42,terms:{localstatedir:138,four:[136,95,3,98,150],"\u3084rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306espec\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u306a\u3069\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":153,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":16,"\u811a\u6ce8":[35,46,171,73],"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":170,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":141,your_db:28,grn_fin:5,column_cr:[56,44,86,32,28,81],"\u65e5\u672c\u4eba":179,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":153,no_such_device_or_address:175,thread_tabl:170,command_vers:[11,3,4,163,33,48,83,175,110,9,149,37,103],dewangga:78,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":64,"takas hi\u3055 \u3093\u304c\u5831\u544a":28,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":156,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":109,cancel_request_is_accepted_or_not:104,grn_plugin_win32_base_dir:41,drilldown_output_column:[157,81],asami:126,"\u697d\u3057\u3044billiard":[71,145],dump_index:78,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":153,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":114,grn_oper:[114,57,39,122,111],grn_column_name_nsubrecs_len:122,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":153,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":170,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":38,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":54,g rn_socke t_is_already_shutdown:2,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":64,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":98,grn_table_cursor_next:[64,156],here:[41,93,2,72,5,95,96,98,69,48,49,47,146,101,102,9,104,10,149,150,107,128,55,59,109,76,12,86,155,14,16,17,116,60,18,91,20,169,152,65,66,22,165,27,23,62,123,163,186,75,173,175,97,79,177,178,179,82,193,84,131,159,132,85,110,185,134,33,190,137,181,36,192,140,120,39,118],onga:33,china:[76,131],grn_enc_utf8:[64,124],ful:91,"\u4e0e\u3048":71,latitude_in_msec:152,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":28,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":135,"\u7a7a\u767d\u3084":98,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":98,match_column:[56,86,126,157,78,81],"\u540c\u4e00\u30d5\u30a1\u30a4\u30 eb\u5185 \u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":170,engi:[155,179],"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":180,"\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":28,substr:[185,152],unix:[192,81],txt:[88,85,120],unit:[76,152,32,33,173,175,85],tokenizs:[56,44],music:[45,150],until:[41,115,109,59,19,81,120],"\u30d6\u30ed\u30b0":89,grn_op_push:70,token_filt:159,relax:140,relat:[56,130,192,167,133,14,126,26,7,154,78,105,28,89,80,81,82],error_messag:136,notic:[6,123,8,98,9],"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":153,hold:[13,100],"cutter\u306b\u542b\u 307e\u30 8c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":153,"byte\u9577":[114,80,122],"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":159,"akio\u3055\u3093\u304c\u5831\u544a":156,"\u306a\u3069\u306b\u3088\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5b58\u5426\u3092\u5225\u9014\u78ba\u8a8d\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":80,flushviewoffil:78,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":125,grn_obj_reinit:80,cirit:9,digit:[109,18,150,181,85,81,66],"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":170,want:[142,91,3,92,129,98,47,49,146,101,9,105,192,167,109,76,88,14,59,18,69,168,186,175,78,79,178,179,81,181,130,185,131,132,134,154,85,90],"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":114,type1:155,type2:155,"grnslap\u306f":182,grn_filename_too_long: 2,turn:9 ,grn_read_only_file_system:2,travel:188,grn_geo_point:111,grn_input_output_error:2,enviromn:78,yum:[7,167,130,153,20],"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":80,message_pack_install_prefix:138,groonga_clone_dir:153,moritar:79,wrong:[126,7,172,18,62,78,28,81],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnull\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":84,"\u63d0\u6848\u3092\u884c\u3046":156,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":148,"virtualbox\u306fsourc":153,wing:[7,126],"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":170,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":124,vari:[41,67],"drilldown\u51e6\u7406\u306e\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":109,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":89,"\u306f\u7121\u8996 \u3055\u 308c\u307e\u3059":[64,114],"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":156,hidden:133,fin:54,easier:12,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":70,rectangl:[7,28,111,133],stop_word:[165,47,159],"installer\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068windows\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":153,dcmake_install_prefix:102,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":156,timeout:[80,19,126],debug:[91,6,98,8,9,150,78,81],"obj\u3092lock\u3057\u307e\u3059":80,last_modifi:188,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\ u308c\u3 07e\u3059\u304c":71,"akio\u3055\u3093\u304c\u63d0\u6848":156,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":170,ideograph:78,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":156,grn_table_s:[114,70],grooon:132,moritapo:45,gregex:126,lexicon_t:170,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":170,input_typ:59,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":153,"\u79d2":80,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u66f4\u65b0\u3084\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u7b49\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,ringtail:126,"\u307e\u308d\u3086\u304d":144,flush:78,libedit:[7,28,192,167,78],"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u520 6z\u79d2 \u3068\u306a\u308b\u7d4c\u5ea6":46,atv:[75,3,131],pagin:3,"\u30ab\u30e9\u30e0\u306b\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u518d\u5e30\u7684\u306b\u524a\u9664\u3055\u308c\u307e\u3059":147,confus:[85,181],resource_busi:175,accuml:126,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":11,mingw:153,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":64,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":153,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":98,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":153,"\u304a\u3070\u305f\u3055\u3093":1,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":114,master:[120,9,82],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u3092\u8d77\u70b9\u3068\u3057\u305f\u79d2\u6570\u3092\u5c0f\u6570\u3067\u8fd4\u3057 \u307e\u 3059":109,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":64,listen:[7,175,9,55,103],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[35,171],kinjir:45,"\u50242":98,"\u50241":98,grn_obj_flush_recurs:78,tree:81,second:[109,76,3,185,12,13,188,46,136,75,104,150,79,96,55,152],project:[0,142,152,153,133,105,89,81,82],"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":114,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":170,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":98,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":170,boston:188,"db_api\u306f":70,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":61,"\u3050\u308b\u3093\u304c\u6b21\u90ce":45,increment:36,incompat :[7,78,1 26,81],"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":153,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":71,"0\u306e\u79d2\u8868\u8a18":71,suenaga:78,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f\u884c\u3059\u308b":153,simplifi:[101,126],unknow:81,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"10041\u756a":98,"key_type\u306bt":114,object:[41,91,72,7,28,149,86,60,16,17,114,160,169,27,78,80,81,84,134,33,137,38],microsecond:[13,150],letter:193,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":170,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":183,"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":170,camp:188,incompatible_file_format:175,index_blog:79,"\u30ea\u30ea\u30fc\u30b9\u62 4b\u9806 \u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":153,expornenti:152,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":145,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"\u3092\u6307\u5b9a\u3059\u308b\u3068domain\u578b\u306e\u5024\u306e\u30d9\u30af\u30bf\u3092\u683c\u7d0d\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059":80,daemoinz:7,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,grnslap:[53,56,44],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u6c4e\u7528\u7684\u306a\u30da\u30fc\u30b8\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u304c":98,restaur:133,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\ u30b8\u3 0e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":11,"2byte":[2,175],grn_obj_set_element_info:42,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":94,"\u306f\u306a\u304f":1,serv:[13,153,81],source_file_nam:136,other_t:78,ff1f:78,createrepo:153,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":46,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[56,32,81,44,16],maverick:28,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":71,unexpectedli:126,etim:182,"description\u306b":145,result:[4,95,49,7,104,78,146,158,56,109,76,152,13,113,115,116,114,18,62,65,120,69,70,166,126,186,28,178,179,81,181,132,133,134,33,136,37,193,85],respons:[17,2,132,133,126,7,81,104,28,55,175],fail:[22,17,3,185,41,126,7,19,10,28,78,177,81, 66],"\u3 06f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":80,best:133,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":70,wikipedia:46,figur:93,score:[7,78,60,86],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u306bstable\u6271\u3044\u3067\u306a\u3044\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":11,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":170,extend:[79,92,81,181],shidara:28,extens:4,pat_kei:95,"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":106,grn_plugin_realloc:41,column_scalar:[92,12,96,47,48,101,110,128,109,76,152,116,115,71,60,159,45,165,23,123,163,74,186,173,97,79,181,185,131,188,33,137,140],logic:[109,143,166,7,63,23],msghdr:78,login:140,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":145,"2nd":109,"\u95a2\u6570":180,grn _table_c ursor_get_valu:64,assum:[54,104,16],summar:131,duplic:81,grn_search_optarg:[78,57],"\u306e\u307b\u304b\u306b":46,"\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059":11,"takashi\u3055\u3093":28,much:85,salamand:[126,81],res_column:170,"\u30ab\u30f3\u30de":159,worker:[9,126],"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,dave:97,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":71,grn_table_delet:[78,114],"localstatedir\u3092\u4f7f\u7528":156,spil:78,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63":1,"\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc \u30c9\u 3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,sen_index_norm:43,"\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":171,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cstable\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u306a\u3093\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3082\u8868\u793a\u3055\u308c\u305a\u305d\u306e\u307e\u307e\u8d77\u52d5\u3057\u307e\u3059":11,select_opt:152,arg_list_too_long:175,"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":1,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u5185\u90e8\u3067\u30a2\u30ed\u30b1\u30fc\u30c8\u3055\u308c":83,grn_resource_busi:2,simil:152,split:[28,78,85,152,95],big:[9,81],"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":71,documents_content_index:[116,33],"\u8907\u6570\u306e\u30b9\u30ec\u30c3 \u30c9\u 3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":170,refin:[133,126],"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u3066\u304b\u3089\u7d4c\u904e\u3057\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":83,tune:[56,109,126,44,86],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":153,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[71,145],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059":70,out_gqtp:170,users_memo:116,gzip:[7,192,195],unchang:41,bellow:85,sleepi:115,hai:70,easi:[12,133,98,55,160,178,81,103],"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":170,had:[12,120],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":89,hat:192,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb": 70,"\u30 5f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":153,koji:7,"\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":71,command_nam:[37,103],"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":170,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":153,measur:[28,133],specif:[56,69,23,86,133,109,126,7,159,155,146,192,81],"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u4f7f\u7528\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":74,filename_too_long:175,"\u30d4\u30ea\u30aa\u30c9":74,sebastian:81,underli:133,grn_obj_table_hash_kei:[64,114],right:[111,81],groogna:[7,113,109,102,185],kouhei:126,"value_type\u3092\u6307\u5b9a\u3057\u305 f\u30c6\ u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,bottom:111,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":121,"146566000x":[188,76],"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":153,ichii:28,condit:[67,56,126,7,78,39],scorer_tf_at_most:[78,12],yoku:[126,81],"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":170,grn_builtin_typ:[183,80],grn_cursor_descend:64,grn_log_path:7,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":122,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":135,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u 30fc\u30 92\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":46,nginxhttpstubstatusmodul:81,"net\u306egroonga\u30c1\u30fc\u30e0\u306eppa\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":153,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":25,"\u30ad\u30e3\u30c3\u30b7\u30e5\u5bb9\u91cf\u306f\u6709\u9650\u3067\u3059":109,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":70,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":70,suffici:41,support:[41,43,7,91,9,104,28,146,192,115,109,152,14,59,116,65,120,69,126,78,113,81,82,193,185,133,189,33,191,66],"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":68,avail:[41,56,109,43,44,120,133,96,134,126,136,91,62,155,192,78,107,66],width:[28,193,78],joseph:144,call:[41,69,76,5,86,109,33,16,7,60,126,160,146,81],inv_res_column:170,"\u3086\u304d\u3 072\u308 d":144,"\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044":1,rid_max:121,pagerank:[123,29,12],"135960000x":76,type:[42,91,72,4,12,93,95,96,49,7,146,2,9,104,78,105,111,107,54,56,109,76,44,86,155,16,60,18,181,66,122,123,170,126,74,186,173,28,29,113,179,81,152,185,132,85,134,37,39],"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":114,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306b\u304a\u3044\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,replied_us:188,"\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059":125,later:[110,23,163,98,126,48,7,186,81,28,78,193,3,181],"\u65b0\u3057\u3044ke y\u3068\ u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":114,exist:[142,3,12,98,7,101,9,104,152,13,59,62,20,65,126,75,175,97,78,79,81,84,191,85],"object\u578b\u306fv1":46,column_name1:59,column_name2:59,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":106,grn_search:[56,31,44],"_yyyymmdd":[143,23,166,63],role:[133,116],notif:[150,126],intend:[7,186,79,185,81],moero:45,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":153,grn_ptr_value_at:[39,16],intens:9,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":156,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":122,grn_ii_buffer_open:87,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":57,exce:[7,78,126],time:[56,23,104,132,133,136,170,33,126,7,155,19,62,78,28,81,185],push:[120,16],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":106,chain:186,"scri pt\u5f62 \u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[184,35,112,171,68],grn_obj_get_hook:94,netbsd:126,millisecond:[13,132,75,19,152],decid:178,thread_title_column:170,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":156,decim:[13,46,152],"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":180,downtim:195,"257662232kbyte":170,score_adjust_express:109,lru:118,exact:[83,95,109,70,66],"\u5909\u66f4\u5f8c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":25,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":180,grn_plugin_mutex_lock:41,prevent:126,"\u8ad6\u7406\u548c":70,grn_table_group_result:114,index_point:45,sign:[7,2,153],"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30 b9\u30c8 \u3092\u591a\u91cd\u306b\u884c\u3044":182,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u304c\u8fd4\u3055\u308c\u307e\u3059":11,grn_broken_pip:2,takashi:173,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":80,current:[59,3,84,93,120,188,16,17,60,9,28,118,107,66],"\u3053\u308c\u306b\u3088\u308a":153,construnct:78,boost:179,"encoding\u306e\u5024\u304c":28,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":80,modif:78,address:[132,98,7,103,78,28,175],"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067":70,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53 d6\u5f97 ":89,throughput:[28,55],"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":89,commonli:[133,181],ipa:167,pentium:170,prefer:[132,78],"\u3092\u6307\u5b9a\u3057\u307e\u3059":[42,84,183,98,114,80,170,122],mitani:81,instal:[133,89,180,153],grn_pat_del:78,"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":114,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":98,droonga:101,value2:[59,37,152],value1:[59,37,101,9,152],scope:78,neologd:85,peopl:[133,85],tanuma:81,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":170,enhanc:43,visual:[136,133,126,7,102,78,28,81],"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":64,valuen:101,pgroonga:[78,12],"windows\u7cfb":153,genki:126,improper_link:175,recycl:81,"takahiro\u3055\u3093":156,index_titl:79,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":64,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":11,chroot:153,"\u 3053\u30 6e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":170,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":180,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":170,date:[56,76,133,46,170,158],data:[72,44,94,96,7,102,28,56,109,86,155,14,17,159,59,67,23,167,126,173,78,113,81,82,130,84,133,154,138],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":122,quot:[91,3,185,134,126,59,152],cannot:[56,109,185,95,115,40,152,193,55,66],int64:[46,109,81,126],grn_plugin_charlen:41,i686:170,grn_ja_skip_same_value_put:126,"\u30e6\u30fc\u30b6\u540d":170,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":121,implemnt:195,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u77e5\u308c\u307e\u305b\u3093":125,instantli:[133,33],grn_obj_init:80,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":194,"\u30ea\u30ea\u30fc\u30b9\u3 06b\u5fc 5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u306e\u3067\u6f0f\u308c\u306a\u304f\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":153,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,didn:81,separ:[59,109,91,3,4,131,178,96,134,152,47,7,175,155,78,107,85,185],"_dataset":[65,190],operation_not_permit:175,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":80,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u6700\u65b0\u7248\u3068\u5404\u56fd\u8a9e\u7248\u306e\u5185\u5bb9\u3092\u540c\u671f\u3059\u308b\u305f\u3081\u306b":153,compil:[28,192,126,81,78],"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":114,grn_obj_path:[80,126],gtar:24,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":153,vervet:[78,14],internet:[133,160],formula:[168,76],"\u6700\u5f8c\u306e":170,million:67,"\u6700\u5f8c\u306b":71,mime:[78,55],"\u5909\u66f4\u5f8c\u306e\u30c7 \u30d5\u 30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":25,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":114,"byte":[41,109,122,36,46,183,33,16,7,114,175,126,78,28,80,39,54,81],dest_key_s:114,"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":42,grn_op_adjust:[57,70],brasil:76,geoloc:[56,189,81,44],recov:84,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":94,oper:[56,109,111,44,126,7,137,60,160,78,192,39,81],grn_logger_reopen:7,onc:[109,131,5,188,7,28,79,193,81],beijin:76,reopen:28,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093":71,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":28,"\u6 91c\u7d2 2\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":71,open:[17,193,84,150,126,7,111,62,28,78,59,163,82],grn_obj_get_element_info:42,convens:7,convent:7,return_cod:[136,150],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":71,citi:[93,76,188],groonga1:11,fullfil:142,"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":153,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":64,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":80,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":170,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":80,grn_stack_over_flow:2,set_port:170,grn_obj_get_info:42,fumiyasu:28,grn_ctx_set_output_typ:16,"\u307e\u305fgroon ga":170, column_list:[56,44,156,32,7,28,81],"\u90fd":[71,145,85],sai:[3,152],san:76,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":184,"\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":35,argument:[41,3,12,98,48,7,101,103,149,52,76,152,16,116,163,126,186,110,175,28,79,81,181,33,37],sae:[155,18],"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":28,drilldown_limit:157,uuuuuu:152,note:[41,3,98,7,146,9,104,78,149,55,167,109,110,152,13,66,69,23,168,126,173,28,81,131,132,133,140,103],"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,take:[142,27,3,104,96,137,60,62,169,37,128],"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u306 8\u306f\ u3067\u304d\u307e\u305b\u3093":61,"\u30cb\u30db\u30f3\u30b8\u30f3":179,noth:[109,98,172,9,62,149,107,179],grn1:79,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":38,grn3:79,grn2:79,buffer:[87,126,16,127,78,79,80,39],compress:[74,126,7,28,192,81,195],"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":106,homepag:170,"\u51e6\u7406\u306b\u304b\u304b\u3063\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":109,"\u30b5\u30fc\u30d0":98,max_valu:140,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":73,do_gqpt:170,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":171,"\u4ef6\u6570":109,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":170,grn_lzo_error:2,"obj\u306f":80,xml:[126,7,28,107,113,81],slow:[95,152,9,181,185],"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":16,too_many_link:175,grn_float_valu:78,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u 308c\u30 70":170,clang:[7,78,180,126,81],"dump\u30b3\u30de\u30f3\u30c9":1,grn_invalid_seek:2,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,grn_ii_buffer_clos:87,requir:[167,130,24,133,14,126,7,154,102,28,192,82],embedd:78,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":109,aptitud:180,washida:126,where:[13,2,192],"cursor\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092value\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":64,"\u7a7a\u767d":98,regexplexicon:181,"namebuf\u306e\u30b5\u30a4\u30ba":[80,122],msg_control:78,ohzeki:81,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30b3\u30ed\u30f3":74,mani:[142,3,12,129,95,9,78,192,55,109,152,86,13,120,123,126,172,28,81,181,185,131,133,33,190,140,89,66,195],"\u30ed\u30b0\u51fa\u529b":8,"\u8fd4\u5024\u306e\u30d5\u30a 9\u30fc\ u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093":127,element1:[152,86],"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":156,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u304c\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u3046\u3061":11,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":11,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":42,"object\u306b\u8907\u6570\u306ehook\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f\u9806\u4f4d\u306e\u9806\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":94,bet ter:[133 ,79,109,81,152],"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f":153,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":42,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":98,score_adjust_expression2:109,score_adjust_expression1:109,parser:[185,181],resolut:[56,158],logical_range_filt:[56,32,44,78],former:[193,178],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":98,ctrl:[98,3,175],ivh:[167,130],html_untag:[56,162,126,44],set_host:170,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":114,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,ascii:[85,185,152],hash_tag:188,binari:[56,4,133,46,126,34,7,191,102,9,136,81,55,152 ],grn_pr oc_creat:54,"fedora\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,utf8:[124,192,98],"\u90fd\u6c11":[71,145],grn_operation_not_support:2,"146710080x":188,"\u5358\u72ec\u306e\u5024":122,wiedenroth:81,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":170,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":182,grn_hook_select:94,"\u6771\u4eac\u90fd":[71,145,85],rest:[41,178],"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":170,"\u30cb\u30db\u30f3":179,"hat\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u 3092name \u306b\u66f4\u65b0\u3057\u307e\u3059":114,haystack:70,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":170,"4096byte":[67,95,78],around:[93,33],"10043\u756a":98,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":145,res1:114,bookmark_index:86,world:[46,85,75,81,126],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,intel:170,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":80,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":11,integ:[78,109,2,98,86],manag:[192,36,84,98,133,95,33,16,104,103,62,20,82,178,55,9],yyyi:[150,152],"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":1,"\u6700\u7d42\u66f4\u65b0\u6642\u523b\u306f\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u6709\u52b9\u304b\u3069\u3046\u304b\u306e\ u5224\u6 5ad\u306a\u3069\u306b\u5229\u7528\u3055\u308c\u307e\u3059":84,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":84,grn_obj_is_builtin:[28,80],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092":153,edict2grn:81,definit:[109,76,185,12,186,123,163,33,48,7,116,101,97,149,110,181,173,152],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":54,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":153,reference_column:[78,109,81],ddl:[170,81],refer:[56,133,126,78,28,81],power:[109,181],"\u3053\u306e\u72b6\u614b\u3067\u3082\u4ee5\u524d\u306f\u30de\u30c3\u30c1\u3057\u306a\u304b\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3059\u308b\u3088\u3046\u3 06b\u306 a\u308a\u307e\u3059":71,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":46,"\u30d3\u30eb\u30c9\u6642\u306etip":89,grn_get_default_command_vers:117,starttim:[3,4,83,103,9,175],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":98,ffef:85,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":145,neighbor:133,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":89,"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":153,"flags\u306b\u306f":114,match_escalation_threshold:[156,192,16],effici:[133,79,86],"\u306b\u3042\u308b":80,agaist:7,charli:188,hex:[45,152],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":11,"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[28,156],grn_proc_func:[41,54,16],sid:[28,153,81,127],"\u30ed\u30b0\u3092\u51fa\u 529b\u30 59\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,bundl:[126,7,116,78,81,120],htpasswd:[9,55],no_kei:95,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":98,categor:[109,91,47],pull:153,"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":74,"grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059":70,grn_ctx_get:[122,16],"org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":153,preconfigur:[154,130,14,142,167],reqular:132,gone:45,type_of_the_column:186,uid:153,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":42,"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":98,certain:75 ,"fedora \u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f":156,grn_id_nil:[64,114,39,16],googl:[109,185,12,123,172,29],grn_select:109,grn_ctx_open:[28,16],shimomura:7,"\u30ea\u30ea\u30fc\u30b9\u7528\u306b\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u306f\u4ee5\u4e0b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066configure\u3092\u5b9f\u884c\u3057\u307e\u3059":153,writabl:[78,81],"\u4e00\u65b9":71,logical_count:[56,32,44,78],item_dataset:[190,49],"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":70,vocabulari:3,geodet:[46,75],"debug\u3092\u8ffd\u52a0":156,nagano:81,queryexpandertsv:[22,56,44,126,7,116,10,177,30],"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":153,cpu:[132,192,170,9,195],senna:78,grn_type:[56,31,44],illustr:131,pluggabl:133,"\u521d\u671f \u5316\u 3059\u308b":16,scr:170,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":89,grn_obj_set_info:42,too_small_offset:175,tail:[175,153],kosuk:126,webclip:110,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[56,156],introduc:[78,89,9,81],candid:[132,155,179],too_many_open_fil:175,"4\u30ea\u30ea\u30fc\u30b9":78,colleagu:89,"yum\u306e\u5834\u5408":153,adjust:[126,81,86],small:[185,95,126,188,78,152,85,81,66],"flags\u306b":[114,122],"rid_max\u3092\u6307\u5b9a\u3057\u3066\u53d6\u5f97\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u5024\u3092\u5236\u9650\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":121,past:7,"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":74,pass:[76,3,84,153,185,116,181,9,104,78,28,152,113,103],grn_no_such_device_or_address:2,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":153,section:[41,53,91,143,12,87,96,98,47,49,102,9,104,146,192,128,162,167,109,76,86 ,14,59,1 23,60,18,118,62,63,181,134,66,164,120,69,50,23,122,166,137,24,126,175,189,78,79,178,179,81,82,130,185,131,188,31,32,154,138,140,89,90,51],"log_put\u306f":8,"debian\u7cfb":153,"files\u306e\u5b9f\u884c":89,delet:[56,1,44,156,32,126,7,20,28,78,80,81],"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":153,coremodul:9,contrast:[3,5,133,98,116,9,81],"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":145,hash:[152,95,126,7,78,28,66],"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":153,table_renam:113,jennif:144,sender:[132,65],tomygx:78,grn_column_renam:122,out_loc:170,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":16,social:45,action:126,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":94,via:[7,120,2,49],"\u6b21\u306bgroonga\u306etest":153,grn_logical _range_f ilter_threshold:78,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":145,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":84,"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":68,define_selector:[56,32,44],select:[17,11,111,44,56,36,86,32,126,148,7,60,173,118,104,78,77,28,39,156,81],"log\u3068\u3044\u3046\u5f62\u5f0f\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u4f5c\u3089\u308c\u307e\u3059":170,mecab:[167,130,43,153,133,14,126,7,154,78,28,192,85,81,90],morn:115,mecab_new2:7,"lucid\u304b\u3089":156,more:[41,3,144,12,95,46,98,7,101,9,72,192,55,109,152,86,13,155,16,115,116,18,62,65,66,67,165,166,123,126,172,175,78,178,81,181,96,185,186,133,33,188,140,85],yokoyama:[126,81],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\ u30b3\u3 0a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059":70,uint8:[46,156,96,126],"\u9375\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3060\u3051\u3067\u306f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u305f\u3081":153,function_nam:136,grn_ctx_get_all_t:[78,16],"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":153,nomal:[7,109,9],cach:[17,1,133,126,7,118,78,80],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":70,uint64:[46,126,81],"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":153,endpoint:[132,65],"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":11,arg3_valu:181,learn:[155,109,126],"benchmark\u304c\u52d5\u4f5c\u3057":170,prompt:[7,102,3,4],scan:[180,163,185,48,152],accept:[76,3,92,132,133,175,97,98,7,75,81,104,36,28,79,188,128,55,152],"delete\u30b3\ u30de\u3 0f3\u30c9":1,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63":28,groonga_cache_limit:126,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":170,netinet:78,"search\u3092\u884c\u3044":[64,114],"select\u30b3\u30de\u30f3\u30c9":1,"\u5b9f\u884c\u4f8b":[11,180],simpl:[27,23,96,134,60,81],isn:[96,98,7,9,146,192,109,155,16,59,18,66,69,126,172,175,78,178,179,81,130,185,33,136,85,118],referenc:[109,131,126,7,173,66],bm25:[123,12],grn_obj_get_rang:80,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":171,conditin:185,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u69cb\u9020\u4f53\u306e\u5b9f\u4f53\u3092api\u306e\u547c\u3073\u5143\u3067\u78ba\u4fdd\u3059\u308b\u306e\u306b\u5bfe\u3057\u3066":16,github:[0,74,153,126,7,78,105,28,120,81,82],m6 4:24,tok enbigram:[165,91,185,12,186,123,95,163,109,98,33,48,115,116,18,47,169,106,152,66],"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":1,open_tag1:163,grn_obj_key_int:183,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":127,sysctl:[140,168,90],trade:85,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":153,i386:[28,130,153],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":[83,98],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoutput_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,dest_kei:114,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":114,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":156,sauci:[126,81],html:[89,153],creat:[41,17,84,44,56,126,148,16,7,28,39,81,120],"\u306e\u3046\u30 61\u3044 \u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":98,grn_bulk:39,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":122,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":125,inada:126,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":153,"\u65e5":85,authent:195,achiev:23,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":153,found:[109,111,126,7,172,114,102,192,85],"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":94,with_posit:[123,115,165,3,92,12,186,71,188,96,109,33,48,74,116,181,140,79,152,163,185],procedur:[7,126],realli:[152,109,92,185],ftp:[170,153] ,"x86\u3 0c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":153,ftb:43,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":98,occurr:123,grn_column_index_upd:122,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":16,grn_user_data:[56,31,54,44],grn_table_hash_kei:[114,111],"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":80,clumn:140,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":170,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":73,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":145,"\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u540c\u6642\u306b\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":11,major:138,"7\u30ea\u30ea\u30fc\u30b9":78,n_result:114,number:[133,138],"\u5bfe\u8c61table\u3092\u6307\ u5b9a\u3 057\u307e\u3059":[64,114,80,122],"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":156,file_corrupt:175,"org\u304c\u30db\u30b9\u30c8\u3092":153,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":122,relationship:[7,13,60,158,56],"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":153,grace:78,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":153,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":156,"\u307e\u305f\u540c\u6642\u306b":170,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":94,reus:95,grn_ctx_set_match_escalation_threshold:25,arrang:3,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":148,comput:[41,152,12,123,49,7,18,140,179],toybox:13,grn_hook_entri:94,"\u95a2\u6570\u306e\u8ffd\u52a0":1,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enque ue\u3059 \u308b":135,gted:120,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":98,documenataion:136,self:170,also:[56,44,86,133,7,89,120],"keybuf\u306e\u30b5\u30a4\u30ba":114,"\u8a18\u53f7":[71,98],"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":114,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":80,lexcon:3,brooklyn:188,plan:144,"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":153,table_pat_kei:[12,96,98,48,101,106,109,152,86,116,60,159,66,47,123,163,126,186,128,181,185,33],cover:[133,33],"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":170,umemoto:28,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u578b\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":109,ext:91,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c \u3067\u 304d\u307e\u3059":125,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[114,80,122],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":159,microsoft:[78,102],"\u3057\u304b\u3057":[71,46,145],"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":145,cache_limit:[56,32,44,78],xcode:90,session:[132,175,129],"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":170,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":1,columnn:7,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":153,solut:[56,85,40],factor:[109,81],"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\ u306f\u9 0e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":71,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth":153,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":153,"\u826f\u3044\u306e\u304b":125,mainten:85,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":1,grn_table_cr:114,column1:[109,70,152,12,126,7,81],"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":70,column2:[109,70,152,12,126,7,81],"\u30bf\u30b0\u3092\u6253\u3063\u305f\u5f8c\u306bconfigure\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067":153,tetsuharu:81,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[170,98],showen:2,startup:7,grn_obj_is_selector_proc:78,see:[41,56,130,192,44,86,24,133,14,126,16,7,154,191,167,19,20,78,90,81,82],"\u306e2\u5358\u8a9e\u6271\u3044":145,sec:19,sea :[91,179 ],"list\u306bcontrib\u30bb\u30af\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\u3059\u308c\u3070apt":153,juman:167,speed:[28,172,95],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u8868\u793a":83,mutex:[41,126],"chroot\u74b0\u5883\u306e":153,javascript:[56,153,103,37,28,158,9],"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":106,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":156,bodi:126,last:[7,78,91,85,16],"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":64,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[71,145],whole:126,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":170,load:[56,44,156,126,7,78,28,113,81],rdiscount:153,"256kib":140,"\u30ed\u30b0\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u306e\u79d2\u3088\u308a\u5c0f\u3055\u3044\u5024\u304c\u5e38\u306b0\u306b\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":148,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\ u308c\u3 07e\u3059":64,"5367431640625e":4,devic:133,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":71,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":70,nonexist:[78,109,81],"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":64,searchu0000http:85,shinya:7,funa:81,func:[41,54,16],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":89,oldvalu:122,"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":74,error:[41,5,7,102,28,192,167,111,14,16,17,122,56,126,78,113,81,130,84,133,154,138,39],rep_gqpt:170,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":182,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u30 6e\u3082 \u306e\u3067\u3059":170,user_data:[41,54],"deprecated\u3060\u3063\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3068\u306a\u308a\u307e\u3059":11,needleess:7,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":16,obsolet:[78,142],n_builtin_type_nam:84,nanosecond:[136,150],x64:[102,153],grn_result_too_larg:2,shorter:[115,78],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u901a\u4fe1\u5c64\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30c4\u30fc\u30eb":182,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":180,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault":11,"org\u306edoc":153,alert:[6,98,8,9,150,81],"\u3068\u3044\u3046 \u56db\u 3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":145,grn_db_create_optarg:84,stack:126,recent:118,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":61,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":127,normali:46,person:[56,138],"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,do_gqtp:170,construct:[56,152,44,126,7,78,81],mysql:[167,109,43,12,86,133,163,14,134,33,48,154,172,193,178,130,81],"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":114,parenth:59,grn_tokenizer_error:2,input:[136,109,3,152,126,49,59,172,18,175,28,107,179],format:[41,56,43,44,32,7,107,113,81,120],"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":46,intuit:144,"\u5f15\u6570\u540d":98,"\u5b9f\u969b\u306b\u691c\ u7d22\u7 d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":71,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":98,"\u30d3\u30eb\u30c9\u7d50\u679c\u304c\u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3055\u308c\u307e\u3059":153,encount:[167,130,14,154,102,138],"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":64,sampl:[22,109,76,186,132,163,97,170,33,48,7,116,101,9,159,10,149,110,177,65,173],"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":94,port_numb:[52,103,175],"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089name\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":16,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":70,"56058502197266e":4,machin:[98,81],keyword_cont:39,"aramaki\u3055\u3093":156,"ongaeshi\u3055\u3093\u304c\u5831\u544a":156,wget:[167,130,24,14,154,192],"gqtp\u306e\u5834\u5408":98,"\u307e\u305fbuf_size\u306e \u9577\u 3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":114,grn_expr_pars:39,grn_cursor_lt:64,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":71,"1gb":78,"\u884c\u3059\u308b":153,repair:113,"\u5f15\u6570\u3068\u3057\u3066":70,pcre:[7,9],span:[163,110,33,48],"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":114,line_numb:136,submit:89,custom:[91,12,47,7,9,28,150,192,109,159,160,66,165,126,78,179,81,82,185,134,33,193,195],suit:[133,33,81],"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":153,"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,link:[109,185,131,13,7,103,78,81,152],line:[120,136,20,16,7,102,180,78,28,192,81,82],int8:[13,46,156,126,81],"10000cent":85,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306e groonga" :170,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":153,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":11,xxx_20150604:78,element2:[152,86],element3:86,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":153,xxx_20150603:78,msg_id:153,"char":[41,84,183,124,16,114,80,39,54,81,122],taro:45,musha:78,invalid:[41,109,132,124,126,7,78,28,81,66],"grn_op_and\u306f":70,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":80,lucid:[156,126],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":145,wrongli:28,ago:179,algorithm:[28,76,118],"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65 b9\u6cd5 \u306f":180,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":153,fresh:115,hello:[47,152,109,165,115,85],code:[56,5,44,136,32,126,7,153,78,89,39,81,120],partial:[78,179,70,175,172],"\u7a7a\u306e\u5834\u5408":[38,108],"\u672c\u8a9e":85,send:89,table_list:[56,44,156,32,7,28],"\u30ab\u30e9\u30e0\u540d1":109,sent:55,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":170,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":94,"\u5b9f\u884c\u306b\u306f\u76f8\u5fdc\u306e\u30b3\u30b9\u30c8\u304c\u304b\u304b\u308b\u306e\u3067\u3042\u307e\u308a\u983b\u7e41\u306b\u547c\u3070\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044":114,"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":57,tri:[188,19],"\u30ab\u30e9\u30e0\u540dn":109,"\u306e\u5834\u5408\u306f":125,"try":[188,98,19,89,85,79,195],"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u 304b\u30 89\u306e\u5909\u66f4\u70b9\u3092":153,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":156,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9\u306a\u3089\u3070groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u308a\u307e":161,video:45,odd:152,"1\u5358\u8a9e\u6271\u3044":145,tomoatsu:[7,156],obvious:13,cenos6:7,let:[56,109,76,23,45,13,86,115,3,79,85,158],ubuntu:[56,82,153,138,20],layout:153,nterm:127,thatn:109,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":54,greas:13,ctx:[41,42,70,121,84,80,94,87,16,17,25,114,111,183,64,57,39,54,119,122],autoreconf:153,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":64,menu:[109,102],"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":64,location_str:188,"200byte":33,firefox:120,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3067\u306f\u3044\u304f\u3064\u304b\u306e\u30b5\ u30d6\u3 0bf\u30b9\u30af\u304b\u3089\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059":153,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":89,"\u691c\u7d22\u6761\u4ef6\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":109,zip:[56,153,138],rid_min:121,grn_plugin_get_ruby_suffix:78,doubl:[59,109,91,3,185,95,46,134,126,7,78,28,152,81,66],upgrad:[7,81,195],next:[45,111,3,133,54,81],doubt:131,"http\u306e\u5834\u5408":98,"\u3053\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u6709\u52b9\u3067\u3059":109,comparison:[7,56],socket_is_already_connect:175,folder:102,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":70,"\u30b5\u30fc\u30d0\u3092\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308b\u5834\u5408\u3082\u3053\u306e\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5229\u7528\u3055\u308c\u307e\u3059":170,drill:188,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u 68b1\u30 55\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":156,process:[2,44,98,7,102,9,10,78,56,152,137,14,60,120,22,122,167,126,28,81,185,130,84,133,32,136,154,138,66],"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":145,high:[133,109,160,86],onlin:[56,44],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atable\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":114,"column\u306e\u5024\u304c":70,"128515259x503187188":[45,75],defalt:156,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"\u30ed\u30b0\u30a4\u30f3\u53ef\u80fd\u3067\u3042\u308b\u304b\u306e\u78ba\u8a8d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u884c\u3044\u307e\u3059":153,gcc:[167,130,24,126,7,28,192],"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059 \u308b\u 3053\u3068\u304c\u3067\u304d\u307e\u3059":153,alloc:[41,17,109,56,16,7,40,83,39,81],essenti:[154,14,9],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":156,seriou:[7,81],"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":170,element:[136,2,3,86,13,33,126,7,81],issu:89,"\u30ea\u30dd\u30b8\u30c8\u30ea\u306bgnupg\u3067\u7f72\u540d\u3092\u884c\u3046\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,allow:[3,133,33,7,154,103,65],okapi:[123,12],posted_bi:188,"centos\u306e\u5834\u5408":153,movi:45,move:[7,88,102,28],lz4:138,sen_sel_term_extract:43,naist:85,comma:[3,152,131,13,59,78],"2st":109,"\u529b":[8,141],yamaguchi:28,perfect:[123,133],mitsuo:126,hobbi:150,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u 306e4\u7 a2e\u985e\u3067\u3059":70,total:[7,67,127],"\u5de6\u4e0a":1,"\u5de6\u4e0b":1,grn_hook:[56,31,44],murakami:[78,126,81],python:[129,153,20],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":156,billiard:[71,145],lzo:[7,28,74,126,81],highlight_ful:[56,162,81,44],"\u3053\u308c\u306b\u5bfe\u3057\u3066":145,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":153,subset:46,grn_file_too_larg:2,bump:[78,126,81],meta:[7,96],"static":[28,3,81,37],grn_too_many_symbolic_link:2,"table\u306ecolumn":114,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[83,147,6,73,74,127,8,157,159,161,194,106,38,141,108],"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":156,builtin_type_nam:84,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":89,ngx_http_proxy_modul:9,"squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306 f\u4ee5\ u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":180,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":153,could:[7,13],mxcl:153,outsid:81,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":180,softwar:89,"\u5f15\u6570\u540d1":98,"\u5f15\u6570\u540d2":98,owner:[9,126],"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":153,index_messag:79,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":114,expnas:178,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":127,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":127,"\u30cb\u30db\u30f3\u30b4":179,licens:[7,43,153,81],system:[109,185,24,133,46,14,98,33,126,115,13,75,9,140,78,28,192,81,152],"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cdevelop\u3042 \u308b\u 3044\u306fdeprecated\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f":11,hash_kei:95,grn_table_get_kei:114,termin:[41,98,16,7,9,78,39,54],articles2:79,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":145,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":108,itagaki:156,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":71,grn_end_of_data:2,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":135,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":112,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":153,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":171,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9 ":145,"d b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":16,clearli:78,correspond:[109,23,155,49,172,18,37,80,179],"\u5f8c\u8ff0\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3054\u3068\u306egrntest\u306b\u3088\u308b\u52d5\u4f5c\u78ba\u8a8d\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":153,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":125,satoshi:81,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":156,source_column_nam:78,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":156,highlight_html:[56,163,162,81,44],thesauru:109,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":54,grn_obj_flush:78,oracl:[56,138],"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":135 ,segment :[7,127,81],"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":170,latin1:[7,192],grn_cursor_by_kei:64,"\u3067\u3059\u306d":125,brew:[90,20],grn_column_name_score_len:122,fact:[45,109],"\u62e1\u5f35\u5b50\u306f":170,dbm:[133,33],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[114,80,122],borderlin:[143,23,166,63],"\u4f5c\u6210\u3059\u308bdb\u306e\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u6642\u306b\u6307\u5b9a\u3057\u307e\u3059":84,bring:3,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":153,nois:[18,85],freq2:49,freq1:49,should:[41,7,102,192,167,109,152,86,14,16,59,18,20,66,175,128,178,82,130,185,36,154,138,193,39],jan:188,articles_cont:79,"\u30b3\u30e1\u30f3\u30c8\u884c":170,familiar:131,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":11,jiro:45,db1:55,db2:55,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092c ursor\u3 06e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":64,grn_column_t:122,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":11,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":98,"hat\u7cfb":153,candidate_1:132,grn_geo_cursor_next:111,candidate_2:132,"\u4e16\u754c\u6e2c\u5730\u7cfb":46,column_renam:[56,44,32,126,113,81],"\u99c4\u76ee\u306a\u4f8b":125,grn_obj_lock:80,"munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0":1,"\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059":153,"\u3066\u3057\u307e\u3044\u307e\u3059":125,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":127,encodiong:152,grn_plugin_expr_var_init:[41,81],max_command_vers:[3,4,83,103,9,175],grn_obj_user_data:119,"ueno\u3055\u3093\u304c\u5831\u544a":148,t ld:131," \u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[183,114,57],"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":71,grn_type_cr:183,zenigata:45,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":145,index_friend:45,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":54,quotat:[91,134],"\u5b58\u5728\u3057\u306a\u3044\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":156,insuffici:13,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":64,"\u305d\u308c\u305e\u308c\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5\u3068\u306a\u308b\u6761\u4ef6\u304c\u3042\u308b\u306e\u3067\u63a1\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u5341\u5206\u691c\u8 a0e\u305 7\u3066\u304f\u3060\u3055\u3044":71,grn_obj_unlock:80,grn_cache_clos:17,accident:126,spain:76,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":156,tokenkytea:7,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":170,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bstatus\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":83,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":170,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":114,ultra:45,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":61,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":54,site:[45,109,3,131,13,137,75,103,159,160,79,81],archiv:[56,192,153,138,120],"_avg":109,grn_ii_estimate_size_for_lexicon_cursor:78,"count\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u305f\u306a \u3089\u 3070":83,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":64,output_column:[7,157,126,81,86],"\u30ad\u30fc\u30ef\u30fc\u30c9":148,expans:[56,109,7,116,28,178,158],"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":80,"dist\u3067\u751f\u6210\u3057\u305ftar":153,grn_obj_get_valu:[28,80],countri:[173,103,131],php:[7,153,81,129],expand:[22,56,109,44,126,7,10,177],off:[28,85,9,81],dinam:160,"\u7d9a\u3044\u3066\u30a8\u30e9\u30fc\u5185\u5bb9\u3092\u793a\u3059":109,exampl:[164,133,89],command:[41,17,156,44,56,120,133,86,126,16,7,102,20,105,28,78,192,81,82],ecmascript:[7,109,160,126,152],cutter_check_leak:180,akira:81,value_2:[3,103],orangain:126,web:[45,109,185,155,49,18,9,37,192],uncontinu:7,end_of_data:175,geo_in_circl:[28,162,126,44,56],broken_pip:175,"185428000x":76,dest:[13,182,98],five:[136,3,97],recurs:[105,153],"\u958b\u3044\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30 4c\u591a \u3059\u304e\u3066accept\u3067\u304d\u306a\u3044\u72b6\u614b\u306e\u8ca0\u8377\u3092\u4f4e\u6e1b":156,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":127,"\u3053\u306e\u3088\u3046\u306bn":71,rep_gqtp:170,resiz:41,grn_plugin_regist:[41,148],"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":98,daylight:81,grn_cas_error:2,avoid:[56,109,40,81,126],hash_index:188,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":64,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":28,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":153,stage:81,iwai:[7,113,126],"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664":147,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":71,"id\u304c\u9023\u7d9a\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u5024\u304c\u6607\u9806\u306b\u683c\u7d0d\u3055\u308c\u305f\u914d\u5217\u3078\u306e\u30 dd\u30a4 \u30f3\u30bf\u3092values\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":80,event_queri:[155,190,65,18,49,179],virtualbox:153,merg:[7,133,120],"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":98,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":153,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":46,"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":194,"function":[41,56,43,153,44,132,133,136,180,126,16,7,9,78,81],cutter_debug:180,"\u307e\u3060\u89e3\u653e\u3055\u308c\u3066\u306a\u3044\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af\u306e\u6570\u3092\u793a\u3057\u307e\u3059":83,"\u691c\u7d22\u4f8b4":89,"\u691c\u7d22\u4f8b3":89,"\u691c\u7d22\u4f8b2":89,"\u691c\u7d22\u4f8b1":89,getenv:78,sigstop:126,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u3 06b\u305 7\u305f":156,count:[45,109,23,133,188,78],grn_table_cursor_delet:64,otherwis:[41,74,3,152,137,17,116,60,101,186,104,97,128,80,173,82],problem:[17,185,13,126,7,9,28,78,85,152],yuki:[28,81],"zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3082\u540c\u69d8\u306b\u3057\u3066grntest\u3092\u5b9f\u884c\u3057\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":153,bigram:[71,170,85,190],"int":[41,17,111,121,4,94,87,16,7,25,114,19,122,183,64,80,39,54,84],updated_at:71,jessi:[56,153,138],"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":71,againt:109,inc:[78,81],grn_obj_key_norm:114,mizuhara:78,grn_int32_value_float_valu:78,"init\u76f4\u5f8c\u306e\u72b6\u614b":16,nonexistent_command:78,varieti:45,variabl:[41,109,152,24,113,96,126,7,13,175,28,78,178,81],"edge\u306equeue\u306benqueue\u3055\u308c\u308b":135,repeat:[133,120],"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7f a4\u306e c\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":70,grn_geo:[56,31,44],"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":127,"string\u306b":70,document_version_ful:153,kanji:85,rule:[109,91,81,55],dbmss:133,"scr\u3067\u3059":170,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":145,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":98,lgpl:43,"const":[41,84,183,124,113,16,114,64,80,39,54,122],"\u6bb5\u843d\u60c5\u5831":122,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":114,spec:[7,28,126],"\u524d\u63d0\u6761\u4ef6":89,secsion:136,editrc:28,createfilemap:78,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":64,"status\u30b3\u30de\u30f3\u30c9":1,grn_cache_set_max_n_entri:17,"debian\u30d1\u 30c3\u30 b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":28,upload:153,msyql:86,unmanag:127,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":73,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":11,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u304b\u3089\u59cb\u307e\u308btable\u306e\u30ab\u30e9\u30e0id\u3092res\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u683c\u7d0d\u3057\u307e\u3059":114,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":80,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":153,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":114,zunda:28,"\u547c\u51fa\u5074\u3067\u6e96\u5099":42,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":98 ,lock_cl ear:[56,32,81,44,108],"\u7de8\u96c6\u8ddd\u96e2":1,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":122,"obj\u3092unlock\u3057\u307e\u3059":80,aki:81,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":170,"\u9759\u7684\u89e3\u6790":89,"\u3092\u8ffd\u52a0":[28,156],"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f":28,request_cancel:[56,32,81,44,36],"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":114,highli:[123,29,12],"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":98,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":157,column_remov:[56,32,81,44],kytea:[7,91,126,192],search_result:109,"\u5165\u529b\u30d5\ u30a1\u3 0a4\u30eb\u540d":170,word:[165,178,72,185,12,186,133,160,109,49,7,172,18,188,78,100,85,179,81,152],exit_failur:5,work:[133,89,153],era:133,cache_hit_r:[3,4,83,103,9,175],"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"16gb":168,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":170,geo_in_rectangl:[56,1,44,156,126,28,162],indic:[76,3,144,126,91,150],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":170,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":46,basebal:[45,79],"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":114,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":153,length:[7,41,13],"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u 3059\u30 4c":106,u0000http:85,recogn:133,"builtin_type_names\u306b\u306f":84,ahost1:181,after:[3,5,95,48,7,102,103,78,192,111,152,13,19,20,120,45,165,163,126,28,81,132,140,193,9],"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":145,lat:170,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":64,grn_is_a_directori:2,averag:[109,81],n_queri:[3,4,83,103,9,175],"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":156,opaqu:[17,175],grn_fals:80,too_large_offset:175,wgs84geopoint:[45,76,131,13,188,46,75,111,103,28],order:[7,133,126,78],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":71,offici:[28,130,167,153,116],"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":121,"3\u30ea\u30ea\u30fc\u30b9":78,grn_default_query_logger_set_path:7,flexibl:[133,160,1 16],"web \u7ba1\u7406\u753b\u9762":1,"\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059":70,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":153,grn_network_is_down:2,grn_unknown_error:2,grn_obj_column_scalar:122,them:[3,12,13,192,167,109,76,86,88,14,59,19,120,74,75,175,78,181,130,185,39,136,154,140,85],thei:[91,4,12,95,48,49,9,10,150,192,55,115,109,152,86,59,123,18,160,22,24,163,172,140,78,177,178,179,185,186,134,33,37,85],"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":61,fragment:38,comment_index:188,grn_plugins_dir:78,"break":[7,28,81,62],jinja2:153,deatil:109,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":170,"\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3 066db_ap i\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":145,grn_improper_link:2,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":89,ruby_load:[56,32,126,44],serach:18,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":180,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":25,"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":156,network:[7,45,175,55],morpholog:[133,192,85,152],"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":94,"\u30c1\u30e3\u30f3\u30af\u30 6e\u30b5 \u30a4\u30ba\u3067\u3059":127,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":11,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,standard:[59,46,3,9,175],vector_column:126,sequence_dataset:190,"\u30ad\u30e3\u30c3\u30b7\u30e5\u3057\u3066\u518d\u5229\u7528\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u4f4e\u3044\u30af\u30a8\u30ea\u306b\u5bfe\u3057\u3066\u7528\u3044\u307e\u3059":109,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":135,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u3084\u5b9f\u884c\u901f\u5ea6\u6e2c\u5b9a\u304c\u53ef\u80fd\u3067\u3059":170,regress:[78,126,81],grn_qlog_path:7,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":170,"akio\u3055\u3093\u304c \u30d1\u 30c3\u30c1\u4f5c\u6210":156,"valgrind\u3092\u7528\u3044\u3066\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u3084\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3057\u3064\u3064":180,independ:133,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[35,171],"ubuntu\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"srpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":153,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":80,"groonga_org_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":153,grn_proc_set_selector:81,john:[173,144],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3 \u30b1\u 30fc\u30b8":153,tokenfilterstem:[154,14,81],latitude_in_degreexlongitude_in_degre:152,"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":112,target:[91,48,7,102,104,192,59,109,111,86,17,116,20,66,122,163,28,80,81,84,33,137,39],provid:[142,3,4,12,95,96,98,49,7,9,55,167,76,5,14,16,116,18,181,53,172,178,179,81,82,130,131,132,133,31,154,191,195,103],shuhei:81,minut:[152,188,75,18,150,179],"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":153,grn_text_valu:39,"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":84,"select\u306e\u51fa\u529b\u306b\u4e0d\u6b63\u306a\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3055\u308c\u305f\u6642\u306bsegv\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":1,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":89,latter:[193,178],indexbuf:122, "\u5b9a\ u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":61,"\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":125,usernam:[45,102],"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":180,gronnga:172,excut:126,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":125,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":127,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":61,protocol:[167,56,130,2,4,129,133,14,98,34,7,154,191,9,170,37,81,55],"column\u306f":122,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":71,latenc:170,"\u53c2\u8003\u307e\u3067\u306b\u904e\u53bb\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3078\u306e\u30ea\ u30f3\u3 0af\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059":153,liblzo2:[154,14],keyword2:[7,163],keyword1:[7,163],grn_obj_key_with_si:114,optimum:9,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":89,awar:41,suffixsearchterm:[185,152],"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":125,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":1,languag:[133,89,191],accord:[13,76],old_release_d:153,res_tabl:170,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":145,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":114,address_is_in_us:175,howev:133,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092groonga\u306e\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u547c\u3073\u51fa\u3057\u5f62\u5f0f\u3067\u51fa\u529b\ u3057\u3 07e\u3059":159,grn_obj_check:80,grn_ptr_init:[39,16],"\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059":106,com:[109,3,153,131,13,75,103,105,120,82],"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":194,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":153,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":11,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":170,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":54,"\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059":1 53,"\u30 6e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,modifi:[168,192,103,92],"\u672c":85,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":153,macport:[56,138],snippet3:33,enginen:179,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":170,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":114,drilldown_calc_typ:81,"drilldown_output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":109,inhibit:113,grn_ctx_db:16,gnu:[56,153,138,20],zlib:138,sourceforg:[78,153,26],grn_obj_prepend:80,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,aio:126,"\u5165\u529b":[6,106,194,108],adisk:181,cond:126,conf:[78,142,9,168,140],arg2_valu:181,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u59 27\u304d \u306aid\u3067\u3059":127,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":180,grn_cach:[56,31,44],perform:[109,133,126,78,28,81],"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":25,warri:138,descend:[78,109,155],"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":156,exclam:78,gurunavi:78,"\u6771\u4eac":[71,145,85],unsupported_command_vers:175,"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":16,hana:45,hang:126,evil:152,hand:[109,186,13,133,116,9,79],"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":94,thu:[23,92,133,190,100,75,79,65,81,185],o_binari:7,contact:120,thi:[91,3,4,12,7,9,76,13,14,16,17,18,20,23,24,186,28,31,32,33,85,41,46,48,49,51,55,167,192,59,60,62,63,66,53,69,50,74,75,78,79,80,81,82,84,154,89,90,92,96,98,101,102,103,104,107,109,86,116,118,122,123,163,126,128,130,131,132,133,134,136,137,138,140,143,144,149,146,150,152,162,164,47,166,168,175,97,177,178, 179,181, 185,187,188,189,190],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":153,"_score":[3,12,49,7,28,109,76,152,86,155,71,18,61,45,122,123,126,75,78,79,179,188,116],no_such_devic:175,"table_list\u306f":106,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":145,grn_default_logger_set_path:7,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":89,"\u8ad6\u7406\u7a4d":70,grn_ctx_per_db:[28,16],"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":114,arai:78,"\u306ebase_version\u306e\u66f4\u65b0":153,scan_build:180,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":106,grn_op_but:70,night:[115,92],grn_column_name_id_len:122,grn_plugin_command_cr:[41,81]," \u30bd\u 30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":183,normallexicon:193,grn_default_logger_get_rotate_threshold_s:78,"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":194,tokenbigramsplitsymbolalphadigit:[169,116,18],grn_obj_renam:80,tasuku:[78,43],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":145,overcom:23,grn_text_len:39,grn_pvector:[39,16],shift_ji:[192,85],grn_inappropriate_i_o_control_oper:2,repositori:[89,174,153],post:[109,111,153,126,7,78,81],"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":170,obj:[42,80,84,94,127,57,39,54,119,122],comment2:79,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":182,zxvf:153,"\u3068\u306a\u308a":71,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":125,"float":[7,78,109,76,136],bound:81,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4 e00\u306 e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":145,grn_ctx:[17,122,44,56,31,7,19],"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":89,"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":16,coverag:180,accordingli:9,wai:[0,3,4,131,86,133,160,126,7,116,9,188,89,79,65,81,92],"hiroshi\u3055\u3093":156,conbin:[109,160],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":35,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":122,event_dataset:[65,190],"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":153,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":71,"true":[ 1,147,3, 92,12,6,46,165,48,137,47,146,101,104,10,149,110,128,108,115,109,76,152,86,13,194,59,116,60,157,63,144,96,66,22,45,69,50,23,123,163,73,126,171,74,186,75,173,97,79,177,81,181,185,131,188,33,35,8,193],"\u4e00\u822c\u7684\u306b\u306f":80,maximum:[67,109,23,152,12,13,36,97,175,168,3],inaccur:7,creteria:3,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":1,emit:7,mte:43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[83,147,6,73,74,127,8,157,159,161,194,106,38,141,108],fedoraproject:130,score1:70,score2:70,resource_deadlock_avoid:175,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":170,"\u8a9e":[127,85],"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":98,"32byte":78,test:[167,130,3,180,153,13,188,14,170,7,154,102,9,138,78,79,85,81,103],"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u3 08b":156 ,memos_tag:101,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":74,scorer:[56,157,44,78],outdat:81,tajima:7,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":16,concept:81,masaharu:[7,113,126],"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":125,consum:81,"s3ki\u3055\u3093":156,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":125,"db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,hubeni:76,value_typ:114,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":170,graph:133,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":6,takiuchi:126,grn_default_query_logger_set_rotate_threshold_s:78,"\u30c7\u30d 5\u30a9\ u30eb\u30c8\u306fgqtp":98,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":70,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":42,octob:81,"dump\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u5f8c\u304b\u3089\u8aad\u307f\u8fbc\u3081\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u51fa\u529b\u3057\u307e\u3059":159,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ab\u30e9\u30e0\u540d\u306f":74,administr:[7,56,81],"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":80,grn_obj_unlink:[80,16],"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":153,"4gbyte":67,upper:[28,3,81,66],version:[43,143,4,98,7,101,102,9,104,10,149,78,108,11,152,153,137,14,16,123,117,62,63,181,22,50,23,122,166,24,170,126,83,76,28,128,177,81,185,84,159,187,36,154,193,85,195],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u 30f3\u30 6e\u6307\u5b9a\u65b9\u6cd5\u306fgroonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3068\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059":11,akihabara:75,"groonga\u3084mysql\u306erpm":153,cost:[115,85],admin_html:[28,98],"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":119,tables_buff:16,appear:[109,91,3,178,12,133,33,2,152,85,81,185],"\u7def\u5ea6\u306f":46,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063":125,nakamura:78,"source\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5fc5\u8981\u306a\u3082\u306e\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4 ee5\u4e0 b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,gener:89,satisfi:[59,78,126],minagawa:[126,81],"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":170,redmin:81,table_hash_kei:[109,76,152,12,86,101,137,115,116,173,110,159,97,149,106,193,66],trial:133,"\u305d\u306e\u969b":153,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":98,behav:[132,76],"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":11,"\u5358\u7d14\u306a\u8a08\u7b97\u5f0f\u3067\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u305f\u3081\u9ad8\u901f\u3067\u3059\u304c":171,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u95a2\u3059\u308b\u4e0b\u8a18\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":64,regardless:78,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":125,"\u691c\u7d22\u7d50\u 679c":10 9,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":180,output_typ:[37,4],freq0:49,mobil:133,"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,httpd:[53,17,130,167,153,44,56,14,126,7,154,104,78,28,113,81],grn_dat:28,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":80,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[89,174],key_typ:114,furigana:155,"grntest\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306fgroonga\u306e\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf\u3068grntest\u306e\u30bd\u30fc\u30b9\u304c\u5fc5\u8981\u3067\u3059":153,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":71,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":180,"_sum":109,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c 8\u30eb" :153,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":80,prepar:[158,56,9,48,33],grn_table_sort_kei:114,cat:153,grn_illegal_byte_sequ:2,can:[2,4,5,7,91,9,10,76,12,14,16,17,18,19,20,22,23,186,28,31,33,36,37,85,41,93,47,48,49,167,192,59,60,62,66,69,74,78,81,82,84,39,154,90,0,95,96,98,101,102,104,107,109,110,86,178,115,116,120,123,163,126,128,130,133,134,136,140,146,150,152,155,159,160,162,165,172,118,97,177,113,179,181,185,191,193],clearlock:[7,56,32,81,44],"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":28,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":114,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,topic:89,abort:81,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":98,occur:[74,111,92,155,136,126,16,7,60,140,78,178,81],grn_between_too_many_index_match_ratio:81,multipl:[17,109,91,23,104,56,132,133 ,96,86,1 34,126,7,116,101,173,47,78,163,81,185],mpaa:97,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,uptim:[3,4,83,103,9,175],write:[109,143,185,188,98,100,137,181,20,77,79,192,113,81,152],grn_table_select:89,"\u6a19\u6e96\u5165\u529b":[83,147,73,74,127,157,159,161,38],flanc:76,grn_cursor_ascend:64,product:9,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":127,southern:7,uint:7,"\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059":70,"rb\u3092\u8ffd\u52a0":156,grn_too_many_open_files_in_system:2,favorit:120,grn_plugin_log:41,grn_operation_would_block:2,"\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":127,approv:81,increas:[109,91,86,123,133,76,27,140,146,78,169,85,181],tagger:133,still:[88,126,60,104, 81,120], ieee:46,dynam:[113,133,3,9],window:[56,153,138],"\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066":70,"\u8a9e\u306e":85,non:[136,109,185,126,7,62,78,85,152],loaded_valu:69,recal:[133,85,160],rake:153,col2:80,col3:80,col1:80,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":114,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":42,half:193,alisa:116,now:[56,69,167,44,86,113,74,20,146,78,192,162,81,120],discuss:[0,26],nor:109,introduct:[89,15],drop:[7,28,126,81,78],u0000ful:85,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":106,"\uff4d\uff59\uff53\uff51\uff4c":[163,48],januari:[132,152],grn_encod:[56,31,44],domain:[41,88,96,98,7,60,78,106,80,39,81],replai:9,"\u52d5\u4f5c\u78ba\u8a8d\u 304c\u5b 8c\u4e86\u3057":153,"takahiro\u3055\u3093\u304c\u5831\u544a":156,significantli:133,year:[188,97,152,150],grn_socket_is_not_connect:2,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":153,shown:[3,152],"\u534a\u5f84\u304b\u3089\u306e\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u305f\u3081\u306b\u5730\u5f62\u3092\u3069\u306e\u3088\u3046\u306b\u8fd1\u4f3c\u3059\u308b\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":171,space:[41,109,91,3,185,86,133,134,126,49,59,78,28,85,181],acccess:142,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":170,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":153,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":16,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":122,grn_db_ke i:113,ca re:[109,23,185,123,96,179,120],"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":153,couldn:[7,78],arnaud:28,"175904000x8464000":76,british:92,grn_ctx_get_match_escalation_threshold:25,directli:[188,152],with_check:[134,81],yourself:138,column_n:186,size:[41,95,96,98,7,102,9,28,149,167,14,66,67,122,183,126,127,78,81,130,36,33,154,138,140,39],silent:82,bookmark:[159,86],"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":153,friend:[45,89],column_3:186,column_2:186,column_1:186,kenichi:[28,156],"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":11,"\u4e8c":179,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":46,"\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059":70,jacob16bit:78,"\u53d6\u5 f97\u306 7\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":80,than:[67,109,76,86,133,96,160,98,33,126,155,78,28,81,66],n_keyword:39,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":145,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u5dee\u5206\u3092":170,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":54,browser:[37,192,103,120],analysi:[133,192,152],grn_column_trunc:[122,81],grn_obj_compress_lzo:122,with_weight:[74,96,81,86],"txt\u306e\u5185\u5bb9":153,recover:[84,62],"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":80,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":106,"\u3059\u308b\u3068":180,begin:[182,85,181],"6813819x139":[13,75],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f\u63a5\u7d9a\u5148\u306e\u30db\u3 0b9\u30c 8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":98,price:13,renam:[3,95,126,7,60,28],"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":28,"\u3068\u308a\u3068\u3093":[185,152],"6909211x139":75,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":125,gobject:78,host_name_or_ip_address:[103,175],"groonga\u30d7\u30ed\u30bb\u30b9\u5185\u306e\u6307\u5b9a\u3057\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":127,"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u3053\u306e\u3068\u304d":145,concurr:150,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":89,"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":114,pakcag:167,onli:[41,93,142,2,3,144,5,95,98,4 8,7,91,1 02,9,104,146,152,107,79,55,59,109,110,12,137,13,155,14,17,116,62,181,66,159,167,123,163,115,186,75,173,118,97,78,29,178,81,82,130,193,185,128,133,33,154,138,37,120,85],"\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u4e00\u89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":71,"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":70,"\u3050\u308b\u3093\u304c":[185,152],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":156,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":6,overwritten:75,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"128mb":7,allow_pragma:109,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":11,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":171,error_loc: 136,"\u3 084red":153,"configure\u306e":28,sport:45,"\u304c\u5fc5\u8981\u3067\u3059":153,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":61,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":1,n_like:[136,140,109,185,152],"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":127,between:[56,109,44,98,126,7,60,28,80,162,65,81,66],"import":[91,12,100,7,9,192,55,109,153,86,16,17,66,123,126,28,29,178,185,133,32,85],"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u5f8c\u306b\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u884c\u3044\u307e\u3059":153,pthread_:126,"groonga\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3057\u305f\u7d50\u679c\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306b\u9650\u308a":71,"db\u306e\u5185\u5bb9\u306e\u6700\u 7d42\u66 f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":84,instroduc:126,nearbi:133,"\u305f\u3068\u3048\u3070":145,tutori:[7,41,81,56],grn_encoding_pars:124,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":153,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":153,grn_too_many_link:2,exploit:133,"debian\u7cfb\u3082\u3057\u304f\u306fr":153,rebuild:78,invers:[123,81,12],"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[42,80],"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":182,emphas:110,rubi:[69,43,153,12,86,133,163,129,48,7,146,160,149,78,181,81,82],"\u30d3\u30eb\u30c9\u306b\u6210\u529f\u3059\u308b\u3068":153,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":98,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":80,"edge\u306fctx\u3092\u542b\ u3080":1 35,"\u307e\u305f\u306fctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":16,"\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc":1,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":16,grn_resource_temporarily_unavail:2,"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":74,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":16,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":74,develop:[133,89],etc:[142,3,153,13,168,7,154,9,140,89,178,55],media:81,epoch:[13,188],document:[133,89,153],do_loc:170,finish:[150,104,5],someon:188,"\u30d0\u30c3\u30d5\u30a1\u306e\u4 f7f\u752 8\u91cf\u3067\u3059":127,eito:126,repoforg:[7,130],theater:92,grn_permission_deni:2,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":114,appveyor:81,key_nam:109,"_post":153,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":114,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":156,grn_column_name_scor:122,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":98,isssu:126,mmap:[56,40,126],"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":28,desktop:102,"\u30ad\u30fc":98,grn_plugin_proc_get_var:[41,81],real:[133,46,33,140],swig:43,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":170,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":98,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u51fa\u529b\u4ef6\u6570\u3092\u5236\u9650\u3057\u305f\u5834\u5408\u306f\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u6570\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093":109,invalid_argu:175,benefit:142,grnw rap:3,ca scad:[126,81],output:89,unsplit:[109,70],"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":114,grn_ii_buff:87,"\u51e6\u7406\u6642\u9593":109,logical_filt:143,"146249000x":188,ff9e:193,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[147,6,73,8,157,194,108],name2:152,"\u30d9\u30af\u30bf\u306e\u5024\u3092":156,grn_no_such_file_or_directori:2,usage_default_and_custom_scor:12,unicod:[78,193],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":170,grn_bad_file_descriptor:2,src:[13,154,153],central:188,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":98,degre:[13,28,75,152,86],backup:[84,159],processor:[167,133,130,14,154],unregist:[22,177],"\u53f3\u4e0b":1,"\u53f3\u4e0a":1,"\u305d\u306e\u305f\u3081":[71,145,170,159,153],"\u56fa \u5b9a\u 9577\u30ab\u30e9\u30e0\u306b\u30ab\u30e9\u30e0\u9577\u3088\u308a\u77ed\u3044\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u30b4\u30df\u304c\u6b8b\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":156,your:[133,89],"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":182,log:[56,153,138],area:133,aren:[93,109,185,95,33,7,9,140,78,81,55,66],start:[41,4,7,102,150,55,109,76,152,115,60,120,23,126,172,28,178,179,81,185,132,136,37,85],lot:126,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":170,submiss:[155,18,179,49],"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":171,ealier:7,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c":109,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u30921\u884c\u306b1\u3064\u305a\u3064\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":170," 2\u884c\ u76ee":170,grn_not_socket:2,"default":[133,138,20],"\u6a19\u6e96\u5165":[8,141],"\u3068\u5171\u306b":122,invalid_seek:175,multibyt:28,pseudo:[56,72,122,44,126,7,81],"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":112,decreas:[78,85],value_1:[3,103],prepend:[152,9,185],valid:[109,3,185,13,95,126,49,7,28,81,152],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":94,grn_obj_add_hook:94,you:[2,3,4,5,7,91,9,10,76,12,88,14,16,17,19,20,22,23,186,28,29,32,33,36,37,85,41,93,13,46,47,48,49,55,167,192,59,60,62,63,65,66,45,69,74,75,78,79,81,82,84,39,154,89,90,0,92,129,95,96,98,26,101,102,103,104,105,107,109,110,86,113,116,118,120,122,123,163,126,128,130,131,132,133,134,136,137,138,140,142,143,144,146,149,152,155,159,160,162,164,165,166,168,173,175,97,177,178,179,181,185,188 ,190,191 ,193],string2:112,string1:112,poor:178,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":64,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":80,grn_object_corrupt:2,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":64,reduc:[142,92,133,126,7,18,95,78,55,181],"n_builtin_type_names\u306b\u306f":84,naoya:[78,126,81],"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":127,"\u3092\u683c\u7d0d\u3057\u307e\u3059":122,drilldown_offset:157,month:[150,78,188,152,45],"launchpad\u306b\u767b\u9332\u3057\u305fkeyid":153,"4byte":175,articl:79,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":74,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":170,zlib_error:175,mechan:[7,9 ,55],"de velop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":11,veri:[59,109,185,12,45,133,163,33,48,7,95,136,181,179,55,152],"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":122,patsuffix:144,atsushi:[78,81],query_flag:7,masafumi:[126,81],"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":70,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":127,"\u547c\u51fa\u5074\u3067\u306ftype\u306b\u5fdc\u3058\u3066\u5341\u5206\u306a\u30b5\u30a4\u30ba\u306e\u30d0\u30c3\u30d5\u30a1\u3092\u78ba\u4fdd\u3057\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":42,groonga_dir:153,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":145,"benchmark\u7528\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u5206\u3067\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u65e2\u5b58\u306e\u3082\u306e\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3082\u306 7\u304d\ u307e\u3059":170,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":153,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":114,learner:[53,56,81,44,190],"\u95a2\u6570\u306f":[35,112,70,171,68],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":127,naoina:[7,126],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":170,too_many_symbolic_link:175,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":182,snippet1:33,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":64,snippet2:33,cve:81,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":94,amount:7,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4 \u56f2\u 306b\u542b\u307f\u307e\u305b\u3093":64,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":180,score_1:132,score_2:132,hoge:[98,112],famili:[91,152],"1024r":153,"\u305d\u306e\u5834\u5408\u306b\u306f\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u3054\u3068\u3084\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u3054\u3068\u306a\u3069":153,"\u30c8\u30e2\u3061\u3083\u3093":45,"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":80,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":153,almost:[28,109,140,168,129],bash:[78,192],"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":145,fulltext:[167,93,109,91,185,116,95,163,14,98,31,48,33,154,152,79,193,130,142,66],"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":1,groonga_vers:28,score_n:132,cutter_dir:153,histori:28,nine: 3,"\u8ff d\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,user_input:152,"grn_rc\u306b\u5bfe\u5fdc\u3059\u308b\u6570\u5024\u304c\u8fd4\u3055\u308c\u307e\u3059":109,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":84,grn_db_int:80,phrase:7,string:[41,56,70,80,86,36,124,113,126,16,7,78,136,28,59,39,54,81],"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":119,anoth:[109,133,7,39,78,178],spreadsheet:178,snippet:[7,43,33,126],grn_expr_syntax_escap:39,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":153,"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":122,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":153,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e00\u884c\u305a\u3064eof\u306b\u9054\u3059\u308b\u307e\u3067\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u8aad\u307f\u53d6\u308a":98,unlink:39,allow_column:[109,185],assi gn:126,g rn_table_group:114,egg:79,narwhal:28,logrot:[7,81],akinori:78,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":153,help:[88,138,120],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":156,grn_proc_funct:41,soon:[93,33,55],"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,paramet:[41,42,44,94,7,102,28,57,54,56,111,117,16,17,114,19,25,119,121,122,183,124,126,64,78,80,113,81,84,36,39],"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":156,systemd:[7,78],"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":153,"\u5024\u306e\u7bc4\u56f2\u306f1":61,shimada:7,comments_cont:79,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":71,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u516 8\u306b\ u4e00\u81f4\u3059\u308b":70,"\u7279\u6b8a\u547d\u4ee4\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4efb\u610f\u306e\u5834\u6240\u306b\u66f8\u304d\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":170,range_error:175,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":64,sentens:78,"\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u3067\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059":109,"groonga_org_path\u306bgroonga":153,iff:3,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":153,fulli:[7,9],yito:[7,126],heavi:[109,129],grn_column_nam:122,"\u30b9\u30ec\u30c3\u30c9\u6570":170,"\u30d5\u30a1\u30a4\u30eb":153,todo:[42,143,94,87,57,54,109,111,86,117,16,114,63,25,162,119,50,121,122,166,183,124,151,64,77,80,84,139,134,190,136,58,39],event:55,"\u3080\u308b\u3093\u304c":[185,152],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u305 9":153,p roxy_pass:9,publish:[153,81],"\u691c\u7d22\u5bfe\u8c61\u306e":71,trusti:[14,153,81],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":74,"shutdown\u306f":141,"1\u30ea\u30ea\u30fc\u30b9":78,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3084command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bgroonga\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u305f\u969b\u306b\u306f":11,pub:[130,153],asc:153,reason:[109,152,131,168,142,7,62,181,85,179,55,66],base:[142,91,12,48,49,7,9,104,192,167,109,111,152,14,18,65,120,123,163,126,187,179,81,130,185,132,133,33,154,188,37,195,85,103],grn_ctx_fin:[7,16],put:[185,123,140,78,37,181,81,120],"groonga\u53ca\u3073groonga":170,rect:[7,76,171],basi:3,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_port\u304c\u512a\u5148\u3055\u308c\u307e\u3059":170, due:[133 ,33],interact:[3,175],"\u4fee\u6b63":78,"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":11,placehold:126,miss:[126,7,78,28,178,81],"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":114,conditional_probability_threshold:[28,155],station:[93,75,188],zeromq:192,schema:[12,48,101,149,109,76,152,115,116,18,159,23,123,163,186,110,97,79,181,185,33,190,173,140],"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":156,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":145,"max\u3068common":64,grep:[154,130,14,167],jqueri:81,"\u4efb\u610f\u306edb\u540d":170,str:39,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":80,"windows\u5411\u3 051":153 ,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"null":[41,91,48,7,106,54,109,111,16,17,66,69,70,163,126,110,118,28,81,33,137,39],"table1\u3068table2\u304b\u3089\u91cd\u8907\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u3044\u305f\u7d50\u679c\u3092\u305d\u308c\u305e\u308cres1":114,option:[136,130,167,84,20,24,96,14,126,7,154,118,28,78,192,113,81,90],"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,lib:[22,142,156,126,9,62,10,177],"2\u306e\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3063\u305f\u969b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3057\u305f":153,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":109,elapsed_tim:[136,150],"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":171,"\u74b0\u5883\u5909\u6570cutter_d ebug\u30 92yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":180,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":11,grn_snip:[7,81],tokenbigramsplitsymbol:169,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":180,grn_proc_get_typ:81,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":114,clear:[122,153,7,137,28,80,81],grn_too_many_open_fil:2,clean:[78,180,153],newvalu:122,weight_in_weight_vector:86,latest:[89,26],grn_ctx_t:2,pretti:81,"\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059":153,wanab:126,yml:82,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30 c9\u306e \u4ed5\u69d8\u306fcommand":11,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":156,grn_connection_refus:2,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":180,"\u3082\u3057\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u4e2d\u8eab\u306b\u95a2\u308f\u3089\u305a\u52d5\u4f5c\u3092\u7d9a\u3051\u3066\u3057\u307e\u3044":170,grn_get_default_encod:124,grn_obj_compress_zlib:122,remot:[56,98,175,158],"\u68ee\u7530":45,"\u82b1\u5b50":45,grn_hook_get:94,doc_bodi:92,"\u306b\u3066\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059":153,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":109,grn_obj_is_lock:80,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":71, close:[5 9,95,163],"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":74,grn_table_at:[156,114,80,113],"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":170,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":74,isob:126,numer:[56,152,185,158,78],no_locks_avail:175,both:[3,95,102,72,55,167,109,152,86,14,115,123,74,75,175,78,179,181,130,185,188,33,136,154,138,133],grn_range_error:2,geopoint:76,"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[6,98],condition2:152,condition1:152,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u6642\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u3088\u308a\u89aa\u5207\u306b\u3057\u305f":156,jeff:144,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u95 77\u3092 \u8fd4\u3057\u307e\u3059":114,"000x":120,too_small_limit:175,header:[7,24,126,81,78],"\u623b\u308a\u5024\u3067\u3042\u308b":121,linux:[56,153,138,20],tokenbigramignoreblanksplitsymbol:169,"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":170,stamp:[150,18,179,49],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":70,"null\u306a\u3089temporari":84,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":122,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":108,"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":108,grn_table_sort_desc:114,combind:185,"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[35,171],grn_table_cursor_get_kei:64,coordin:[13,76],unpatch:43,look:2,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\ u3067\u3 042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":171,"while":[115,91,133,126,7,137,60],"\u691c\u7d22":[7,56,109,156,21],"\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b":98,grn_zlib_error:2,grn_column_name_value_len:122,loop:[7,81],pack:138,malloc:81,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":170,readi:[109,152,7,181,20,192,185],readm:[126,153],fedora:[56,153,138,20],belong:[46,72,131],"\u51e6\u7406\u958b\u59cb\u6642\u9593":109,grand:188,octal:152,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306e\u89e3\u6d88\u3092\u884c\u3044\u307e\u3059":80,src_kei:114,imagin:[109,131],optim:81,grn_set_default_match_escalation_threshold:25,temporari:[7,56,76,98,44],user:[46,48,49,7,102,9,104,150,192,55,109,152,116,60,18,96,45,23,170,126,172,173,97,78,128,179,81,185,186,132,36,33,136,14 0,89],"t akuto\u3055\u3093\u304c\u5831\u544a":156,bob:[109,185,188,116,60,9,97,128,55],"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":54,older:[78,188],input_output_error:175,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":114,"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":114,nise_nab:81,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":71,"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"56880000x":76,"\u5408\u308f\u305b\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044":153,nginx:[167,130,14,126,7,154,78,81],"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":114,"\u3084\u308a \u3068\u 308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":125,address_is_not_avail:175,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":127,grn_table_sort:114,signal:81,resolv:[12,86,123,7,28,29,38],elaps:[4,132,46,136,150,28,152],"32bit":[78,46,126],"\u304c\u306a\u3044\u5834\u5408":153,popular:[78,109,98,86],"\u30c7\u30d5\u30a9\u30eb\u30c8":70,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":114,creation:[28,3,126],some:[91,5,46,26,7,39,104,150,192,167,12,86,116,19,181,162,120,67,165,23,126,78,81,152,185,133,190,136,191,36,140,66,85],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":38,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":170,"\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a \u3057\u 307e\u3059":[6,8],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,slash:152,entry_bodi:74,run:[89,180,153,120],stem:[154,165,14,81],step:[3,13,49,102,181,192,120],"\u3082\u3057test":170,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u305d\u3053\u3067":71,grn_no_memory_avail:2,idf:[123,81,12],"index_cursor\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u6307\u5b9a\u3057\u305ftable_cursor\u306e\u73fe\u5728\u306e\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u8fd4\u3057\u307e\u3059":121,block:[13,152,9,126,66],libzmq:[154,14],grn_no_space_left_on_devic:2,"93933868408203e":4,grn_expr_append_obj:[70,39],within:[188,75,18,179],ensur:18,grn_obj_key_uint:183,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":153,"\u3053\ u306e\u5 834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":71,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":170,askmonti:81,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":114,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":145,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0":28,pangolin:[7,14],tokenbigramignoreblanksplitalpha:85,hereaft:133,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":153,newer:[78,81],info:[6,98,123,8,9,181],utc:[136,152],"0xc7":175,utf:[43,4,132,126,193,7,192,85,152],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":11,"column_create\u306f":74,munin:[154,130,138,167],"callback\u304c\u4e0e\u3048\ u3089\u3 08c\u305a":70,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":170,"_max":109,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":125,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":153,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":124,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":114,doesn:[41,93,91,92,12,95,96,7,9,104,192,55,109,152,115,60,18,19,66,165,123,126,97,78,178,179,81,181,185,33,136,140,193,85,195],repres:[45,92,13,98,160,181,39,152],"homebrew\u306e\u66f4\u65b0":89,before_instal:82,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":153,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":80,pronounc:160,titl:[45,109,3,185,12,112,13,126,137,123,186,103,159,153,79,131,29,81,152],drilldown_calc_tar get:81,a ccross:7,grn_ctx_close:[28,81,16],"root\u306b\u5909\u66f4":156,sigcont:126,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":156,draw:45,"groonga\u5358\u4f53\u3067test":170,"\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30ad\u30fc\u304c\u5e38\u306bgrn_nil\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":156,"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":80,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":125,io_flush:[56,32,44,78],eval:146,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":153,kawaji:7,groonga_org_path:153,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":11,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[180,153],"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u305 9":114," 146741340x":188,ruby_script:146,friendli:7,nippon:179,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":170,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":145,"\u5185\u90e8\u7684\u306a\u5909\u66f4":153,button:[7,126,120],hemispher:7,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":98,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":28,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":64,download:[167,130,153,24,14,154,102,192,90],click:109,grn_obj_decr:80,onigmo:[78,81,181],experiment:[143,48,7,104,78,146,17,62,63,69,50,23,166,123,163,126,28,177,113,81,181,84,187,134,33,85],"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":153,"\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":1,"null\u4ee5\u5916\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5 834\u540 8\u306fpersist":84,becom:[13,133,46,43,76],accessor:[78,114],convert:[2,152,13,95,188,78,193,81],copyright:81,blogroonga:89,"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":170,chang:[133,20,126,7,78,28,192,113,81],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":61,danger:[137,60,84,55,122],grn_plugin_mutex_clos:41,"boolean":[56,43,126,185],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":108,query_expand:[22,177,126,10],"drilldown\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u306e\u7570\u306a\u308a\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":109,query_expans:[28,126],"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[147,73],soundkitchen:[7,2 8],misma tch:81,about:[41,0,2,44,93,134,96,98,47,26,49,7,101,9,104,78,146,150,192,128,123,56,109,76,12,86,155,14,116,60,18,19,91,20,169,152,162,120,164,69,27,23,167,24,113,126,74,186,173,118,189,28,29,178,179,81,82,130,185,137,36,32,136,154,181,138,140,85,90],"23t02":152,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":153,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":156,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":114,"shibuya\u3055\u3093":156,retriev:[133,109,152],"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":153,min_siz:64,meet:[188,75,81],mitsuhiro:156,control:[160,7,116,9,97,81],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":171,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":153,sudo:[167,130,192,153,24,168,14,142,7,154,103,20,140,90,180,82],directory_not_empti:175,grn_domain_error:2,"\u8907\u6570\u306e\u5024 \u306e\u 914d\u5217\u3092\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":74,tokendelimit:[169,91,49],"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,narg:39,"\u6a19\u6e96":[6,106,194,108],"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":153,int16:[46,156,126],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":114,decrib:9,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u5f8c\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u6 5b9\u4e0 0\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":145,rakutan:79,otehr:66,encyclopedia:46,normalizernfkc51:27,table_token:[56,32,44],kisk:7,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066groonga\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u9759\u7684\u30da\u30fc\u30b8\u3092\u683c\u7d0d\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[80,122],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u751f\u6210\u6642\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u756a\u53f7\u306b\u53cd\u6620\u3055\u308c\u307e\u3059":153,"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":70,"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":80,sysconfig:142,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":156,"\u3053\u306e\u5 834\u540 8":64,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[114,80,122],grn_plugin_proc_alloc:41,read_only_file_system:175,grn_ctx_set_command_vers:16,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":153,handl:[168,2,13,95,126,16,9,140,78,85,81],auto:[7,155,81],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":38,succeeded_or_not:[137,60,173,128],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":8,parameter1:9,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":153,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":170,column_information1:96,column_information2:96,"\u3053\u306e\u4f8b\u306f\u65e5\u672c\u8a9e\u3060\u3063\u305f\u306e\u3067tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306 7\u3088\ u304b\u3063\u305f\u306e\u3067\u3059\u304c":71,"uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4":1,"\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":83,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":170,chunk:[78,168,140,127],"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":180,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":170,special:[109,2,3,185,163,33,48,126,136,175,91,19,181,37,192,39,120],groo:[132,109],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u6e21\u3055\u308c\u308barg\u3068\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,suitabl:[109,12,123,95,98,115,85,81,66],goroo:129,grn_geo_estimate_in_rectangl:[28,111],new_vers:153,"quit\u306f":161,"\u3092\u6307\u5b9a\u3059\u308b\u3068":[64,122],manipul:160,grn _match_e scal:[56,31,44],"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":170,latitude_in_msecxlongitude_in_msec:152,keep:[67,115,86,16,17,28,85],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":156,geometri:28,largetext:95,"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":180,grn_cursor_by_id:64,"scorer\u306f":109,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":157,buf_siz:[114,80,122],"groonga\u30b3\u30de\u30f3\u30c9\u306b":156,mkdir:159,attach:[165,193,120],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30af\u30ea\u30fc\u30f3\u306a\u72b6\u614b\u3067\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b":153,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[71,46,170],"final":[41,109,9,5,86],travi:164,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":153,exactli:168,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306 e\u30a8\ u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":1,"20km":188,"groonga\u306f":180,beg:[85,181],sequence_queri:190,extrct:152,stdin:113,concatin:[7,132,126],logs_20150205:23,logs_20150204:23,logs_20150203:[143,23,166,63],tabl:[56,70],need:[91,3,4,5,95,98,48,49,7,102,9,104,10,152,78,107,79,55,92,109,192,12,86,16,17,123,18,20,144,181,66,22,23,24,168,75,175,140,28,29,178,179,81,82,130,193,185,128,133,134,33,136,85,37,120,39,132],border:[7,91,97],fluent:105,grn_obj_search:57,"0x08":175,"0x04":175,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":156,"0x01":175,"0x02":175,"\u30ed\u30b0\u3092":153,ifexist:59,singl:[109,91,3,86,134,126,59,81],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u95a2\u3059\u308b\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3057\u307e\u3059":109,"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":156,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d \u306a\u 3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":153,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":80,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":71,kazuhiro:126,url:[159,28,81,55,37],uri:[37,9],grn_table_upd:114,fontain:28,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":114,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":64,grn_index_cursor:[56,31,44],"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":182,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":121,ssssss:150,object_corrupt:175,"146867000x":188,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":153,grn_obj_is_proc_proc:78,launchpad:[14,153,81],"\u3053\u308c\u306f":71,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u30 44\u308b \u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[106,98],"\u3053\u308c\u3067":153,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":71,"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":11,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":80,enabl:[89,153],"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":153,"masahiro\u3055\u3093":156,gram:[133,91,3,152],"output_columns\u304b\u3089_value\u3092\u524a\u9664":156,contain:133,kawada:81,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":71,orphan:126,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":70,korea:131,scorer_tf_idf:12,statu:[56,130,2,44,167,14,32,126,7,154,173,81],correct li:[7,78 ,3],wibowo:126,tend:79,written:[22,188,10,20,128,81],benchmark:[53,56,44,126,7,81],grn_retry_max:2,ken:45,kei:[67,59,23,166,153,56,133,143,86,126,7,114,173,104,63,64,78,80,113,81],grn_no_child_process:2,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":127,regular_express:181,"\u578b\u306e\u30ab\u30e9\u30e0\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":121,eclips:120,"\u3053\u306e\u307e\u307e\u3067\u306f\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u8868\u793a\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":71,admin:[156,126,7,78,28,81],jersei:188,"\u3059\u3079\u3066\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3067\u540c\u3058\u540d\u524d\u306e\u95a2\u6570\u3092\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3 092\u630 7\u5b9a\u3057\u307e\u3059":157,"po\u306e\u5b9f\u884c":89,"\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e":125,cutter_source_path:153,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":80,"\u5185\u8a33\u306f":71,"\u304c\u3042\u308a\u307e\u3059":153,quit:[56,32,153,44],addition:[78,75],cent:85,quiz:45,"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,treat:[93,109,91,23,152,166,143,126,7,18,63,78,179,81],"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[147,6,73,8,157,194,108],downcas:193,"\u65e5\u672c":[85,179],"\u6709\u52b9\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u591a\u304f\u30d2\u30c3\u30c8\u3059\u30 8b\u305f \u3081\u306b":109,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":106,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":114,delimit:[91,13,133,126,49,78,85],drildown:[56,158],main:[154,153],"12gb":168,glossari:82,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":28,longitude_in_msec:152,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":54,demo:45,redcloth:153,welcom:[109,185,88,188,26,152,89,120],grn_table_cursor_t:64,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u591a\u304f\u306a\u3063\u305f\u5834\u5408\u306f\u6307\u5b9a\u3059\u308b\u5024\u3092\u4f4e\u304f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":71,speaker:26,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":156,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":157,crch:91,entry_selector:157,nsubrecs_column:122,http:[44,98,7,102,9,104,192,56,153,8 6,14,159 ,120,53,167,24,170,126,78,81,82,182,130,133,154,191,90],"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u518d\u73fe\u7387\u3092\u3042\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":71,effect:[7,59,188,98,78],"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,rpmforg:130,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":89,well:[23,133,33,126,103,192,9],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":161,"blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenme cab\u30c 8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":71,undefin:13,"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":80,lcov:180,distanc:[93,76,152,133,7,75],koi8r:[7,192,98],remove_blank:134,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":80,"log_reopen\u306f":194,bc009774:153,patricia:[56,3,185,95,126,7,78,28,152,158,66],"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":153,grn_ctx_get_command_vers:16,"\u3067\u533a\u5207\u308a\u307e\u3059":98,logger:[7,78],"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":57,int32:[3,12,46,49,7,128,109,76,152,86,155,71,60,18,45,123,126,75,97,79,179,81,185,131,188,116],ryoji:81,pikonyan:45,"groonga\u306 e\u30c7\ u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":61,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":170,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":127,title_index:12,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":170,dat_kei:95,tomita:156,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":182,grn_file_corrupt:2,necessari:[28,3],"\u4e0b\u8a18":64,page:[56,126,26,7,78,120],"\u4e3b\u30ad\u30fc\u304c\u6570\u5024\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3067\u306e\u6bd4\u8f03\u6f14\u7b97\u306b\u5bfe\u5fdc":156,lager:126,use_offline_index:113,revers:[56,153],assgin:152,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[182,98],"\u3 0bd\u30f c\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":114,out_http:170,home:[192,85,153],tatsuya:7,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":74,index_column:81,nihon:179,estim:[78,111,168],grn_obj_key_float:183,grn_obj_remov:[28,80,78],"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":145,"10t13":[18,179,49],win64:102,"\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4":1,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":170,"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":127,offset:[41,111,94,7,114,157,64,78,80,39],"blog_body\u7d22\u5f15":71,"\u62e1\u5f35\u5b50\u306b\u5236\u96 50\u306f \u3042\u308a\u307e\u305b\u3093":170,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":1,empti:[109,185,46,126,78,28,96,81],groonga_query_log_path:[126,81],"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":148,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":98,museum:188,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":170,"\u3053\u3053\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bruby\u3092\u5229\u7528\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u3092web\u30b5\u30fc\u30d0\u7d4c\u7531\u3067\u53c2\u7167\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":153,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":98,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,suzuki:7,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,"\u3068\u3044\u3046\u8a9e\u5f59\u30 6e\u4e26 \u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":145,gronga:[172,178],overflow:[13,28,126,81],ear:91,quetzal:7,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059":70,fullwidth:78,displai:7,limit:56,"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":127,"\u611f\u8b1d":78,"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":145,evalu:[152,185,126,186,146,85,181],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":98,"\u521d\u671f\u5316\u3055\u308c\u305f":16,"aramaki\u3055\u3093\u304c\u5831\u544a":156,eric:97,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":80,blog1:79,blog2:79,new_valu:109,futur:[69,76,23,86,134,126,175,146,28,55,181],rememb:109,halfwidth:193,"max\u304cnull\u306e\u5834\u5408\u306 b\u306f" :64,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":28,sphinx:[153,88,20,15,81,120],katagiri:126,table_remov:[7,56,32,126,44],"\u3068\u540c\u3058\u610f\u5473":98,max_concurr:182,"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":184,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":125,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":89,whose:[3,152],accur:[133,33],"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":153,grn_io_vers:81,"0x20":185,escaped_queri:39,kentaro:126,swap:140,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u30 7e\u3059 ":35,"void":[41,84,5,124,114,25,117,19,64,80,113],voic:193,is_anim:13,affect:[7,78,126,81],"\u306f\u7121\u52b9\u3067\u3042\u308a":64,parameter_name1:37,parameter_name2:37,demerit:95,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":98,correct:[56,44,132,155,7,51,78,178,179,81],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":171,vector:[56,72,44,126,7,78,28,81],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"10m":9,batch:7,"10z":152,"\u30b0\u30eb\u30fc\u30d7\u5316":61,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":170,even:[167,130,23,152,123,133,14,126,7,154,102,138,79,179,81],"\u3064\u307e\u308atest":153,neg:[41,109,2,16,7,19,78,54],spokesman:89,"debian\u7cfb\u306e\u30d1\u30 c3\u30b1 \u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"\u3050\u308b\u3093\u304c\u592a\u90ce":45,"new":[133,89,153],net:[45,3,153,131,13,26,75,103],ever:126,metadata:[69,12,123,188,7,146,29],elimin:126,behavior:[7,116,85,81,97],never:[78,192,155],"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":170,met:186,grn_log_level:41,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":153,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":80,grn_parse_query_flag:78,jame:144,sji:[192,43,98],serch:[155,18],yamada:81,"\u691c\u7d22\u7d50\u679c\u3092\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u6b8b\u3057\u307e\u305b\u3093":109,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":182,g rn_expr_ exec:[39,16],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3067\u304d\u308b\u74b0\u5883\u3067\u3042\u308c\u3070groonga\u30b3\u30de\u30f3\u30c9\u306e\u77e5\u8b58\u304c\u306a\u304f\u3066\u3082groonga\u306e\u52d5\u4f5c\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059":170,"\u826f\u3044\u4f8b":125,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u524d\u306b\u3059\u3067\u306b\u95be\u5024\u304c\u8d8a\u3048\u3066\u3044\u308b\u5834\u5408":71,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":71,overhead:[142,81],typo:[126,7,18,78,28,178,179,81],recommend:[167,109,3,185,142,129,14,130,55,136,154,101,102,103,138,140,181,85,81,152],"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":16,arg1_nam:181,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":117,under:[132,55,9,37,192,65,81],"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":80,warp:81,warn:[109,6,98,126,7,123,8,9,15 0,113,81 ,181],"\u4ee5\u4e0b":170,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u4e8b\u524d\u306b\u6e96\u5099\u3057\u305f\u8f9e\u66f8\u3092\u7528\u3044\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b\u305f\u3081":71,setup:[120,126,82],neolog:85,akio:[7,28,126,78],root:[37,98,9,126,103],give:[133,116],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":70,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":25,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,max_tp:182,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":89,unsign:[41,2,122,87,17,114,183,64,80,39,54,81],"\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30d1\u30c3\u30b1\u30fc\u30b8\u306f \u4ee5\u 4e0b\u306eurl\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059":153,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":11,log_level:[56,32,44],n_kei:114,updag:7,config:[1,98,7,102,28,192],sato:78,grn_arg_list_too_long:2,sitedomain:[103,131],"\u30b9\u30fc\u30d7":145,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":70,permission_deni:175,third:[13,96,109,152],maintain:85,grn_text_printf:81,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u5834\u5408\u3082\u91cd\u307f\u4ed8\u3051\u3092\u8003\u616e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3053\u3068\u306f\u304b\u308f\u308a\u3042\u308a\u307e\u305b\u3093":71,romaji:179,"twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927 \u306b\u 7e4b\u3052\u308b":125,"cutter\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3066cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u53d6\u5f97\u3057\u307e\u3059":153,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":84,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":73,privileg:[103,126],keyboard:109,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":171,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":112,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":54,persist:[56,44,96,114,60,106,66],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":64,anim:45,"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":156,"\u8aa4\u5d ee\u306f \u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":171,leaner:65,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":153,grn_exec_format_error:2,cache_previ:17,side:[7,133,109],mean:[41,93,2,143,96,98,7,91,9,104,150,3,192,109,107,152,86,13,155,19,63,23,166,123,168,126,186,75,111,78,178,179,81,181,185,131,39,137,140,193,85],"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":16,enorm:45,blog_comment_index:186,grn_obj_compar:80,extract:[120,133,33,48,7,186,102,78,192,39,81,66],"hiroshi\u3055\u3093\u304c\u5831\u544a":156,content:[41,12,96,9,28,55,109,110,152,115,116,45,165,126,186,175,78,79,81,185,188,33,136,140],rewrit:43,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":64,situat:109,ncpu:90,mdev:78,lzo_error:175,"\u4e0d\u6b63\u306a\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u3068\u304d\u306bdump\u3059\u308b\u3068\u843d\u3061\u3066\u3057\u307e\u3046\u554f\u984c\u3 092\u4fe e\u6b63":156,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":16,isk:181,iso:152,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u306f\u7279\u6b8a\u30b3\u30de\u30f3\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059":170,wgs84geoppoint:111,cpuinfo:[154,130,14,167],plugin_regist:[56,32,159,44],grn_snip_clos:81,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":71,hook:82,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":170,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":156,sometim:81,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":145,grn_cache_get_max_n_entri:17,iptabl:[103,55],"\u5358\u4f4d":[18 3,171]," push\u3057\u3066groonga":153,"80ghz":170,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":98,mkostemp:81,"limit\u306b\u3088\u3063\u3066\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":109,conveni:[23,133,191,28,192,179,195],keyword:[45,109,3,185,12,172,123,163,33,48,126,7,116,79,39,66],"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":98,grn_expr_get_var_by_offset:39,modern:188,mind:67,mine:133,"\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":28,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\ u30ea\u3 0d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":159,regular:[132,56,9,44,78],tradit:[133,81],"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":170,don:[3,4,12,96,98,49,9,28,107,55,17,109,192,152,86,16,59,66,123,175,78,29,178,81,193,185,39,137,138,37,120,85,103],doc:[92,153,88,20,126,7,9,28,78,113,81,120],"\u8a18\u53f7\u3068\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":71,doe:[109,3,185,86,13,133,126,7,186,9,62,155,142,152],logyyyymmddhhmmss:132,grn_not_enough_spac:2,dot:7,"longtext\u306e\uff13\u3064\u306e\u578b\u306b\u3064\u3044\u3066\u306f\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u4fdd\u5b58\u3057\u305f\u308a\u51fa\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u304c":46,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc \u30c8\u 3092\u304a\u3055\u3089\u3044\u3057":125,keybuf:114,"\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u51fa\u529b\u5148\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":170,syntax:[56,44,86,126,7,78,39,81],"\u65e5\u672c\u8a9e":179,yoji:28,acquir:19,explain:[13,3],"_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":1,"root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408":98,"\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u3088\u308a\u8fd4\u3055\u308c\u308b\u5024\u304c\u5909\u308f\u308a\u307e\u3059":127,record_id:78,grn_obj_is_function_proc:78,cosmo0920:[126,81],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":64,stop:[165,12,123,98,109,126,7,60,9,78,28,29,81],grn_plugin_fin:41,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u3 06f":153 ,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":11,attr_setpshar:126,bar:66,"md\u30d5\u30a1\u30a4\u30eb\u306epublish":153,reload:178,bad:[133,126,81],"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":42,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":73,veres:55,all_record:7,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":170,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":46,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":170,old_releas:153,"\u5b9f\u884c\u3067\u304d\u307e\u3059":153,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":145,subject:126,brazil:131,libgroonga:[164,3],grn_function_not_impl:2,simplest:[133,192,12,36],illegal_byte_sequ:175,attribut:[91,110,27,134,169],nfkc51lexicon:193,threasd:98,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\ u30b7\u3 0e5\u6587\u5b57\u81ea\u8eab\u3092\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":98,"100x150":35,"\u534a\u5f84":171,str_ptr:41,"takuto\u3055\u3093":156,replied_to:188,key_length:175,"\u30af\u30a8\u30ea\u306e":71,string_liter:81,"\u6539\u884c\u6587\u5b57\u306f":98,against:[56,109,84,45,185,133,86,98,49,7,18,158,152,128,39,179,81,122],"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":180,"\u95a2\u6570\u304c\u5f15\u6570\u3092":1,grn_queri:7,"twitter\u7de8":89,grn_op_cal:70,grn_expr_var:[41,54],g721d5c7:83,grn_obj_clos:[70,121,81,80,16],three:[109,76,23,131,86,13,163,126,136,123,60,18,160,3,79,179],"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":153,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":11,"1285858800\u306f2010":71,interest:[89,3,181],basic:[7,133,109,81,56],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059 ":153,su ppress:[7,113,81],"2\u30ea\u30ea\u30fc\u30b9":78,multithread:104,servic:[142,133,126,7,18,140,78,81,82],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":84,calcul:[93,109,76,132,188,126,7,75,146,81],"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":153,groonga_cli:152,seven:[23,3,166],datail:109,theatr:92,"key\u3092\u8fd4\u3057\u307e\u3059":80,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":98,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":80,"\u691c\u7d22\u306e\u6319\u52d5":56,receiv:[152,132,133,175,98,16,9,65,120],make:[133,89],column_list_head:96,meetup:78,"_kei":[3,92,12,96,47,49,7,101,9,149,110,128,55,144,109,76,152,86,13,155,59,60,18,61,159,45,165,122,126,186,75,173,97,79,80,179,81,185,131,188,136,140,193,103],msg_controllen:78,zlib1g:[154,14],unicorn:14,"\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9 \u307e\u 3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059":70,"8byte":175,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":70,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":122,inherit:126,"grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":74,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":98,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,left:111,identifi:[46,173],just:[17,130,192,84,5,167,24,120,14,126,7,154,102,138,78,28,80,81,82],sigusr1:2 8,"\u677 1\u4eac\u90fd\u6c11":[71,145],human:[96,66],"\u73fe\u5728\u306f":[182,170],yamamoto:81,yet:[93,69,23,152,12,123,133,109,126,146,28,55],"table\u304c":114,defrag:[28,32,126,44,56],uint16:[46,126],"worker\u306f":135,save:[132,168,79,153,81],applic:[164,152,133,98,33,55,9,28,178,81],"bigram\u306e\u5834\u5408\u306f\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":145,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":153,background:98,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":153,nomral:[109,185],daemon:[7,126,81],vdw:[75,3,131],manual:[56,81],grn_obj_expir:80,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":108,mrubi:[69,153,126,146,78,81],unnecessari:140,cxxflag:24,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6 307\u5b9 a\u3057\u307e\u3059":157,intern:[13,33,16,17,126,78,107,113,81],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":106,insensit:[109,181],"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":145,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306b\u9650\u308a":145,tracker:89,"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":70,localhost:[182,4,153,132,170,98,9,104,55,175],range_filt:[56,32,81,44],new_release_d:153,"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":8,grn_cursor_gt:64,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":180,promot:126,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306erpm\u306b\u7f72\u540d\u3092\u88 4c\u3046 \u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,grnline:3,"\u305f\u3068\u3048\u3070\u4e0b\u8a18\u306e\u3088\u3046\u306bgroonga\u306e\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u63a8\u79fb\u3057\u307e\u3059":11,postgresql:[133,33],"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059":153,update_buffer_s:87,"\u30c6\u30b9\u30c8\u306f":180,grn_ctx_recv:81,commit:[81,120],"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[182,98],meerkat:28,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":74,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3 055\u304 4":25,sphr:[76,171],down:[56,126,81],contrib:153,"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":170,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,editor:120,fraction:[13,133,188],storategi:109,fork:[98,120],grn_content_tsv:107,infom:16,tokenbigramignoreblanksplitsymbolalphadigit:169,form:[109,3,185,132,188,175,160,126,9,52,28,193,103],sub1:109,forc:7,grn_obj_db:84,"4e86e700":168,"txt\u306b\u307e\u3068\u3081\u307e\u3059":153,grroonga:172,"\u5426\u5b9a":70,auth_basic_user_fil:[9,55],"dump\u304c\u51fa\u529b\u3059\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306f\u76f4\u63a5groonga\u304c\u89e3\u91c8\u3067\u304d\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u3059":159,unrel:28,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u3 06a\u308 c\u3070":11,classif:131,featur:[91,143,189,98,48,7,50,9,104,78,109,76,86,155,16,116,62,63,169,66,27,23,166,163,160,28,177,81,185,84,133,134,33,120],kwic:33,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":68,grn_obj:[42,111,121,84,44,56,94,87,31,16,7,78,39,81,122],"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":54,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":61,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":35,score_function2:12,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":98,tokenbigramignoreblank:169,excel:178,"defrag\u306f":38,"web\u30b5\u30a4\u30c8\u304b\u3089\u6700\u65b0\u7248\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\ u30c9\u3 057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":153,matur:[142,191,23],escaped_charact:39,faction:188,grn_ii_cursor_set_min:78,why:[109,126,142],calc_typ:109,fsf:7,data_set_nam:155,"scr\u306e\u4e2d\u8eab\u304c":170,vmstat:168,ignor:[109,91,84,178,95,134,126,7,173,104,78,28,85,81,185],reply_to:79,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,logs_message_index:181,n_entri:118,"152489000x":188,skip:[78,3,126,81],segv:126,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":38,force_prefix:[78,91],depend:[133,89],"max\u3068pat\u6728\u4e0a\u3067\u8fd1\u3044\u4f4d\u7f6e\u306b\u3042\u308b\u30ce\u30fc\u30c9\u304b\u3089\u9806\u756a\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":180 ,marku:7 ,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,must:[41,3,5,96,49,103,104,149,143,111,192,55,17,109,110,152,13,155,59,60,62,63,181,65,66,23,122,166,168,72,186,173,175,78,179,81,185,84,132,39,137,140,85],query_str:126,"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":28,"0mq":126,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":153,grn_obj_set_fin:54,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":74,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":153,proc:[41,167,109,94,14,126,154,130,54,119],iter:152,dic:167,item:[142,155,109,49,18,179,55,66],round:28,dir:170,"table\u306bid\u306b\u5bfe\u5fdc\u30 59\u308b record\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":114,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":153,strerror:81,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":156,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":170,shinoda:[78,81],"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":68,deriv:[142,65],"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":145,wait:[41,19],box:109,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":61,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059":11,grn_true:80,"dump\u306e\u7d50\u679c\u306f\u5927\u30 4d\u304f \u306a\u308b\u305f\u3081":159,raccoon:45,"\u306e\u30ab\u30e9\u30e0":[38,108],grn_content_json:107,modul:[133,156,81,56],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":127,result_too_larg:175,sako:78,univers:14,perl:9,nokubi:81,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":74,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":114,grn_proc_typ:54,"_min":109,ooo:95,apper:109,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":70,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":73,grn_plugin_proc_get_var_by_offset:[41,81],commands_column_list:96,tokyo:[75,76],"\u4ee5\u4e0b\u306e\u3088\u3046\u306bgroonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u5148\u 304b\u30 89\u306e\u76f8\u5bfe\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":153,uniqu:[132,104],"\u30d2\u30c3\u30c8\u6570":109,ull:91,"256kb":168,predict:[95,85,66],"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":54,"\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059":125,libmemcach:180,grn_no_buff:2,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":145,normalizs:66,map:[23,168,140,28,150,78,179],"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":170,max:[17,126,7,28,64,78,81],mac:[56,138],grn_obj_append:80,assigend:185,mai:[164,12,95,96,7,9,104,78,146,192,79,55,152,155,17,60,62,181,66,67,45,69,23,122,123,126,28,29,178,81,185,84,133,134,136,137,140,85],underscor:66,"\u5ea6\u5206\u79d2\u5f62\u5f0f \u304b\u 3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":46,table_dat_kei:[185,126,106,66,81,152],grn_expr_get_keyword:39,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":145,"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":28,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":182,talk:[78,126,26,153],feb:23,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":71,pointer:41,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":70,entiti:133,group:[109,133,126,7,186,81],monitor:[154,130,14,126,167],polici:126,"\u5b9f\u9a13\u7684":78,vector_s:[56,162,44,78],resource_t emporari ly_unavail:175,initi:[41,5,132,16,7,78,28,81],lunch:133,"no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8":1,"cutter_source_path\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306bcutter\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":153,"groonga_dir\u4ee5\u4e0b\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":153,"\u5fa9\u53f7\u3057\u305f\u9375":153,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":80,massachusett:188,"groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u7f72\u540d\u7528\u306e\u9375\u3092\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306e\u516c\u958b\u9375\u3067\u6697\u53f7\u5316\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306epackag":153,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":170,"\u3053\u306e\u7d50\u679c\u306f":170,gzip_typ:55,"\u30e2\u30b8\u30e 5\u30fc\ u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":156,continu:[91,98,126,7,18,85,81,82],"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":153,unlock:41,nroonga:[116,79,82],"memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f":180,"3rd":[109,126],compress_lzo:74,"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":11,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":170,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":153,uint32:[3,92,46,7,103,106,128,144,109,152,86,115,60,96,66,45,165,71,126,186,75,173,97,79,81,181,185,131,136,140,193],"\u624b\u7d9a\u304d":54,earlier:[28,128,193,78],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30ed\u30b0\u95a2\u6570\u3092\u7 528\u304 4\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u306b\u5bfe\u5fdc\u3057\u3066\u3044\u307e\u3059":194,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":183,debootstrap:153,org:[3,102,9,192,167,110,153,86,13,14,159,120,45,24,170,75,103,78,81,130,131,154,90],prefix_search:[28,155],"128487316x502920929":[45,75],grn_table_renam:114,"\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":71,"\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059":125,"marverick\u306b\u5909\u66f4":156,frequenc:[12,123,155,100,187,78,81],"grn_op_adjust\u306f":70,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":106,thing:78,"\u95be \u5024\u 306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":145,think:[123,29,109,12,152],frequent:12,first:[41,142,3,92,12,96,48,102,9,104,28,192,55,109,152,13,16,66,45,163,126,78,79,178,81,181,185,132,188,33,136,120,85],"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":153,"vmware\u306a\u3069":153,key_norm:[115,109,193,3,92,71,188,185,33,7,116,140,79,152,66],fast:[93,91,3,12,95,48,101,72,55,109,76,152,59,66,45,123,163,110,79,181,185,133,33,136,195],crit:[6,8],grn_geo_cursor_open_in_rectangl:111,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":71,workaround:[78,81],"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":61,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":28,memo:[165,12,123,116,101,149,29],key_siz:114,broadcast:188,"value\u304c\u5c5e\u3059\u308b\u578b":106,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":114,proxy_cache_valid:9,patprefix:144,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\ u3044\u3 066\u306f":46,longitudexlatitud:126,yoshioka:7,poyonga:129,grn_db_touch:[156,84],were:[76,3],zsh:192,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,dash:192,grn_invalid_format:2,properli:[7,78,103,185],katakana:[155,193,85,179],squar:76,timeuot:19,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":170,"256gbyte":67,normal:[56,130,44,167,14,126,16,7,154,78,107,113,81],beta:43,pair:[109,13,49,172,18,178,179],"143660000x419009000":76,synonym:[109,178,92],grn_default_query_logger_get_rotate_threshold_s:78,"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[38,108],"\u539f\u56e0":[56,40],shop:[115,145],lexicon:[56,159,78],"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u3092\u516c\u958b":156,show:[93,1,2,3,4,12,48,7 ,103,78, 52,107,109,76,152,13,59,116,45,23,123,163,126,186,75,173,175,97,28,81,181,185,131,133,134,33,136,188,192,110,85],"\u62c5\u5f53\u8005":153,threshold:138,"\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":70,black:[93,193],"\u30c6\u30fc\u30d6\u30eb\u540d":[106,38,108],"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":71,tamano:81,variou:[56,158],get:[41,91,98,26,7,78,192,56,109,111,153,14,16,17,20,120,47,118,28,81,133,154,37],"\u3092\u8a08\u7b97\u3059\u308b":1,wheezi:[56,153,138],"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":156,gem:153,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30 aa\u30d7 \u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_host\u304c\u512a\u5148\u3055\u308c\u307e\u3059":170,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u306710\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u6642\u306b\u5b9f\u884c\u3059\u308b":170,tokyogeopoint:[76,46,35,75,111,28,171],median:81,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":1,summari:[56,126,44],wiki:9,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":114,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":71,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":28,sear:179,enci:170,masahiro:[156,126,81],japan:[75,173,103,131,179],therubyrac:153,infinit:[7,28,81,66],enumer:3,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":170,"\u30ec\u30b3\u30fc\u 30c9id\u 3092\u6307\u5b9a\u3057\u307e\u3059":114,label:[78,126,81],enough:[133,79,168,81,78],across:76,parent:[109,9],unknown_error:175,column_vector:[45,109,86,13,188,96,126,74,186,173,149,81],"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":194,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":98,"\u5bfe\u7b56\u65b9\u6cd52":[56,40],"\u5bfe\u7b56\u65b9\u6cd51":[56,40],recrod:109,"\u3088\u3063\u3066":46,dump_plugin:78,"\u5206\u5272":145,grn_expr_clos:39,nogpgcheck:7,"\u3060\u3068\u539f\u56e0\u306f":125,grn_cache_open:17,among:[7,13,45,158,56],grn_obj_delete_hook:94,"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":170,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":170,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":145,inappropriate_i_o_control_oper:175,cancel:[36,104,81],grn_proc:[56,31,44],"ruby\u306erake\u 30d1\u30 c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3088\u308a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":153,gnupg2:153,mark:[165,188,113,142,78,193,85,81,66],"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":11,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":87,grn_too_small_offset:2,grn_init:[7,150,5],senboku:126,i18n:[89,15],those:[109,76,3,4,172,24,133,160,185,33,49,13,193,95,152,192,113,55,120],sound:[18,193],hdd:170,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"8\u306b\u5bfe\u5fdc":156,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":98,advantag:[133,142,33],"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":170,brasillia:76,"\u30ed\u30b0\u30d5\u30a1 \u30a4\u 30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":170,"1\u3068command":11,pat:[7,113],candidate_n:132,drilldown_result2:109,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":89,drilldown_result1:109,same:[3,12,129,9,104,10,55,109,152,86,13,16,59,116,18,19,22,123,126,75,78,79,181,185,36,136,37,193,39],speech:[133,85],pai:109,"\u30b3\u30de\u30f3\u30c9\u304cquery\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u3059\u308b\u306e\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":145,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":153,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,grn_command_version_st:117,grn_table_dat_kei:114,"\u540c\u3058\u3067\u3059":170,montywi:113,grn_address_is_not_avail:2,macro:[28,126,81,78],markup:[88,78],"drilldown\u7d50\ u679c":1 09,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":16,argument2:[152,12],"clone\u3057\u305fweb\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u65b0\u898f\u8ffd\u52a0\u3057\u307e\u3059":153,argument1:[152,12],"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":80,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":182,document_vers:153,execut:[91,44,96,47,7,102,104,10,146,106,78,192,56,109,86,155,16,59,60,169,66,22,69,27,23,126,83,173,118,28,128,177,81,133,134,136,137],grn_obj_fin:[39,16],"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":98,monei:45,mcdonald:93,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":121,enable_tokeniz ed_delim it:91,"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":80,"\u697d\u3057":[71,145],value_column:122,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":114,evaluated_valu:146,either:[0,109,152,126,97,79,181,185],quantal:7,operation_not_support:175,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":153,ascend:[93,75,3,109,131],testdb:[170,65],"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":114,confirm:89,table_no_kei:[109,23,185,137,123,163,33,48,115,116,181,173,159,78,106,152,81,66],valuebuf:42,str_length:41,"\u30cb\u30c3\u30dd\u30f3":179,event_typ:190,broken:[84,126,7,137,62,78,28,81,122],regexp:[78,81],"128452975x503157902":[13,45,75,103],"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":98,"_set_valu":113,"x\u306e\u304a\u77e5\u308 9\u305b" :78,"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":156,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":153,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":64,strip:110,"tomita\u3055\u3093\u304c\u5831\u544a":156,yyi:120,drilldown:[56,157,126,61,78,28,81],grn_ctx_batch_mod:81,complianc:9,"\u3082\u3057\u6307\u5b9a\u3055\u308c\u305fdb\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u81ea\u52d5\u7684\u306bdb\u3092\u4f5c\u6210\u3057\u307e\u3059\u304c":170,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":80,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":74,"repositories\u91 4d\u4e0b \u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":153,arugment1:152,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":170,possibl:[28,46,37],"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":153,embed:[133,98,33,48,9,78,178],grn_operation_not_permit:2,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_offset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,file:[89,153],logo:7,fill:[132,152],again:[115,78,9,81,19],field:[78,96],location_in_groonga:136,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":170,architectur:[133,98,153,81],"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":74,sequenc:[109,185,36,126,49,155 ,18,175, 150,28,179,152],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":64,"6gib":140,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":89,"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":114,escal:138,unload:7,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":46,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":147,"x\u3067\u306frealloc":156,descript:[56,109,27,185,44,132,134,96,166,98,126,7,91,9,169,152,181,179,81,66],escap:[7,163,39,126,81],"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,represent:[124,120,39,86],forget:86,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":1,interpret:[113, 185,153] ,suno:81,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":89,file_too_larg:175,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":94,libmsgpack:[154,14],"rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"\u691c\u7d22\u7d50\u679c\u306e\u30bd\u30fc\u30c8\u9806\u5e8f\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":109,objnam:[38,108],grn_op_and:[57,70],grn_op_or:[57,70],fals:[1,91,104,153,137,13,46,126,74,116,60,101,186,173,97,144,152,128,163,81,185],"\u3053\u3053\u3067\u3082":71,offlin:[56,44,126,7,78,113,81],util:9,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":156,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u 969b\u30 6b":11,sub_filt:[56,162,126,44,78],hottolink:43,grn_hook_set:94,puropos:91,"\u305d\u308c\u3092\u65e7ji":64,zero:[165,72,86,13,85,109,175,193,178],further:13,"\u3053\u3053\u3067\u306f":71,aba:[75,3,131],abi:78,grn_info_typ:42,"\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":125,fffe:91,tokenbigramignoreblanksplitalphadigit:85,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":127,"public":81,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":98,tokenbigramsplitxxx:85,grn_table_pat_kei:114,valu:[41,42,2,72,87,7,28,107,54,192,86,16,19,64,122,126,78,80,113,81,133,136],grn_table_setoper:114,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":122,"groonga\u7d44\u 8fbc\u30 b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":194,fff0:85,narrow:[158,56,109,126,81],"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u95a2\u4fc2\u5f0f\u306f":70,commands_table_cr:106,transit:142,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,"groonga\u306epackag":153,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":171,establish:[3,175],distinct:[67,132,144],"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":153,regist:[22,41,23,44,56,133,143,32,126,7,159,78,134],libev:[192,154,14,113],groonga_path:170,"check\u30b3\u30de\u30f3\u30c9\u306f":127,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u 30fc\u30 c8\u756a\u53f7":98,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":74,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":64,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,jsonp:[132,78],desin:142,memo6:12,memo5:12,memo4:12,memo3:12,memo2:12,memo1:12,none:[109,91,134,175,98,47,190,137,9,79,192,66],"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":182,hour:[188,152,19,150],dev:[153,14,126,26,7,154,180,78,28,81],grn_set_default_encod:124,"\u30c7\u30fc\u30bf\u306b\u4e0d\u6574\u5408\u304c\u767a\u751f\u3059\u308b\u5834\u5408\u306f\u30c7\u30fc\u30bf\u3092\u524a\u9664\u3057\u306a\u3044\u3088\u3046\u306b\u5909\u66f4":1,remain:[150,126,181],paragraph:3,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":156,deb:[153,14,126,7,154,78,28,81],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u5 23b\u306 a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":71,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":153,share:[17,23,84,166,45,133,143,98,126,26,7,9,122,63,28,79,192,19],shard:[95,143,23,78],"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":64,minimum:[41,167,109,152,14,130,154],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[35,171],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":89,strlen:41,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":122,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":145,secur:[56,81,78],"\u691c\u7d22\u7d50\u679c1":109,"13\u7528rpm\u306e\u63d0\u4f9b":156,arg2_nam:181,needl:70,grn_command_vers:[56,31,44],number2:152,number1:152,mariadb:[126,81],associ:[41,45,109,3,13,59,173,28],"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\ u306b":1 53,kuriyama:[78,81],spheric:76,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":161,rotat:[78,98],hypertext:[56,158],no_buff:175,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":71,through:[133,9],"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":153,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":89,"\u5024\u3092\u53d6\u5f97\u3059\u308b\u7bc4\u56f2\u306e\u958b\u59cb\u4f4d\u7f6e\u3068\u306a\u308b\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":80,"\u30b0\u30eb\u30fc\u30d7\u5316\u51e6\u7406\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e_nsubrecs\u306b\u8a18\u9332\u3055\u308c\u307e\u3059":61,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u3092\u4e0 0\u3064\ u3060\u3051\u6301\u3064\u3053\u3068\u304c\u3067\u304d\u307e\u3059":114,good:[165,91,185,133,109,115,47,152,79,192,85,120],timestamp:[188,23],"tokenmecab\u3067\u306f":71,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":153,grn_get_lock_timeout:19,grn_obj_vector:[80,39,16],"_valu":[109,61,122,81,126],rank:[3,81],"db\u3068\u306a\u308a\u307e\u3059":84,comamnd:55,micro:[13,56,152,158],name_2:[3,103],name_1:[3,103],hard:140,idea:109,"2000\u898f\u683c\u306b\u5f93\u3063\u3066\u5168\u89d2\u30ab\u30bf\u30ab\u30ca\u306b\u5909\u63db\u3057\u305f\u6587\u5b57\u5217\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b\u5024\u3092key\u3068\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,connect:[3,98,7,191,175,78],rlimit_nofil:[150,126],"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":153,flower:13,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":153,"release\u306e\u5b9f\u884c":89,print:[175,81],foregr ound:98, definion:152,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":70,entries_content_index:[140,109,185,152],database_path:62,msg_flag:78,"975mbyte":170,tahr:[14,81],"\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u7f72\u540d\u3059\u308b\u9375\u306b\u5909\u66f4\u304c\u3042\u3063\u305f\u5834\u5408\u306a\u3069\u306b\u884c\u3044\u307e\u3059":153,grntest:[7,28,156,153,105],"tokenmecab\u306e\u5834\u5408":71,tritonn:[109,185,152],"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":114,suggest_prepar:[155,18,179,49],"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":125,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u 5217\u30 6e\u4e2d\u3067\u306f":98,done:[17,109,9,81,19],stack_over_flow:175,"\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":46,stabl:[155,11,81],"squeeze\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"indexbuf\u306e\u30b5\u30a4\u30ba":122,"5th":109,least:[185,168,7,186,118,140,78],"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":159,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":71,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":71,"libedit\u5bfe\u5fdc":1,grn_plugin_get_suffix:28,"grn_expr\u306f\u4ee3\u5165\ u3084\u9 5a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":70,pari:76,selector:7,part:[188,23,166,13,133,143,33,136,63,3,192,85],pars:[124,39,81,160],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":114,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059":125,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":170,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":145,"\u30c6\u30fc\u30d6\u30eb":108,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\ u3063\u3 05f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":70,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":71,plugin_unregist:[22,56,32,44,78],consol:9,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":73,built:[56,91,44,133,32,126,76,9,192,78,80,134,162],argument_name1:37,argument_name2:37,build:[56,153,133,138,20,180,82],"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":153,distribut:[167,130,153,14,7,154,102,138,192,81],"\u30d0\u30fc\u30b8\u30e7\u30f30":78,"\u30d0\u30fc\u30b8\u30e7\u30f31":78,previou:[142,131,12,13,126,7,79,81,181],chart:28,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":68,most:[109,111,3,185,86,13,32,16,81,78,181,85,55,152],"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u 306a\u30 69\u3092\u524a\u9664\u3057\u307e\u3059":80,myisam:133,grn_incompatible_file_format:2,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[89,174],groonga_log_level:126,mainlin:[78,81],cas_error:175,roughli:13,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":145,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":56,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":180,carefulli:86,"bom\u4ed8\u304dutf":156,find:[114,165,193,3,133,163,109,33,48,49,155,60,18,102,20,89,192,85,179,120],grn_no_such_process:2,grn_index_cursor_open:121,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":84,grn_logger:7,unus:81,grn_in_values_too_many_index_match_ratio:81,grn_obj_defrag:80,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":182,commands_column_renam:60,restart:[22,78,178,140,10],"set_host\u3092\u5229\u7528\u 3057\u30 5f\u5834\u5408":170,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":71,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":170,map_hugetlb:28,common:[109,185,95,46,14,98,7,114,160,64,28,79,152,66],table_cr:[56,109,23,44,86,96,32,7,137,60,173,159,81],grn_api:39,"table1\u3068table2\u3092op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066\u96c6\u5408\u6f14\u7b97\u3057\u305f\u7d50\u679c\u3092res\u306b\u683c\u7d0d\u3057\u307e\u3059":114,grn_interrupted_function_cal:[2,104],"status\u30b3\u30de\u30f3\u30c9\u306f":83,lion:7,"\u521d\u671f\u5024\u306f10\u3067\u3059":182,blog_cont:186,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":170,gemfil:7,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":170,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":180,"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa \u529b\u 3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":157,network_is_down:175,hiroyuki:78,is_stop_word:[165,47,81],simpli:[123,144],point:[41,76,185,86,132,133,126,35,60,101,104,78,28,111,171,113],hideki:[78,126,81],shutdown:[32,23,44,56],"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":71,weight_in_match_column:86,ran:179,secret:153,indexblog1:79,"\u4ee5\u4e0b\u3067":71,gat:[75,3,131],understand:[109,3,81],convers:[28,9],"\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a":11,bill:[71,145],"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":145,opear:152,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":127,anonym:95,gb87d9f8:4,everyon:103,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\ u81f4\u3 059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,manner:[109,3],"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":170,"\u6c11":145,itself:[91,185,86,126,178,81,181],cento:[56,153,138,20],"\u30d3\u30eb\u30c9\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3057\u30ea\u30ea\u30fc\u30b9\u524d\u306e\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":153,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":145,"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":70,res2:114,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":71,inv_thread_column:170,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":159,keyr:[7,154],"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":194,usage_multiple_scor:12,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u 30c9\u30 67\u3082\u4e00\u7dd2\u306b\u6307\u5b9a\u3059\u308b\u30af\u30a8\u30ea\u306b\u3088\u3063\u3066\u306f\u5168\u6587\u691c\u7d22\u306e\u7d50\u679c\u304c\u7570\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":71,task:[7,133],sortbi:[28,157,126],entri:[147,94,48,108,17,109,152,59,157,163,73,126,74,186,173,118,79,185,188,137,140,38],parenthes:3,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":170,spend:[185,152],"build\u3092\u7528\u3044\u3066":180,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":68,shape:93,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":170,"\u3053\u306e\u64cd\u4f5c\u306f":114,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":159,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":70,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":153,bin:[192,102,20],key_column:122, kashihar a:81,"\u4e0d\u6b63\u306a\u540d\u524d\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u3082\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,tokendelimitnul:169,motoi:126,"\u6c38\u7d9a\u7684\u306a":80,bit:[167,109,185,154,24,46,14,170,130,13,102,138,152,82],"\u7d4c\u5ea6\u3068\u7def\u5ea6\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8868\u73fe\u3057\u305f\u6574\u6570\u306e\u7d44\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":46,semi:[28,66],groogna_default_command_vers:55,in_valu:[56,162,81,44,78],followe:188,often:97,grn_ctx_set_fin:16,back:[181,9,152],grn_plugin_init:41,sizeof:[78,39,16],"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":114,scale:[133,55],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":170,per:[23,132,133,7,9,28,85],newark:188,substitut:[109,185,116,152,82,1 20],larg :[185,13,133,140,7,62,95,78,152,85,55,66],"\u304c\u8fd4\u3055\u308c\u307e\u3059":80,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":108,reproduc:126,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":1,s10:81,"\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":127,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":148,grn_default_logger_get_path:7,"markdown\u30d1\u30fc\u30b5\u30fc":153,grn_expr_compil:39,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u 3066\u8a ac\u660e\u3057\u307e\u3059":108,"\u30c6\u30fc\u30d6\u30ebterm\u306b":74,nsi:153,bsd:[28,192,81,78],errno:[78,81],pair_dataset:[190,49],includ:[91,143,12,96,10,146,3,55,109,152,88,60,63,22,69,23,166,123,126,97,78,177,178,81,130,134,33,136,85],score_funct:12,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":35,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":180,str_size:39,translat:89,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":89,concaten:79,default_command_vers:[3,4,83,103,9,175],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":114,remaind:152,grn_tabl:[56,31,44],exit_success:5,no_space_left_on_devic:175,curl:[192,4,132,98,7,9,104,90,55,82],cmake:[7,78,192,102,126],sequenti:[185,78,152,85,81,181],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3 067\u305 9":70,grn_content_msgpack:107,grn_no_locks_avail:2,libwinpthread:81,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":153,"\u30b7\u30a7\u30eb\u4e0a":170,"output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":109,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":170,"\u3053\u306e\u4f5c\u696d\u306f":153,"tokenbigram\u306a\u3069":71,ellip:[76,171],grn_bulk_vsiz:[39,16],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":1,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u306e\u306f\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306a\u306e\u3067":153,getaddrinfo:7,jason:144,"\u5f62\u5f0f1":98,"\u5f62\u5f0f2":98,"\u308d\u3086\u304d":144,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":122,"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u 3092\u79 3a\u3057\u307e\u3059":153,sensit:85,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":153,grn_db:[56,31,113,44],becam:[142,81],exit:[7,78,98,126,62],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":83,fatal:81,db_path:[3,4,129,175,98,103,78,37,52,9],comment_cont:186,"2rd":109,grn_obj_is_scorer_proc:78,geograph:[13,76],"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":8,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":46,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[38,108],"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":153,"0x0":[13,46,113],object1:152,object2:152,leakag:92,carlo:[60,128],append:[7,39],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u524d\u306b\u691c\u7d22\u7d50\u679c\u30b b\u30c3\ u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":145,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":11,access:[56,109,122,195,133,126,49,7,60,18,9,140,37,28,78,120,179,81,19],"32gib":140,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,interrupted_function_cal:175,"obj\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u3068\u308b\u5024\u306e\u7bc4\u56f2\u3092\u8868\u308f\u3057\u3066\u3044\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u8fd4\u3057\u307e\u3059":80,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":156,vertic:66,sinc:[115,142,76,122,167,13,188,46,98,150,7,152,10,136,78,128,108,66],"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":127,masatoshi:78,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308b now\u306 b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":184,grn_resource_deadlock_avoid:[2,80],grn_too_large_offset:2,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":98,grn_mecab_chunk_size_threshold:78,"groonga\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3084zip\u30a2\u30fc\u30ab\u30a4\u30d6\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":153,ii_buff:87,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":156,score_function1:12,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":153,score_function3:12,set_token_filt:81,grn_content_typ:[56,31,44],name1:152,account:[26,81],"146607190x":188,"\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30e a\u30fc\ u30b9\u3055\u308c":11,alic:[109,185,188,116,60,9,97,128,85,55],rurema:81,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":153,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":145,fetch:[79,81,49],abcd:134,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":156,commnad:[11,102],"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":54,msvc:78,users_loc:188,grn_ii_buffer_commit:87,surfac:93,groonga_n_record:126,afr:[75,3,131],"entry\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u306e\u5024\u3092\u5bfe\u8c61\u3068\u3059\u308b\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u30ab\u30e9\u30e0":74,inst:126,physic:127,"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":64,bind:[164,43,163,160,98,48,7,78,28,82],amazon:109,"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":80,grn_geo_select_in_circl:28,"\u6df1\u523 b":71,"l earner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":156,hiroshi:[28,81,78],replies2:79,"centos_versions\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u7279\u5b9a\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30ea\u30ea\u30fc\u30b9\u3068\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u7d44\u307f\u5408\u308f\u305b\u3067\u30d3\u30eb\u30c9\u3092\u5e73\u884c\u3057\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,meter:[75,76],report:89,cflag:24,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":114,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":106,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u 5dee\u30 4c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":171,euc:[98,85,126],"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":170,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":114,tsv:78,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":70,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":98,nvar:54,spell:[178,92],dai:[23,152,188,115,150,78],dat:[7,113,126],mention:186,rubygem:7,"8\u30ea\u30ea\u30fc\u30b9":[78,153],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":106,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":170,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,"\u30ea \u30ea\u 30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":153,grn_table_lcp_search:114,"tomotaka_ito\u3055\u3093":28,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":71,column_index:[3,92,12,96,48,101,109,152,86,115,71,159,45,165,123,163,74,186,116,97,79,81,181,185,188,33,140],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3059":38,"\u306e\u66f4\u65b0":89,normalizerauto:[109,91,163,134,47,48,116,27,78,106,66],"\u3067\u3042\u308c\u3070":170,tokenregexp:[78,181],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":80,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":153,stub:81,rel:[28,109,81],"\u30ab\u30ec\u30fc":145,ref:152,red:89,clari fi:81,"\ u3053\u306e\u30b1\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3059\u308b\u306e\u3067":71,frank:97,test_loc:170,releas:[167,130,102,153],"\u5b9f\u884c\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3068\u305d\u306e\u5f15\u6570\u3092\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":98,groonga_log_path:126,drilldown_xxx:109,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":156,pgp:153,tokenizer_error:175,natti:28,messag:[153,138],"\u6761\u4ef6\u306e\u9806\u5e8f\u3092\u5909\u3048\u308b\u3068\u691c\u7d22\u7d50\u679c\u304c\u5909\u308f\u308b\u3068\u3044\u3046\u72b6\u6cc1\u304c\u767a\u751f\u3057\u307e\u3059":71,monkei:13,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":153,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5 834\u540 8":170,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,alloc_count:[3,4,175,98,83,103,9],ipad:[167,85],"groonga\u30b3\u30de\u30f3\u30c9\u3092\u901a\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u547d\u4ee4\u3092\u30b3\u30de\u30f3\u30c9\u3068\u547c\u3073\u307e\u3059":98,syscal:[3,81],structur:[136,133,45,81,95],charact:[41,109,91,178,133,150,185,98,33,48,126,7,193,134,78,28,152,39,163,81,66],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":127,have:[93,142,2,3,195,46,49,9,72,192,55,115,109,107,152,88,155,59,18,96,66,165,78,178,81,185,193,84,133,136,13,140,120,85,103],"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":98,min:[7,64,19,81],"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":170,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b \u3093": 122,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":153,osdn:[78,153,26],mix:[37,155,86,85,78],builtin:[56,44],"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":80,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":145,gurun:160,bottom_right:[28,35],eight:3,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":38,"\u6e2c\u5730\u7cfb":46,hardcod:23,"takahiro\u3055\u3093\u304c\u63d0\u6848":156,mail_column:170,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":70,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":180,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":145,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":71,"\u51e6\ u7406\u3 092\u958b\u59cb\u3057\u305f\u6642\u9593\u306b\u3064\u3044\u3066":109,"grn_bool\u578b\u3092\u8ffd\u52a0":156,bernard:78,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":74,elfr:7,grn_plugin_malloc:41,grn_ii_buffer_append:87,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":71,escaped_str:39,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":84,integr:[7,13,126,82],"hat\u7cfb\u306e\u5834\u5408\u306b\u306f\u672c\u756a\u74b0\u5883\u3078\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u524d\u306b\u30ed\u30fc\u30ab\u30eb\u306eapt\u306a\u3044\u3057yum\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53c2\u7167\u3057\u3066\u6b63\u5e38\u306b\u66f4\u65b0\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":153,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,malfunct:78,your_new_db:28, "tokenme cab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u306e\u65b9\u3092tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u3088\u308a\u3082\u91cd\u8996\u3059\u308b\u3088\u3046\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":71,pattern:[152,133,136,78,181,185],"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":180,progress:150,superior:[133,33],"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":170,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":183,plugin:[56,130,167,154,138,105,120],shorttext:[3,92,12,95,46,98,47,48,49,101,103,149,106,111,128,144,123,109,76,152,86,13,155,115,116,60,18,159,96,66,45,165,71,163,170,74,186,75,173,97,79,110,179,81,181,185,131,188,33,136,137,140,193],"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":16,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059": 127,"\u3 0c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":117,equat:76,"\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3092\u8aac\u660e\u3059\u308b\u524d\u306b":145,comment:[186,79,178,126],grn_update_not_allow:2,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":94,log_repoen:7,test_str:180,"hook\u306e\u5b9f\u884c\u9806\u4f4d":94,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":98,"\u52c9\u5f37":85,json:[86,156,7,28,107,81],grn_obj_table_no_kei:[64,114],grn_table_group_flag:114,grn_ii_cursor_set_min_en:78,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":180,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":98,"\u4f8b\u3048\u3070":[71,170,80,98,145],bulk:[78,39],multi:[133,9,78,28,192,81,195],plain:[78,110],defin:[3,152,46,190,115,175,78,178,179],buildabl:28,replies_cont:79,ill:145,"\u8ffd\u52a0\u3059\u308bse lector\u 30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":180,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":89,kernel:[7,140],caplit:[126,81],grn_plugin_mutex_open:41,power8:81,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":170,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":74,too_many_open_files_in_system:175,japanes:[0,185,133,26,7,152,85,179,81,120],"pc\u306bgroonga":148,auth_bas:[9,55],utop:[14,153],optarg:[57,84],hostnam:[170,98,7,9,37,175],"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":74,column_nam:59,grn_column_name_key_len:122,document_index:[163,48],francisco:76,"\u4f5c\u6210\u3057\u305f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea \u30b9\u 30c8\u3078\u3068\u6d41\u3057\u307e\u3059":153,center:[133,171],builder:87,"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":153,choos:[109,13,98,59,9,85,81,181],error_cod:41,update_not_allow:175,"1byte":175,usual:[13,78,79,65,16],unari:126,logical_select:[56,32,44,78],"5\u30ea\u30ea\u30fc\u30b9":78,"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,takayuki:28,gmo:81,"30ac":193,lake:93,add:89,"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":153,grn_ctx_at:[7,16],match:138,"\u4e3b\u306b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u58ca\u308c\u305f\u5834\u5408\u306a\u3069\u7570\u5e38\u6642\u306e\u554f\u984c\u89e3\u6c7a\u306e\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":127,grn_obj_table_pat_kei:[64,114],"\u3067\u306f\u306a\u304ffree":156,grn_obj_path_b y_id:[80 ,113],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":84,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":80,substit:109,"\u8ffd\u52a0\u306e\u5c5e":74,insert:[7,3,33],like:[93,129,96,98,26,9,192,55,56,109,76,152,86,155,60,158,160,122,123,186,78,179,81,181,185,131,188,85],success:[41,84,5,16,17,39,122],groongau0000ful:85,grn_obj_id:80,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":80,"shorttext\u306e\u30d9\u30af\u30bf\u30fc\u3092\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u4f7f\u7528\u3057\u305f\u3044\u5834\u5408\u306b\u306f":46,"\u3067\u4e0d\u6b63\u306ajson\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u305d\u308c\u4ee5\u964d\u30b3\u30de\u30f3\u30c9\u3092\u53d7\u3051\u4ed8\u3051\u306a\u304f\u306a\u308b":156,"com\u304cedge\u3092\u4f5c\u308b":135,socket_is_already_shutdo wn:175,s oft:140,snippet_html:[56,44,126,7,162,81],normalizer_list:[56,32,81,44],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":159,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,specfi:111,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":84,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":159,proper:[136,188,23,81],grn_column_cr:122,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":170,tmp:[3,153,132,155,96,98,126,60,103,106,181,178,55,175],"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":170,"\u30af\u30a 8\u30ea\ u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":71,"\u3053\u306e\u3088\u3046\u306btokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u91cd\u307f\u3092\u9ad8\u304f\u3059\u308b\u3053\u3068\u306b\u3088\u308a":71,"repositories\u914d\u4e0b\u306b":153,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":71,host:[170,98,175,28,82,103],although:9,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":153,"\u30c0\u30e1\u30fc\u30b8":71,sbin:90,actual:[23,166,12,13,143,126,9,63,3,81],socket:7,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":16,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":122,"bench mark\u54 7d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":170,"mooz\u3055\u3093\u304c\u4fee\u6b63":28,lifecycl:82,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":[89,174],tomo:45,discard:126,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":170,syntax_error:175,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059":70,dataset:[53,56,126,44,155],"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":71,guard:123,"\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u6 96d\u309 2\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":153,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":71,ayumu:81,conbind:185,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679cn":109,rch:91,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":11,hatak:[78,81],"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":61,glib:126,unexpect:[7,81],brand:78,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[89,174],"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":122,uninstal:7,bug:89,grn_obj_set:80,dump_record:78,binlib:153,"point\u578b\u306e\u5024":[35,171],tokenmecab:[7,169],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_output_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,epel:[7,130],"shimada\u3055\u3093" :156,col um:79,dure:[7,3],pid:[28,1,192,98,78],saer:[155,18],grn_too_small_limit:2,implement:[69,43,23,152,129,123,95,109,7,76,9,37,146,28,78,195,81,120],pip:20,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":114,probabl:155,"\u305f\u3060\u3057":[64,98,145,61],detail:[41,142,91,3,46,7,9,10,150,192,167,109,152,86,13,14,116,96,66,22,47,170,126,75,140,78,177,81,181,130,185,131,133,154,191,36,37,89,120],virtual:126,comment_nam:186,grn_expr_create_for_queri:70,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":170,is_a_directori:175,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[64,121],grn_obj_flag:[41,183,114,39,122],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":141,sergei:81,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":70,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":71,"\u6539\u826f":78,"\u8aa4\u3063\u305f\u30b3\u30f3\ u30d1\u3 0a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3042\u308a\u307e\u3059":153,tweet:[115,26],umask:81,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":11,concret:[45,79,131],"\u554f\u984c\u306fgroonga":170,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":64,everi:131,risk:81,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":89,"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":98,"24byte":175,grn_encoding_to_str:124,not_a_directori:175,x86_64:[130,153],properti:[150,14],naiv:131,not_enough_spac:175,direct:[7,126],"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":122,aim:126,hide:126,introspect:7,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":74,"obj\u306e\u5360\u6709\u30 59\u308b db\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":80,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":70,"82pre":43,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,grn_tokenizer_query_open:7,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":180,studio:[7,78,102,126],path:[153,138,20],"\u3067\u914d\u5217\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,httprewritemodul:9,"\u95a2\u4fc2\u5f0f":89,functin:152,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":114,precis:[136,3,153,133,46,14,7,85,179],"\u306e3\u30d5\u30e9\u30b0\u306f":64,"\u30b5\u30f3\u30d7\u30eb\u5185\u306e\u30b9\u30af\u30ea\u30d7\u3 0c8\u306 b\u5b9f\u884c\u5c5e\u6027\u304c\u3064\u304b\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":148,orilldown:131,portabl:[28,9,126],"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":70,"\u7bc4\u56f2\u5185\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u6709\u52b9\u3067\u3042\u308b\u3068\u306f\u9650\u308a\u307e\u305b\u3093":80,describ:[41,0,91,3,12,93,134,96,98,47,49,102,51,104,146,143,192,128,167,109,110,152,86,14,59,123,60,18,118,62,20,181,162,66,164,69,50,23,166,24,63,53,189,186,175,78,79,178,179,81,82,130,193,185,137,188,31,32,136,154,138,140,89,120,85,90],noarch:[167,130],"groonga\u306e\u7d44\u8fbc\u578b\u304b":74,namebuf:[80,122],autogen:[7,153,120],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":46,"msg\u306fcom\u306b\u3088\u3063\u3066":135,chracter:[193,33,66],"arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u30 6a\u3055 \u308c\u307e\u3059":70,"grn_op_but\u306f":70,grn_obj_with_sect:122,join:26,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":145,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":171,overrid:192,enourm:49,dump_schema:78,end:[182,76,152,185,181,85,4],eng:[155,179],vagrant:153,hiragana:[179,85,185,152],env:178,rroonga:[12,186,163,126,48,17,116,101,160,149,78,79,81,82],grn_content_non:107,tablenam:11,grn_set_default_command_vers:117,befor:[22,109,3,5,86,13,113,7,172,18,9,181,10,192,178,179,118],"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":11,parallel:133,exclud:[59,143,166,97,126,7,159,63,23,81],environ:[130,113,126,102,9,138,78,28,192,178,81,82],enter:[3,126,175],composit:193,over:[133,163,126,7,103,168,78,81],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3064\u3 06b\u306 f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,becaus:[142,3,4,12,129,95,49,7,101,9,10,55,92,167,109,152,13,115,116,60,18,144,181,66,22,45,165,23,123,74,172,175,97,78,79,178,179,81,82,185,186,132,133,33,136,140,193,85,195],london:76,gqtp:[182,56,130,2,167,133,14,98,126,34,7,154,191,170,78,81],"\u304bwgs84geopoint":[35,171],digest:55,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":11,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":156,oneir:[28,126],"table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c 8\u3057\ u307e\u3059":70,choic:133,grn_pat_at:156,each:[91,143,12,95,96,49,150,9,104,78,3,192,109,152,86,13,155,59,116,18,63,169,45,27,23,166,168,163,126,175,28,100,179,131,132,133,138,36,39],searc:179,"0\u30ea\u30ea\u30fc\u30b9":78,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"groonga\u306e\u30ab\u30e9\u30e0\u306f":46,goo:[185,152],msgpack:[4,55,175],"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,newli:[115,133,33,17,128,81],"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":112,got:[126,81],"\u69cb\u9020\u4f53\u306e\u914d\u5217":54,"offset\u306f":114,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":127,filter:[56,44,86,14,126,7,154,173,157,78,28,81],"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":153,"16gib":140,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":170,score_column:122,onto:14 0,rand:[ 56,162,44],rang:[56,109,72,96,126,7,60,78,81],"\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306ekey\u30b5\u30a4\u30ba\u3068\u540c\u3058\u304b\u8d85\u3048\u308b\u5e45\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":64,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u306f":153,edit_dist:[56,1,162,44],restrict:[7,103,55,126],alreadi:[41,115,91,3,59,19,140,79,65,81],"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":80,primari:[59,56],"\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093":125,"\u3092\u4f7f\u7528\u3057\u307e\u3059":153,"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":80,top:[111,131],mercuri:153,too:[109,152,86,13,126,78,79],tom:116,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[89,174],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u305d\u308c\u305e\u308c\u306b\u304a\u3044\u30 66\u30d1 \u30c3\u30b1\u30fc\u30b8\u3084\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3092\u884c\u3044\u307e\u3059":153,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"path\u3092":156,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":127,tood:41,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":159,tool:[56,82,138,20,15,120],"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":106,user_ag:97,wareohji:7,grn_obj_set_valu:[64,80],ga54c5f8:170,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":28,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":153,expr:39,obata:[28,156,126,78],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\ u3089\u3 0af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":70,blog_bodi:71,rab:[75,3,131],indexblog2:79,"column_list\u30b3\u30de\u30f3\u30c9":1,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":106,ram:170,raw:[126,82],"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":71,with_sect:[74,188,79,96,81],unresolv:28,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":145,hanako:173,bad_file_descriptor:175,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":153,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[114,122],fuzzi:66,though:[23,133,126,7,79,179,81],"\u3044\u307e\u3059":125,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a \u53f7\u 3092\u6307\u5b9a\u3057\u307e\u3059":170,grn_db_recov:[84,81],"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":114,"16bit":46,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":70,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":153,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":170,mininum:142,flow:89,abbrev:76,radix:152,"0\u30d9\u30fc\u30b9\u3067":[64,114],abl:[123,29,33,12],random:75,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":11,pkg:[130,24,156,7,28,192],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":159,"\u3067\u4f5c\u6210\u3057\u305f":16,"\u3082\u3057\u304f\u3 06f":[64 ,46,114],absolut:[22,177,10],top_left_point:111,configur:[89,180,153,120],"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":153,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":80,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":170,"\u542b\u3081\u308b\u3082\u306e":153,item_queri:[155,18,179,190,49],label1:[109,81],label2:109,watch:153,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":98,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":74,normalized_text:134,reconstruct:81,"\u4e3b\u306bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":83,method:[3,126,9,78,37,85,179],twice:[109,185],hendro:126,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u 51fa\u52 9b\u3055\u308c\u307e\u3059":11,"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":156,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u3067\u306e\u30af\u30a8\u30ea\u30d1\u30bf\u30f3\u306b\u8fd1\u3044\u30af\u30a8\u30ea\u3092\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":182,"drilldown_limit\u306b\u3088\u3063\u3066\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":109,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":25,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":153,nul:[41,28,85],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":70,"cursor\u306e\u30ab\u30ec\u30f3\u30 c8\u30ec \u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":64,grn_plugin_error:41,databas:[164,95,46,98,7,9,10,106,78,192,56,152,114,16,17,60,62,160,169,59,65,66,22,27,159,126,28,80,81,185,96,84,132,133,33,190,137,140,193,195],"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":170,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":80,algolithm:160,approach:76,exec_format_error:175,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":98,weak:[133,33],grn_invalid_argu:[64,114,2,80],fault:7,"4gib":[95,175],facet:109,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":64,content_index:12,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":153,trust:153,id_column:122,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":98,evalud:146,been:[60,153],"\u3072\u308d\u3042\u304d":144,accumul:109,geo_distance2:[28,76],geo_distance3:[28,76],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3 \u30d7\u 30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":153,quickli:115,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":161,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":1,msec:[28,19],xxx:[98,126,81,152],"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":122,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":170,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":1,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":145,"grn_op_or\u306f":70,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":89,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[114,122],message_index:123,suggest:[56,44,156,32,126,148,7,78,28,192,113,81],"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":156,complex:[7,109, 181,126, 152],unix_time_when_command_is_start:136,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,niku:81,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":54,complet:[22,56,44,132,155,126,51,10,28,177,113],"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":114,sen_index_delimit:43,"44001770019531e":4,"\u30b3\u30de\u30f3\u30c9\u540d":98,quotient:152,"\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u554f\u984c\u306e\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u305f\u3089":153,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,geosit:45,"\u5024":98,no_such_process:175,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":135,els:[78,81],grn_column_name_valu:122,ceekz:126,"\u540c\u6642\u306b\u6307\u5b9a\u3059\ u308b\u3 053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":64,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":70,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":122,"mooz\u3055\u3093":28,unstabl:113,poedit:120,el5:130,escaps:[163,33,48],"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":35,log_reopen:[6,56,8,32,44],grn_obj_is_t:78,grn_plugin_mutex_unlock:41,"\u7d44\u8fbc\u95a2\u6570\u306f":[184,35,112,171,68],"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":156,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b":1,"\u751f\u6210\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u3078\u306e\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,line_cont:136,"package\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068zip\u30a2 \u30fc\u 30ab\u30a4\u30d6\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":153,core:[132,133,170,9,192,195],"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,chapter:3,surround:[7,163,33,48,152],dinner:133,ppa:[56,153,138],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":42,"\u578b":183,encod:138,two:[0,93,142,91,3,96,49,101,9,150,55,167,109,76,14,16,116,18,65,66,45,50,126,74,186,75,78,79,81,181,130,185,131,39,134,33,136,154,188,193,85,195],"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":28,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":16,version4:11,git:[105,153,120],version1:11,version2:11,version3:11,"\u30d0\u30fc\u30b8\u30e7\u30f3":153,"256gib":67,head:[182,109,9,81,175],medium:[167,130,188,14,154,102,138],logical_ta ble_remo v:[56,32,44,78],removep:80,drilldown_sortbi:157,"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":64,deafult:28,grn_expr_estimate_s:78,autoconf:28,grn_expr_syntax_escape_queri:39,openbsd:78,trie:[56,3,185,95,126,7,78,28,152,158,66],decrypt:153,bad_address:175,check:[56,2,84,44,136,156,32,126,7,180,78,105,28,80,153,81],ongaeshi:[7,78,126],"clearlock\u306f":108,successfulli:[41,3],"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":127,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":70,"\u63a5\u7d9a\u5148\u30b5\u30fc\u30d0\u304c\u4f7f\u7528\u4e2d\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":170,when:[3,144,129,98,7,101,9,10,78,109,76,86,155,59,116,20,181,66,22,45,122,126,74,186,110,175,28,179,81,185,84,132,133,136,188,140,89,193,85],groong a_dist:7 ,tid:121,saerch:[155,18],rid:87,node:[7,78,130,153,82],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,grn_op_and_not:57,consid:[45,142,23,92,55,79,81,66],sql:[109,23,131,12],faster:[129,126,28,192,85,81],top_left:[28,35],"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":61,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":145,backward:[7,78,128,81,55],grn_obj_table_dat_kei:28,"6\u30ea\u30ea\u30fc\u30b9":78,grn_db_float:78,focus:3,llt:91,memo7:12,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":171,row:[133,33],"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":74,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":153,readabl:[113,81],"\u554f\u984c\u3042\u308a": 28,juman d:167,sourc:[56,153,88,138,20,120,82],"\u306b\u8a2d\u5b9a\u3059\u308b":153,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":170,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":121,"6elz":81,"\u3092\u8fd4\u3057\u307e\u3059":[64,94,114,80],"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":61,level:[41,131,6,98,126,7,8,9,150,65,81,175],brother:185,fbnteqr:78,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":122,slower:[123,76,131,12],"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":127,port:[142,43,4,132,170,175,98,126,81,103,37,90,55,9],repli:[188,79],"64bit":46,arg1_valu:181,"sh\u306e\u307f\u306a\u3089\u305a":180,grn_expr_append_const:[70,39],grn_table_get:[114,113],"\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3057\u307e\u3059":83,connection_refus:175,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u6 5b0\u309 2\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":153,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u89e3\u6d88\u304c\u5b9f\u884c\u3055\u308c\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":80,grn_not_a_directori:2,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":153,normalizeauto:163,"\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u95a2\u4fc2\u306a\u304f\u5e38\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u306b\u306a\u308a\u307e\u3059":109,"1st":97,grn_table_cursor_clos:64,"string1\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u3068string2\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u306e\u9593\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u6c42\u3081\u307e\u3059":112,daiki:[7,28,156,148],"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u30 59":11,g rn_obj_clear_lock:[28,80],file_exist:175,vivid:[78,14,153],memori:[41,17,130,156,56,14,74,126,167,16,7,154,102,138,78,28,181,81,66],"net\u4e0a\u3067\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c":153,todai:133,"\u30b5\u30fc\u30d0\u304c\u81ea\u52d5\u7684\u306b\u306f\u8d77\u52d5\u3055\u308c\u306a\u3044\u306e\u3082\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u5834\u5408\u3068\u540c\u69d8\u3067\u3059":170,criteria:3,capit:3,target_charact:39,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":156,proxy_cache_path:9,entries_key_index:[140,109,185,152],lc_messag:120,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":171,purpos:[23,86,126,116,103,3],"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":156,stream:81,backslash:[39,126,185],criti c:[7,41, 192,98,150],satoh:28,alwai:[109,175,185,133,96,136,155,9,140,78,179,81,152],grn_table_update_by_id:114,grn_plugin_isspac:41,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u3082bigram\u3092\u751f\u6210\u3057":145,clone:[105,89,153],"4th":109,key_with_si:[144,152,185,66],"\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b":156,ueno:[7,28],predic:78,inform:[22,17,69,150,56,133,45,109,26,126,7,10,146,78,193,113,96,158,120],combin:[109,133,7,116,97,81,66],"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":71,midnight:152,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":170,mainli:[188,81],"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\ u6307\u5 b9a\u3057\u307e\u3059":114,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":94,platform:[138,120],meridian:76,cutter:[180,153],"\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584":1,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":35,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":153,"\u6b21\u306b":70,"\u691c\u7d22\u6761\u4ef6\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3057\u305f\u65b0\u305f\u306a\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":[157,98],"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":80,term:[67,74,109,185,127,133,163,98,33,48,126,7,116,78,81,47],name:[41,44,96,7,54,56,16,114,120,122,183,124,73,126,74,127,28,80,113,81,84,133,136,39], "\u65e5\ u3005":125,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":64,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":70,no_memory_avail:175,request_id:[36,104],osanai:81,grn_itoh:28,grn_bool:80,grn_table_delete_by_id:[78,114],end_tagn:163,"base_version\u306ftar":153,"groonga_clone_dir\u306b\u3066autogen":153,profil:188,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":74,compre ss_zlib: 74,"65535byte":78,partit:23,migrat:[109,185,81,152],"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":70,ruby19:7,"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":16,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":98,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":170,"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":153,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":109,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":80,place:[188,192,26],sho:[126,81],"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":106,origin:[109,126,136,191,159,107,81,120],"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u30671\u4ef6\u3082\u30d2\u30c3\u30c8\u3057\u306a\u3044\u5834\u5408\u3067\u3082\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306a\u30 69\u3092 \u884c\u3044\u307e\u305b\u3093":71,redhat:[28,192],arrai:[136,109,27,185,86,96,134,33,7,127,91,169,28,81,66],"64kib":78,string_siz:39,given:[7,45,126,116],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u306b\u5fc5\u8981\u306a\u79d8\u5bc6\u9375\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u306b\u3064\u3044\u3066\u306f":153,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":28,domain_error:175,circl:[133,93],white:[85,3,185],"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":121,grn_table_add:114,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":180,copi:[7,41,60],specifi:[41,91,143,96,98,47,7,9,104,10,146,72,192,54,56,109,111,86,155,16,59,60,159,63,65,66,22,120,69,23,166,126,74,173,118,97,78,128,177,113,81,84,132,133,134,190,136,137,37,38,90],"\u30d1\u30a4\u30d7":74,"\u521d\u671f\u5316\u6e08\u307f\u306e":84,enclos:[59,3],pragma:109,calro:97,wide:[28 ,192,3,1 81,133],"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":80,"\u524a\u9664\u3057\u305f\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u304b\u3089id\u9806\u306b\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c":156,"\u65e5\u672c\u8a9e\u306e\u52c9\u5f37":85,grn_table_cursor:[56,31,121,44],"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":61,"windows\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,posix:[78,152],posit:[41,109,2,3,111,86,96,47,91,85,81],grn_column_index:122,seri:3,kazuhiko:[7,81],ann:153,ani:[91,12,46,98,47,48,9,146,192,55,109,155,59,116,69,163,186,78,178,130,185,133,134,33,85],grn_unsupported_command_vers:2,grn_obj_set_mask:80,techniqu:[123,12],operation_ti meout:17 5,moreov:75,"\u691c\u7d22\u7d50\u679cn":109,"\u306b\u306a\u308a\u307e\u3059":16,sure:3,multipli:152,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":180,geoindex:45,time_column:170,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":70,"com\u306f1\u30b9\u30ec\u30c3\u30c9":135,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":98,grn_table_cursor_set_valu:64,"textile\u30d1\u30fc\u30b5\u30fc":153,permiss:[192,81],sitecountri:[103,131],explicitli:[7,78,9,20],"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[71,145],state:[7,76,175,173,129],analyz:[7,28,85,9,133],grn_obj_column_vector:122,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[56,40],"\u3 092\u630 7\u5b9a\u3057":[64,38,108],"45ea3034":150,ssh:153,takatsugu:81,"\u8a73\u7d30\u306f":[71,180],pipermail:81,reveal:133,"\u542b\u3081\u306a\u3044\u3082\u306e":153,tokenfilterstopword:[78,47,81],bison:153,grn_geo_select_in_rectangl:[28,111],"shibuya\u3055\u3093\u304c\u5831\u544a":156,"\u9014\u4e2d\u3067\u5931\u6557\u3059\u308b\u3053\u3068\u3082\u3042\u308b\u306e\u3067\u9806\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":153,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":80,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":114,"ongaeshi\u3055\u3093":156,"\u8b66\u544a\u3092\u9664\u53bb":156,detect:[7,28,91,9,192],"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":125,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u3 0f3\u30b 0":153,grn_query_expander_tsv_synonyms_fil:178,grn_db_register_by_nam:148,"59\u74b0\u5883\u306b\u304a\u3044\u3066":28,come:[93,188],"\u63a5\u7d9a\u3059\u308bgroonga":170,region:[93,75],quiet:175,grn_default_logger_set_rotate_threshold_s:78,reference_vector_column:126,"\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u306e\u306f\u5168\u6587\u691c\u7d22\u6642\u306b\u8907\u6570\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3089\u3067\u3059":71,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u306e\u5834\u5408\u306ftokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306a\u3069\u3082\u5229\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":71,"\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u751f\u6210\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,color:193,whombx:126,period:78,pole:76,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1 \u30a7\u 30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":80,grn_ctx_use_ql:81,"ueno\u3055\u3093":[156,148],lexicon2:79,item_exampl:179,log_put:[6,56,32,44],"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":153,frequency_threshold:[28,155,18,179,49],"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":156,"s3ki\u3055\u3093\u304c\u5831\u544a":156,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[80,122],not_socket:175,grn_command_version_max:117,"case":[41,84,86,126,16,17,78,28,192,81],"\u3042\u308a\u307e\u305b\u3093":[83,106,194,141,161],cast:[7,28,113,126],grn_db_open:84,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,favorited_bi:188,grn_expr_alloc:39,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d \u6761\u 4ef6\u3092":70,"define_selector\u306f":157,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":114,query_s:39,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":153,saerc:[155,18],"4\u884c\u76ee":170,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":122,author:9,alphabet:[109,91,18,85,81,66],users_index:188,grn_get_default_match_escalation_threshold:25,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":70,grn_cursor_rk:64,"\u5f37":85,expresss:160,messagepack:[192,7,78,28,107,113],status:[2,175],nest:[56,126,7,81,78,158],"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":98,"\u6587\u5b57\u5217\u304c\u8fd4\u3055\u308c\u307e\u3059":109,"_nsubrec":[45,109,122,131,188,61,81],"suggest\u30b3\u30 de\u30f3 \u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":28,immedi:[133,9,104,78],"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[89,174],"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":64,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[35,114,171],sed:[7,28,78],overcommit_memori:7,without:[143,49,7,9,10,109,152,86,115,116,63,22,23,166,126,186,118,78,113,179,81,181,185,133,33,195],model:[98,175,81],"lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0":156,"4kib":78,"\u3067\u78ba\u4fdd\u3057\u305f":16,"groonga\u3092build\u3059\u308b\u969b\u306b":83,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":64,rose:13,except:[167,93,69,91,185,86,95,109,33,7,101,9,140,146,28,181,85,81,66],blog:[56,109,185,153,71,115,186,79,158,152],vu lner:81, hino:126,hyphen:[3,66],grn_obj_nam:80,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":98,grn_table_cursor_open:[64,156],realtim:[155,49],with_typ:134,madrid:76,grn_rc:[41,42,80,84,5,94,87,124,114,16,17,25,117,111,19,64,57,39,54,122],unrecover:84,easili:81,grn_cache_current_set:17,freed:[17,81],nosuchfileordirectori:78,garbag:[28,126,81,127],inspect:[78,126,81],n_tabl:16,tokenbigramsplitsymbolalpha:[169,109,91],"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[80,122],"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":84,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":156,stand:129,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":11,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":153,tokentrigram:[169,78,91],max_siz:64,libmecab:[154,14,153] ,"\u30aa \u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":127,rescord:160,strict:[78,81],interfac:[7,132,3,4],chracterist:95,regard:[37,126,185],jun:[78,81],grn_obj_key_var_s:183,untag:110,longer:[43,16],notat:[7,126,152],"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":80,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u6a19\u6e96\u30a8\u30e9\u30fc\u51fa\u529b\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057":11,grn_expr_creat:39,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":153,"http\u7d4c\u7531\u3067\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u6642\u306b\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b":156,strongli:[167,130,14,154,102,138],"a\u3092\u6307\u5b9a\u3057\u3066 tabl":11 4,user_column:170,incorrect:81,grn_db_text:39,grn_index_cursor_next:[121,126],gettext:[120,20],orient:[13,133,33],rdbm:98,oneself:81,symbol:85,remove_tokenized_delimit:134,"\u30b5\u30fc\u30d0\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u5229\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":170,allow_upd:[109,185],comments_loc:188,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":125,directori:[41,132,126,7,9,78,28,192,178,65,81,120],potenti:126,"\u30c7\u30fc\u30e2\u30f3":98,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":16,all:[91,3,92,95,46,69,49,7,9,10,146,150,78,192,55,115,109,111,152,86,193,16,59,60,159,160,96,66,22,165,122,47,175,97,28,128,179,81,181,188,185,133,137,36,140,120,85,118],grn_table_column:114,dist:153,"ctx_new\u3068\u3044\u3046queue\u306b":135,scalar:[56,72,44],follow:[41,93,91,3,4,12,129, 46,98,48 ,49,7,102,9,78,149,52,192,163,55,109,76,5,86,13,155,59,116,60,18,181,20,169,152,65,66,67,45,27,122,123,168,150,126,172,26,140,28,178,179,81,82,96,185,131,186,132,134,33,190,136,37,120,85,175],disk:[78,79,181,66],ptr:[41,156],item_:155,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":156,init:[7,192,54,81,126],program:[152,132,96,98,126,7,191,9,65],"\u95be\u5024\u3092\u8d8a\u3048\u308b":71,neglig:81,liter:[185,163,33,48,126,7,28],replic:12,"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":71,libgcc_s_sjlj:81,rand_max:68,systemctl:142,failur:[7,78,19,81,153],"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":61,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":64,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\ u308b\u3 053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":98,longtext:[46,111],"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":153,"\u304a\u3088\u3073":153,"help\u3067\u51fa\u529b\u3055\u308c\u308b":28,yappo:[43,126,81],name_s:[41,122,183,16,114,80,39,54],tex:91,rate:[126,97],design:[7,13,109,129],sug:172,what:[56,44,155,186,39,181],sub:[133,153],sum:[109,81,12],"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":122,libstemm:81,themselv:[178,120],noraml:91,bottom_right_point:111,behaviour:[126,159],shouldn:81,solari:[56,138],n_var:41,grn_ctx_init:[28,16],serihiro:7,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":194,memcach:[133,191,56,34],matsuu:156,grn_bad_address:2,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":89,grn_ctx_get_output_typ:16,gtihub:28,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":125,"\u30c6\u30b9\u 30c8\u75 28\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":71,tokenunigram:169,"\u30ea\u30ea\u30fc\u30b9\u65e5":153,deprec:[109,11,98,126,7,76,10,28,108,81,66],ocelot:[28,126],suddenli:126,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[28,156],"vagrant\u3067\u4f7f\u7528\u3059\u308b\u4eee\u60f3\u5316\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":153,"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":153,"\u4ee5\u964d\u3092\u7121\u8996":156,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":156,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[56,40],"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":46,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":157,grn_syntax_error:2,src_key_siz:114,flag:[41,74,121,122,86,183,96,113,114,16,7,127,60,64,28,80,39,81],"op\u306 e\u6307\ u5b9a\u306b\u5f93\u3063\u3066res\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3042\u308b\u3044\u306f\u524a\u9664\u3057\u307e\u3059":57,known:[23,152,12,133,33,126,103,3],"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":94,"2\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3059":46,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":98,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":108,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":170,mecab_strerror:81,omit:[22,109,91,3,4,95,136,137,76,10,28,177,179],grndb:[53,56,81,44],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_sortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,cours:131,newlin:[28,113,78],divid:[13,133,152,123],rather:[109,12,86,123,96,129,115,78,29,85,181],rep_loc:170,divis:81,cmp0014:81,resourc:[115,81,5,16],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[38,108],"buf_size\ u306b\u6 307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":122,overcommit:140,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":122,"\u6307\u5b9a\u3059\u308b":84,resours:17,"request\u3092\u9001\u308a\u307e\u3059":153,"short":[9,86],geo_dist:[56,44,126,7,28,162],postfix:[143,23,166,63],caus:[185,13,126,7,78,28,152,81,66],"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":80,mailarch:153,yahppo:126,grn_table_trunc:[28,114],logal:82,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":114,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":156,style:[78,81],"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":16,soccer:45,"return":[41,17,111,44,5,56,124,32,126,16,7,114,19,122,78,136,28,80,39,81,84],normalzi:16 3,grn_ta ble_sort_asc:114,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":70,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":122,refresh:45,innodb:133,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":141,"table_remove\u306f\u30c6\u30fc\u30d6\u30eb\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":147,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304claunchpad":153,friendship:45,truncat:[56,122,44,32,126,137,78,28,81],"windows\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,grn_text_vprintf:81,weight:[7,56,126,81],needless:[7,78,113,126],yoshida:126,expect:[13,85,81,181],errror:181,"b\u3092\u4f5c \u6210\u 3057\u305f\u5834\u5408":114,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":80,socket_is_not_connect:175,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[114,80],footnot:[76,3],"\u5186\u5468\u4e0a\u306e\u70b9\u306e\u4e00\u3064\u306e\u5ea7\u6a19\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":171,"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":28,advanc:[69,43,143,23,146,78],differ:[0,109,76,4,12,132,13,185,7,116,75,81,181,78,79,152,85,55,66],content_type_len:7,thread:[41,84,132,133,98,126,16,137,55,150,81,122],"\u306exml\u51fa\u529b\u5bfe\u5fdc":156,"\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059":70,"table\u 306b\u76 7b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":114,grn_selector_func:81,"apt\u306e\u5834\u5408":153,notifi:104,feel:81,groonga_database_auto_cr:[7,126],blank:[78,193,85],"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":170,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":145,gpl:43,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u3064\u3044\u305f\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u7d50\u679c\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":156,script:[56,44,126,7,78,192,39,81,82],goronga:102,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":153,gpg:153,exclude_t:126,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":180,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u524d\u306e\u30ad\u30fc\u30ef\u30 fc\u30c9 \u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":145,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3068tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u6319\u52d5\u304c\u5909\u308f\u308a\u307e\u3059":145,statement:152,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":153,"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":42,"version\u3067\u8868\u793a\u3055\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u304c\u66f4\u65b0\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059":153,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[80,122],kind:[3,92,131,133,46,75],similar_search:[7,155],remov:[165,84,24,126,7,13,173,9,10,28,78,80,113,81,47],xxx_201506:78,rep_http:170,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u5 2b9\u306 8\u306a\u308a\u307e\u3059":170,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":180,grn_post:[111,121],ruby_ev:[56,32,126,44],expir:[78,9,118],"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":125,"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":170,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":46,grn_directory_not_empti:2,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":156,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":98,"mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584":1,"\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059":184,operation_would_block:175,park:188,function_not_impl:175,"_id\u306 e\u5024\ u306f\u4e0d\u5909\u3067":61,reach:140,keyword_s:39,"\u30e1\u30fc\u30c8\u30eb":171,grn_obj_incr:80,latitude_in_degre:152,"name_size\u30d1\u30e9\u30e1\u30fc\u30bf\u304c0\u306e\u5834\u5408\u306f\u3059\u3079\u3066\u306e\u30ab\u30e9\u30e0id\u3092\u683c\u7d0d\u3057\u307e\u3059":114,grn_column_name_kei:122,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":171,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":71,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[147,6,73,8,157,194,108],penalti:126,firewood:[7,126],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":16,underflow:13,grn_plugin_fre:41,hit:[109,160,126,144],pair_queri:[155,18,179,190,49],"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":114,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":98,lon gest:[28 ,114,152],"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u8a9e\u306e\u30d2\u30c3\u30c8\u6570\u304c\u591a\u3044\u305f\u3081":71,grn_column_name_nsubrec:122,grn_obj_persist:[114,122],"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3068\u540c\u7b49\u3067\u3059":145,grn_success:[41,109,2,84,5,16,17,19,150,39,122],armhf:81,"\u6570\u5024":145,"\u30b3\u30df\u30c3\u30c8":153,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":89,art:[188,152],dump:[56,44,156,32,126,7,78,28,107,81],highight_ful:163,ff01:78,arc:91,tobbi:116,grn_obj_with_weight:122,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":122,jemalloc:81,grn_table_differ:114,"\u5fc5\u8981\u306a\u66 42\u4ee5 \u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":156,"js\u306a\u3069":153,latin:98,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u304f\u308b\u3053\u3068\u3092\u6291\u3048\u3064\u3064\u518d\u73fe\u7387\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":71,succeed:[2,3,74,137,173,128,192],"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":156,solv:[13,123,12],solr:152,socket_not_initi:175,"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":182,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":71,context:[33,16,17,186,9,28,80,39],"1x139":13,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":122,grn_table_sort_flag:114,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":98,grn_no_such_devic:2,"\u5f53\ u8a72\u3 0d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":11,additional_configure_opt:126,"\u5f93\u3063\u3066":109,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":94,f10399c0:153,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":171,conifugr:82,grn_file_exist:2,beforehand:167,close_tag1:163,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":170,packag:[56,130,153,167,154,138,90,120],"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":170,nakai:126,abov:[3,92,49,7,101,102,9,104,192,109,110,116,18,120,23,186,75,97,78,79,178,179,82,193,131,132,188,66,85],kana:[155,18,179,190,49],input_file_nam:136,xvzf:[167,130,24,14,154,192,90],"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":71,"benchmark\u7d42\u4e86\u5f8c\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u306f\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059":170,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30 b9\u306e \u65e5\u4ed8\u3092":153,table_buff:16,score_valu:78,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":170,minim:[9,97],grn_obj_column:80,"\u5065\u4f5c":45,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":156,higher:[155,109],"\u975e\u4e92\u63db":28,x86:[28,102,78],"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":127,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":170,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":145,lower:[109,91,3,66],"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":170,searchabl:[115,78],"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":114,propos:[172,109],table_:[95,66],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u30 7e\u3059 ":68,"3\u884c\u76ee":170,northern:7,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":70,teruya:78,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":80,grn_plugin_get_system_plugins_dir:28,table2:114,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":70,table1:114,docutil:153,retry_max:175,collect:[136,133,188],"\u3042\u3089\u304b\u3058\u3081groonga\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304a\u304f\u3068\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u5186\u6ed1\u306b\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089" :70,"\u3 05d\u306e\u6642\u70b9\u3067stable\u3067\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":11,global:[7,56,31,126,44],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":11,invalid_format:175,"log\u3067\u3059":98,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[42,84,94,80,54,119,122],blog_titl:3,retri:19,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":153,leftmost:152,form_1:3,form_2:3,"\u7591\u4f3c\u30ab\u30e9\u30e0":61,squeez:[126,153],maximium:109,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":64,plai:[133,92],"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":16,dialog:126,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":170,grn_cache_current_get:17,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308 a\u51fa\ u3057\u307e\u3059":64,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":194,"\u3059\u3079\u3066\u306e\u95a2\u6570\u304c\u30c6\u30b9\u30c8\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u304f\u3060\u3055\u3044":180,shimoda:156,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":153,question:[78,79],live:[188,66],"long":[104,87,126,62,25,78,81,66],adjac:[85,185],arithmet:126,"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":170,grn_proc_get_info:54,wno:28,"436218z":152,"\u554f\u984c\u3092\u4fee\u6b63":156,aramaki:28,piro:81,consist:[109,3,185,49,175,78,85,81],"benchmark\u306f":170,caller:54,"\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u9069\u7528\u3059\u308bgrn_expr\u3092script\u5f62\u5f0f\u3067\u6307\ u5b9a\u3 057\u307e\u3059":109,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":98,test_text_otoj:180,highlight:[163,48],radious_or_point:171,vojtovich:81,"\u3059\u308b\u3068groonga":153,horikoshi:28,unauthent:[7,154],grn_expr_append_const_int:39,"\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":145,grn_socket_not_initi:2,oniguruma:78,"man\u3092\u8ffd\u52a0":1,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":156,weight3:86,weight2:[7,109,86],weight1:[7,109,86],comments2:79,grn:[9,159],gro:[132,33],"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\ u6587\u6 6f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059":145,nice:115,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":170,bookmark_titl:159,meaning:78,grn_expr_add_var:39,"\u540c\u6642\u306b":135,"\u7279\u306b\u4f55\u3082\u6307\u5b9a\u3057\u306a\u3044\u3068\u751f\u6210\u3057\u305fhtml\u306b\u57cb\u3081\u8fbc\u307e\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u304c":153,konishi:126,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u4e0d\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3059\u5834\u5408\u304c\u3042\u308a\u307e\u3059":83,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":148,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":153,lear:49,escape_charact:39,"\u7e70\u308a\u8fd4\u3057\u6570":170 ,mainstr eam:133,w64:153,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":70,"grn_expr\u306f":70,relev:[133,3],ranguba:[81,86],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u53cd\u6620\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":153,nfkc:193,pleas:[0,142,3,84,12,123,26,78,29,192,89,81,120],smaller:[76,86,133,115,150,66],memset:78,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":153,compat:[167,130,14,134,55,154,9,78,37,128,193,81],compar:[109,185,133,33,7,81],grn_plugin_mutex:41,jekyl:153,grn_info:[56,31,44],"314e":152,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,usag:[56,44,133,126,78,81],"\u30c6\u30fc\u30d6\u 30eb\u57 8b\u306f":46,larger:[109,86,95,98,33,49,175,140,78,65,81],larget:104,"_name":66,typic:[78,109],appli:[43,39],approxim:[7,28,76],"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":153,apt:[153,14,7,154,20,82],api:[89,15,191],from:[133,138,56],"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":71,usa:131,few:[109,55,195],usr:[22,177,98,9,10,192,180,90],proonga:129,sort:[93,109,56,95,126,133,155,78,28,158],grn_db_creat:84,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_limit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,tokenbigramignoreblanksplitsymbolalpha:169,memos_cont:165,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":156,"groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\ u308c\u3 06a\u3044\u3057":125,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":61,annot:126,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":94,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044":180,endian:81,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":114,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":80,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":46,grn_column:[56,31,44],tar:[167,130,153,24,14,154,192,90],tag:[56,109,153,86,96,126,7,28,81],calc_target:109,"\u30ea\u30ea\u30fc\u30b9\u6642\u3068\u958b\u767a\u6642\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u5206\u3051\u305a\u306b\u4f5c\u696d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c":153,grn_set_lock_timeout:19,pure:85,"0\u3092\u6307\u5b9a\u3057\u 305f\u58 34\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":94,six:[150,3,63],"100x100":171,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":106,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":114,instead:[93,142,92,95,98,48,7,102,9,10,78,192,108,167,109,76,152,16,160,181,66,163,126,175,28,81,82,185,33,138,193],express:[56,69,76,44,132,160,109,126,7,173,102,9,78,28,39],"\u500b\u5225\u306b\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u3067\u554f\u984c\u304c\u767a\u751f\u3057\u3066\u3044\u308b\u7b87\u6240\u3092\u5207\u308a\u5206\u3051\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":153,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":153,"load\u30b3\u30de\u30f3\u30c9":1,attent:[109,144],"db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5 358\u7d1 4\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":70,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":156,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":182,light:[60,129],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":106,"1\u884c\u76ee":170,freebsd:[56,44,78],"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":180,"\u4eac\u90fd":[71,145,85],location_in_input:136,ouput:126,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":170,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":89,"log_level\u306f":6,condtion:185,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":98,"homebrew\u3078pul":153,bye:[47,152,165,109,185],"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":98,crash:[126,7,137,60,78,28,81],"groong a\u30d1\ u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":11,"release\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067build\u304b\u3089upload\u307e\u3067\u4e00\u6c17\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":153,keys_zon:9,"\u884c":180,devel:[167,130],shinjyuku:75,successor:152,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":180,edit:[89,153],grn_socket_is_already_connect:2,nested_reference_column:109,our:[26,120],grn_obj_column_index:[121,122],"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":170,"gz\u306eversion\u304a\u3088\u3073vers":153,out:[167,130,186,14,154,102,138,105,79,81],longitude_in_degre:152,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":156,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909 \u66f4\u 70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":153,dcb314:81,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":135,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":71,grn_ctx_send:[17,107,16],"\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u308b\u3068\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059":153,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":71,york:[188,76],dictionari:[167,156,126,7,78,193,85,81],column3:12,lte:91,"\u57fa\u672c\u7684\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u8a18\u8f09\u3057\u307e\u3059":153,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":80,tokenizer_list:[56,3 2,81,44] ,"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":156,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":183,"request\u3092\u9001\u308a\u307e\u3057\u305f":153,set:[17,109,167,72,86,14,126,16,7,154,19,78,118,80,130,81,47],prioriti:[133,109,179],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":54,grn_obj_get:80,unknown:[124,113],"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,"akio\u3055\u3093":156,grn_dat_repair:113,shell:[78,192,98,185,181],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":38,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":74,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u3 0bd\u30e b\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":64,practic:[13,133,81],"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":156,"\u3092\u4f5c\u6210\u3057\u307e\u3059":74,emac:120,no_such_file_or_directori:175,collaps:7,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":125,"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":46,"4097byte":95,"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059":98,"shimada\u3055\u3093\u304c\u5831\u544a":156,grn_ii_estimate_size_for_queri:78,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":80,which:[41,142,91,3,92,5,98,47,7,146,101,103,149,143,144,167,109,76,152,13,116,63,65,45,69,23,166,126,186,75,173,175,78,79,179,81,185,131,132,133,134,191,188,110],grn_obj_delete_by_id:[28,80],"\u30db\u30b9\u30c8\u540d\u3068":170,who:[78,85,126,4 5],"100c ent":85,default_token:109,"class":[163,110,33,48],"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":153,determin:[109,3,160],"_id":[3,92,49,101,103,128,144,109,152,86,155,115,60,18,61,159,45,165,122,71,75,173,97,78,79,80,179,81,181,185,131,136,193],someth:81,grn_mecab_chunked_tokenize_en:78,"max\u3068\u7570\u306a\u3063\u305f\u65b9\u5411\u306b\u3042\u308b\u30ce\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f\u53d6\u308a\u51fa\u3057\u307e\u305b\u3093":64,word1:[7,109,185,152],word2:[7,109,185,152],memo_index:81,your_github_account:120,grn_obj_with_posit:122,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":74,local:[152,153,133,98,9,20,192,120],"150x100":35,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":145,grn_ctx_use:16,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8 868\u309 2\u69cb\u7bc9\u3057\u3066\u3044\u3066":145,subrecord:126,grn_cursor_prefix:64,candidate2:155,candidate1:155,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":170,view:[56,132,168,7,101,158],"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":153,knowledg:133,"1073741824\u306e\u6574\u6570\u3067":61,"\u5f15\u6570\u306f\u4ee5\u4e0b\u306e2\u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":98,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"10t22":18,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":64,index_tag:45,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":170,entranc:3,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,dll:[7,28,41,81],"v1\u306e\u5024\u306e\u4e2d\u306b":70,"t witter\u 306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":125,yaman:[126,81],"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":171,job:170,homebrew:[56,153,138],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":125,addit:[56,109,91,44,167,133,14,134,130,154],"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":182,april:153,"groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u6642\u70b9\u3067\u306fconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u542b\u307e\u308c\u3066\u304a\u3089\u305a":153,grn_logger_info:7,"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":156,respect:[7,13,75,188],rpm:[167,130,153,126,7,78,28,113,81],hiroaki:78,target_nam:81,"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":28,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30a f\u30b7\ u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":122,mike:173,spammer:[123,12],hmm:188,"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[35,171],roonga:[172,185,152],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":71,"\u30c6\u30fc\u30d6\u30ebentry\u306b":74,"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":171,"21th":126,cursor:[28,111],"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":61,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u9069\u5408\u7387\u306e\u4f4e\u3044\u5834\u5408\u304c\u591a\u3044\u306e\u3067":71,layer:78,customiz:33,"\u3072\u308d\u3086\u304d":144,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":153,avg:[182,109,81],"\u30b3\u30de\u30f3\u30c9\u3067\u30ad\u30fc\u304cshorttext\u4ee5\u5916\u306e\u30ec\u30b3\u30fc\u30c 9\u3092\ u524a\u9664\u3067\u304d\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":156,grn_expr_append_op:[70,39],"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":170,"\u6ce8\u610f":114,"\u5024\u304c\u5b58\u5728\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":156,difficult:133,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":71,grn_column_name_id:122,"\u7d9a\u3044\u3066":71,"0x10":175,"center\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u3092\u4e2d\u5fc3\u3068\u3059\u308b\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":171,english:[0,109,126,26,20,28,85,179,81,120],grn_content_xml:107,uzulla:28,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u305f\u6642\u523b\u306etvsec\u5024\u3092\u8fd4\u3057\u307e\u3059":83,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":1 53,do_ht tp:170,users_nam:116,obtain:41,"\u3082\u3057groonga":170,euc_jp:192,"key\u306b\u306f":114,amd64:153,book:152,host2:181,host1:181,"\u30ab\u30e9\u30e0\u578b1":109,"\u307e\u305f\u306f":170,"table\u306fcolumn\u3068\u306f\u5225\u306b":114,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":124,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":80,know:[45,109,131,188,62,78,85],press:120,"\u95be\u5024\u3092\u3042\u3052\u308b":[56,40],"\u30ab\u30e9\u30e0\u578bn":109,earch:91,incres:81,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,exceed:168,no_child_process:175,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"export":[28,126,81,20],"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":71,column_inform:96,lead:[109,3,33],grn _obj_get _nhook:94,leak:[74,156,126,7,78,28,81],"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":98,grn_address_is_in_us:2,time_stamp:150,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":122,investig:[168,126,131],acronym:[175,129],tanab:126,rare:[78,126],"\u305d\u308c\u305e\u308c":180,kanako:126,disabl:[109,156,185,132,150,20,98,126,7,9,78,28,192,113,179,81],"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":89,own:[23,152,13,133,7,39],grn_operation_timeout:2,"\u6570\u5b57":170,grn_ii:[56,31,44],"\u4f8b":[56,1,80,153],grn_id:[41,42,121,122,87,16,114,64,80,39],yuya:[78,81],automat:[22,45,3,185,95,152,9,62,10,144,78,177,120],automak:156,grn_expr_append_const_str:39,grn_default_query_logger_get_path:7,"145508000x":76,transfer:[56,142,129,133,175,158],grn_command_version_min:117,appl:193,replac:[152,190,78,181,65,81,92],"var":[41,142,70,96,98,9,62,78,192,54],"\u30ad\u30fc\u304c":98,"\u305d\u306e\u307e \u307ema ke\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":153,"\u4ee5\u5916\u306e\u5834\u5408\u306f":109,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059":70,"\u73fe\u5728":194,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":98,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":74,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":153,palallel:153,made:[7,28,3,78],tab:[78,107,178,4,175],grn_logical_range_filter_en:78,whether:[2,143,7,101,9,109,76,13,155,116,159,160,23,62,166,168,63,186,97,128,80,81,185,84],troubl:120,record:[67,56,111,23,44,86,133,126,7,114,173,159,78,28,59,39,81],below:[59,105,60,185],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":80,"\u307e\u305f\u306f\u30bd\u30b1\u30c3\u30c8\u7d4c\u7531\u3067groonga\u30b5\u30 fc\u30d0 \u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u884c\u3057\u307e\u3059":[83,147,6,73,74,127,8,157,159,161,194,106,38,141,108],"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":117,ff76:193,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":42,"8bit":46,"\u3067\u306f\u6607\u9806":114,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":153,makecach:[7,130],"\u6700\u5f8c\u306bgrntest\u306b\u3088\u308b\u5b9f\u884c\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u307e\u3068\u3081\u3066\u8868\u793a\u3055\u308c\u307e\u3059":153,other:[133,89,120,138,56],bool:[165,185,13,46,126,47,144],"command_version\u3092\u8fd4\u3057\u307e\u3059":16,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":98,"\u3059\u308 b\u3068\ u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":156,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":80,"drilldown\u6761\u4ef6\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306e\u691c\u7d22\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":109,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":11,debian:[56,153,138,20],"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":94,emerg:[6,150,8,98,9],allow_leading_not:109},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},objnames:{"0":["std","option","option"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","macro","C macro"],"4":["c","member","C member"]},filenames:["contribution/report","news/0.x","reference/command/return_code","tutorial/introduction","reference/output","reference/api/overview","reference/commands/log_level ","news/ 2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","reference/command/command_version","reference/scorer","tutorial/data","install/ubuntu","contribution/documentation","reference/api/grn_ctx","reference/api/grn_cache","reference/suggest/correction","reference/api/global_configurations","contribution/documentation/introduction","spec","reference/commands/plugin_register","reference/commands/logical_count","install/solaris","reference/api/grn_match_escalation","community","reference/commands/normalizer_list","news/1.2.x","reference/scoring_note","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","reference/command/request_id","reference/executables/groonga-server-http","reference/commands/defrag","reference/api/grn_expr","troubleshooting","reference/api/plugin","reference/api/grn_info","news/senna","reference","tutorial/index","refe rence/ty pes","reference/commands/table_tokenize","reference/functions/highlight_html","reference/suggest/suggestion","reference/commands/io_flush","reference/suggest","server/memcached","reference/executables","reference/api/grn_proc","server/http/comparison","index","reference/api/grn_search","reference/cast","reference/commands/load","reference/commands/column_rename","reference/columns/pseudo","reference/executables/grndb","reference/commands/logical_table_remove","reference/api/grn_table_cursor","reference/executables/groonga-suggest-learner","reference/commands/table_create","limitations","reference/functions/rand","reference/commands/ruby_load","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/column","reference/commands/column_remove","reference/commands/column_create","tutorial/search","reference/functions/geo_distance","reference/commands/range_filter","news","tutorial/match_columns","reference/api/grn_obj","news/4.x","dev elopment /travis-ci","reference/commands/status","reference/api/grn_db","reference/tokenizers","reference/columns/vector","reference/api/grn_ii","contribution/documentation/c-api","contribution","install/mac_os_x","reference/commands/tokenize","tutorial/query_expansion","reference/operations/geolocation_search","reference/api/grn_hook","reference/tables","reference/commands/column_list","reference/functions/between","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/functions/in_values","install/windows","tutorial/network","reference/commands/request_cancel","contribution/development/repository","reference/commands/table_list","reference/api/grn_content_type","reference/commands/clearlock","reference/commands/select","reference/functions/html_untag","reference/api/grn_geo","reference/functions/edit_distance","news/1.3.x","reference/api/grn_table","reference/indexing","reference/functions/query","reference/api/grn_command_version","reference/comm ands/cac he_limit","reference/api/grn_user_data","contribution/documentation/i18n","reference/api/grn_index_cursor","reference/api/grn_column","reference/scorers/scorer_tf_idf","reference/api/grn_encoding","contribution/development/cooperation","news/3.x","reference/commands/check","reference/commands/truncate","server/gqtp","install/centos","tutorial/drilldown","reference/executables/groonga-suggest-httpd","characteristic","reference/commands/normalize","contribution/development/com","reference/command/output_format","reference/commands/lock_clear","install","reference/columns/index","reference/tuning","reference/commands/shutdown","server/package","reference/commands/logical_range_filter","tutorial/patricia_trie","spec/search","reference/commands/ruby_eval","reference/commands/table_remove","news/1.1.x","reference/functions/vector_size","reference/log","reference/columns/scalar","reference/grn_expr/script_syntax","contribution/development/release","install/debian","reference/comman ds/sugge st","news/1.0.x","reference/commands/define_selector","tutorial","reference/commands/dump","reference/grn_expr","reference/commands/quit","reference/function","reference/functions/highlight_full","development","reference/token_filters","reference/commands/logical_select","install/fedora","troubleshooting/mmap_cannot_allocate_memory","reference/commands/tokenizer_list","reference/executables/groonga-benchmark","reference/functions/geo_in_circle","reference/suggest/introduction","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/commands/plugin_unregister","reference/query_expanders/tsv","reference/suggest/completion","contribution/development/test","reference/regular_expression","reference/executables/grnslap","reference/api/grn_type","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","reference/scorers/scorer_tf_at_most","tutorial/micro_blog","reference/operations","reference/executabl es/groon ga-suggest-create-dataset","client","install/others","reference/normalizers","reference/commands/log_reopen","server/http"],titles:["12.1. How to report a bug","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","7.3.4. Return code","4.1. Basic operations","7.2. Output","7.20.1. Overview","7.3.19. <tt class=\"docutils literal\"><span class=\"pre\">log_level</span></tt>","Release 2.1.2 - 2013-01-29","7.3.20. <tt class=\"docutils literal\"><span class=\"pre\">log_put</span></tt>","7.1.5. groonga-httpd","7.3.32. <tt class=\"docutils literal\"><span class=\"pre\">register</span></tt>","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.11. Scorer","4.3. Various data types","2.4. Ubuntu","12.2. How to contribute in documentation topics","7.20.8. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","7.20.4. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","7.16.3. Correction","7.20.2. Global configurations"," 12.2.1. Introduction","8. Specification","7.3.28. <tt class=\"docutils literal\"><span class=\"pre\">plugin_register</span></tt>","7.3.22. <tt class=\"docutils literal\"><span class=\"pre\">logical_count</span></tt>","2.7. Oracle Solaris","7.20.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></tt>","3. Community","7.3.27. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","Release 1.2.9 - 2011-12-29","<no title>","7.10. Query expanders","7.20. API","7.3. Command","7.14.13. snippet_html","5. Server","7.14.5. geo_in_rectangle","7.3.3. Request ID","7.1.6. Groonga HTTP server","7.3.13. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","7.20.11. grn_expr","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","7.20.3. Plugin","7.20.16. <tt class=\"docutils literal\"><span class=\"pre\">grn_info</span></tt>","News in Senna period","7. Reference manual","4.6. Tag search and reverse r esolutio n of reference relationships","7.4. Data types","7.3.43. <tt class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></tt>","7.14.7. highlight_html","7.16.4. Suggestion","7.3.16. <tt class=\"docutils literal\"><span class=\"pre\">io_flush</span></tt>","7.16. Suggest","5.4. Memcached binary protocol","7.1. Executables","7.20.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","5.2.1. Comparison","Groonga documentation","7.20.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_search</span></tt>","Cast","7.3.17. <tt class=\"docutils literal\"><span class=\"pre\">load</span></tt>","7.3.11. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","7.6.3. Pseudo column","7.1.1. <tt class=\"docutils literal\"><span class=\"pre\">grndb</span></tt>","7.3.25. <tt class=\"docutils literal\"><span class=\"pre\">logical_table_remove</span></tt>","7.20.22. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor< /span></ tt>","7.1.9. groonga-suggest-learner","7.3.40. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","9. Limitations","7.14.12. rand","7.3.35. <tt class=\"docutils literal\"><span class=\"pre\">ruby_load</span></tt>","12.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","7.6. Column","7.3.10. <tt class=\"docutils literal\"><span class=\"pre\">column_remove</span></tt>","7.3.8. <tt class=\"docutils literal\"><span class=\"pre\">column_create</span></tt>","4.4. Various search conditions","7.14.3. geo_distance","7.3.31. <tt class=\"docutils literal\"><span class=\"pre\">range_filter</span></tt>","News","4.7. match_columns parameter","7.20.18. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","Release 4.1.1 - 2015-01-29","11.1. Travis CI","7.3.38. <tt class=\"docutils literal\"><span class=\"pre\">statu s</span> </tt>","7.20.9. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","7.8. Tokenizers","7.6.2. Vector column","7.20.14. <tt class=\"docutils literal\"><span class=\"pre\">grn_ii</span></tt>","12.2.3. C API","12. How to contribute to groonga","2.2. Mac OS X","7.3.44. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","4.11. Query expansion","7.15.1. Geolocation Search","7.20.13. <tt class=\"docutils literal\"><span class=\"pre\">grn_hook</span></tt>","7.5. Tables","7.3.9. <tt class=\"docutils literal\"><span class=\"pre\">column_list</span></tt>","7.14.1. between","7.1.3. <tt class=\"docutils literal\"><span class=\"pre\">groonga</span></tt> executable file","5.2.3. groonga-httpd","4.9. Additional information about lexicon for full text search","7.14.9. in_values","2.1. Windows","4.2. Remote access","7.3.33. <tt class=\"docutils literal\"><span class=\"pre\">request_cancel</span></tt>","12.3.1. Repository","7.3.41. <tt class=\"docutils literal\ "><span class=\"pre\">table_list</span></tt>","7.20.7. <tt class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></tt>","7.3.7. <tt class=\"docutils literal\"><span class=\"pre\">clearlock</span></tt>","7.3.36. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","7.14.8. html_untag","7.20.12. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","7.14.2. edit_distance","Release 1.3.0 - 2012-01-29","7.20.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","7.17. Indexing","7.14.11. query","7.20.6. <tt class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></tt>","7.3.5. <tt class=\"docutils literal\"><span class=\"pre\">cache_limit</span></tt>","7.20.24. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","12.2.2. I18N","7.20.15. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","7.20.5. <tt class=\"docutils literal\"><span class=\" pre\">grn_column</span></tt>","7.11.3.2. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></tt>","7.20.10. <tt class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></tt>","12.3.3. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","Release 3.1.2 - 2014-01-29","7.3.6. <tt class=\"docutils literal\"><span class=\"pre\">check</span></tt>","7.3.46. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","5.3. GQTP","2.5. CentOS","4.5. Drilldown","7.1.8. groonga-suggest-httpd","1. Characteristics of Groonga","7.3.26. <tt class=\"docutils literal\"><span class=\"pre\">normalize</span></tt>","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","7.3.2. Output format","7.3.18. <tt class=\"docutils literal\"><span class=\"pre\">lock_clear</span></tt>","2. Install","7.6.4. Index column","7.19. Tuning","7.3.37. <tt c lass=\"d ocutils literal\"><span class=\"pre\">shutdown</span></tt>","5.1. Server packages","7.3.23. <tt class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></tt>","4.8. Prefix search with patricia trie","8.2. \u691c\u7d22","7.3.34. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","7.3.42. <tt class=\"docutils literal\"><span class=\"pre\">table_remove</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","7.14.15. vector_size","7.18. Log","7.6.1. Scalar column","7.12.2. Script syntax","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","7.3.39. <tt class=\"docutils literal\"><span class=\"pre\">suggest</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","7.3.12. <tt class=\"docutils literal\"><span class=\"pre\">define_selector</span></tt>","4. Tutorial","7.3.15. <tt class=\"docutils literal\"><span class=\"pre\">dump</span></tt>","7.12. grn_expr","7.3.30. <tt cl ass=\"do cutils literal\"><span class=\"pre\">quit</span></tt>","7.14. Function","7.14.6. highlight_full","11. Development","7.9. Token filters","7.3.24. <tt class=\"docutils literal\"><span class=\"pre\">logical_select</span></tt>","2.6. Fedora","10.2. How to avoid mmap Cannot allocate memory error","7.3.45. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","7.1.4. groonga-benchmark","7.14.4. geo_in_circle","7.16.1. Introduction","7.3.14. <tt class=\"docutils literal\"><span class=\"pre\">delete</span></tt>","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","8.1. GQTP","5.2.2. groonga","7.3.29. <tt class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></tt>","7.10.1. QueryExpanderTSV","7.16.2. Completion","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","7.13. Regular expression","7.1.2. grnslap","7.20.23. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","7.14.10. now","7.12.1. Query syntax","7.14.14. sub_filter", "7.11.3. 1. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></tt>","4.10. Let's create micro-blog","7.15. Operations","7.1.7. groonga-suggest-create-dataset","6. Client","2.8. Others","7.7. Normalizers","7.3.21. <tt class=\"docutils literal\"><span class=\"pre\">log_reopen</span></tt>","5.2. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[25,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[98,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[80,1,1,"c.grn_obj_reinit"],grn_get_default_match_escalation_threshold:[25,1,1,"c.grn_get_default_match_escalation_threshold"],grn_db_create:[84,1,1,"c.grn_db_create"],grn_plugin_charlen:[41,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[94,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[80,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[64,1,1,"c.grn_table_cursor_close"],"-P":[182,0,1,"cmdoption-P"],grn_table_cursor_set_value:[64,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[39,1,1,"c.grn_ expr_syn tax_escape"],"--log-output-dir":[170,0,1,"cmdoption--log-output-dir"],"-d":[65,0,1,"cmdoption-d"],"-a":[98,0,1,"cmdoption-a"],"-c":[98,0,1,"cmdoption-c"],grn_obj_set_info:[42,1,1,"c.grn_obj_set_info"],"-m":[182,0,1,"cmdoption-m"],"-l":[65,0,1,"cmdoption-l"],"--disable-max-fd-check":[132,0,1,"cmdoption--disable-max-fd-check"],"-i":[170,0,1,"cmdoption-i"],"-h":[98,0,1,"cmdoption-h"],grn_db:[84,2,1,"c.grn_db"],"--log-rotate-threshold-size":[98,0,1,"cmdoption--log-rotate-threshold-size"],"-t":[132,0,1,"cmdoption-t"],grn_command_version:[117,2,1,"c.grn_command_version"],grn_obj_set_element_info:[42,1,1,"c.grn_obj_set_element_info"],"-p":[132,0,1,"cmdoption-p"],"-s":[65,0,1,"cmdoption-s"],"-r":[65,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[41,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[16,1,1,"c.grn_ctx_at"],"--bind-address":[98,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[117,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[98,0,1,"cmdoption--config-path"],grn _table_s ize:[114,1,1,"c.grn_table_size"],"--query-log-path":[98,0,1,"cmdoption--query-log-path"],grn_ctx_use:[16,1,1,"c.grn_ctx_use"],grn_obj_defrag:[80,1,1,"c.grn_obj_defrag"],db:[170,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[19,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[64,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[124,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[80,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[87,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[80,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[111,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[114,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[122,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[80,1,1,"c.grn_obj_unlink"],grn_obj_id:[80,1,1,"c.grn_obj_id"],grn_obj_set_value:[80,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[41,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[124,2,1,"c.grn_encoding"],grn_proc_create:[54,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[41,3, 1,"c.GRN _PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[122,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--ftp":[170,0,1,"cmdoption--ftp"],"--dir":[170,0,1,"cmdoption--dir"],"--address":[98,0,1,"cmdoption--address"],grn_table_group_result:[114,2,1,"c.grn_table_group_result"],grn_expr_close:[39,1,1,"c.grn_expr_close"],grn_obj_path:[80,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[17,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[84,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[111,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[80,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[114,1,1,"c.grn_table_lcp_search"],grn_table_create:[114,1,1,"c.grn_table_create"],grn_ctx_get_all_tables:[16,1,1,"c.grn_ctx_get_all_tables"],grn_encoding_to_string:[124,1,1,"c.grn_encoding_to_string"],"--daemon":[65,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[80,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[114,1,1,"c.grn_table_columns"],grn_ctx_set_output_type:[16,1,1,"c.grn_ctx_set_output_type"],"--pid-path":[98,0,1,"cmdoption--pid -path"], "--encoding":[98,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[16,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[17,2,1,"c.grn_cache"],grn_table_delete_by_id:[114,1,1,"c.grn_table_delete_by_id"],grn_content_type:[107,2,1,"c.grn_content_type"],grn_plugin_mutex:[41,2,1,"c.grn_plugin_mutex"],grn_expr_get_keywords:[39,1,1,"c.grn_expr_get_keywords"],grn_ii_buffer:[87,2,1,"c.grn_ii_buffer"],"--host":[170,0,1,"cmdoption--host"],grn_ctx_get_output_type:[16,1,1,"c.grn_ctx_get_output_type"],grn_obj_set_finalizer:[54,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[17,1,1,"c.grn_cache_current_set"],grn_obj_user_data:[119,1,1,"c.grn_obj_user_data"],grn_obj_lock:[80,1,1,"c.grn_obj_lock"],grn_obj_name:[80,1,1,"c.grn_obj_name"],"--log-path":[65,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[122,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"-e":[98,0,1,"cmdoption-e"],GRN_OBJ_COMPARE:[80,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[39,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[41, 1,1,"c.g rn_plugin_mutex_lock"],grn_obj_clear_lock:[80,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[64,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[39,1,1,"c.grn_expr_alloc"],grn_expr_compile:[39,1,1,"c.grn_expr_compile"],grn_user_data:[119,2,1,"c.grn_user_data"],grn_obj_get_range:[80,1,1,"c.grn_obj_get_range"],grn_table_get:[114,1,1,"c.grn_table_get"],grn_ctx_fin:[16,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[111,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[98,0,1,"cmdoption--max-threads"],grn_ctx_init:[16,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[87,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[80,3,1,"c.GRN_OBJ_DECR"],grn_table_sort_key:[114,2,1,"c.grn_table_sort_key"],grn_obj_rename:[80,1,1,"c.grn_obj_rename"],grn_table_group_flags:[114,2,1,"c.grn_table_group_flags"],grn_obj_check:[80,1,1,"c.grn_obj_check"],grn_table_at:[114,1,1,"c.grn_table_at"],grn_column_name:[122,1,1,"c.grn_column_name"],grn_table_difference:[114,1,1,"c.grn_table_difference"]," --n-line s-per-log-file":[132,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[41,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[17,1,1,"c.grn_cache_close"],grn_obj_close:[80,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[122,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[114,1,1,"c.grn_table_truncate"],grn_obj_get_value:[80,1,1,"c.grn_obj_get_value"],grn_cache_open:[17,1,1,"c.grn_cache_open"],"--server-id":[98,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[94,1,1,"c.grn_obj_delete_hook"],"-n":[98,0,1,"cmdoption-n"],"--port":[132,0,1,"cmdoption--port"],grn_ii:[87,2,1,"c.grn_ii"],"--log-base-path":[65,0,1,"cmdoption--log-base-path"],grn_obj_is_locked:[80,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[39,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[41,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[65,0,1,"cmdoption--log-level"],GRN_OBJ_SET_MASK:[80,3,1,"c.GRN_OBJ_SET_MASK"],grn_fin:[5,1,1,"c.grn_fin"],GRN_COLUMN_NAME_NSUBRECS:[122,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_ unlock:[ 41,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[117,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[41,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[42,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[57,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[39,1,1,"c.grn_expr_append_const_str"],grn_table_rename:[114,1,1,"c.grn_table_rename"],script:[170,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[41,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[117,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[39,1,1,"c.grn_expr_get_var_by_offset"],GRN_PLUGIN_MALLOC:[41,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[94,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[41,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[121,1,1,"c.grn_index_cursor_open"],grn_proc_func:[54,2,1,"c.grn_proc_func"],grn_db_create_optarg:[84,2,1,"c.grn_db_create_optarg"],grn_column_table:[122,1,1,"c.grn_column_table"],grn_table_add:[114,1,1,"c.grn_table_add"],grn_ obj_unlo ck:[80,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[17,1,1,"c.grn_cache_set_max_n_entries"],grn_init:[5,1,1,"c.grn_init"],grn_proc_type:[54,2,1,"c.grn_proc_type"],grn_proc_get_info:[54,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[80,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[16,1,1,"c.grn_ctx_close"],"--query-log-rotate-threshold-size":[98,0,1,"cmdoption--query-log-rotate-threshold-size"],GRN_COLUMN_NAME_KEY:[122,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[122,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[122,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[64,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[80,1,1,"c.grn_obj_get_values"],grn_column_rename:[122,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[80,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[42,1,1,"c.grn_obj_get_info"],grn_ctx_db:[16,1,1,"c.grn_ctx_db"],"--protocol":[170,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[41,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[64,2,1,"c. grn_tabl e_cursor"],grn_table_cursor_get_value:[64,1,1,"c.grn_table_cursor_get_value"],grn_ctx_get:[16,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[25,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[84,1,1,"c.grn_db_open"],grn_column_index:[122,1,1,"c.grn_column_index"],"--n-threads":[132,0,1,"cmdoption--n-threads"],grn_ctx:[16,2,1,"c.grn_ctx"],"--help":[98,0,1,"cmdoption--help"],"--groonga":[170,0,1,"cmdoption--groonga"],grn_table_setoperation:[114,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[122,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[80,3,1,"c.GRN_OBJ_SET"],"--document-root":[98,0,1,"cmdoption--document-root"],grn_info_type:[42,2,1,"c.grn_info_type"],grn_column_truncate:[122,1,1,"c.grn_column_truncate"],grn_obj:[80,2,1,"c.grn_obj"],grn_obj_remove:[80,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[41,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[80,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[39,1,1,"c.grn_expr_append_const_int"],grn_expr_synta x_escape _query:[39,1,1,"c.grn_expr_syntax_escape_query"],grn_geo_select_in_rectangle:[111,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[19,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[87,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[57,1,1,"c.grn_obj_search"],"--send-endpoint":[65,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[114,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[94,2,1,"c.grn_hook_entry"],grn_expr_append_op:[39,1,1,"c.grn_expr_append_op"],grn_geo_point:[111,2,1,"c.grn_geo_point"],grn_table_cursor_table:[64,1,1,"c.grn_table_cursor_table"],grn_index_cursor_next:[121,1,1,"c.grn_index_cursor_next"],grn_table_delete:[114,1,1,"c.grn_table_delete"],dest:[98,0,1,"cmdoption-arg-dest"],grn_ctx_open:[16,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[41,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[122,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[80,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[16,1,1,"c.grn_ctx_get_command_v ersion"] ,"--default-match-escalation-threshold":[98,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[64,1,1,"c.grn_table_cursor_delete"],grn_type_create:[183,1,1,"c.grn_type_create"],grn_obj_path_by_id:[80,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[41,1,1,"c.grn_plugin_command_create"],grn_db_recover:[84,1,1,"c.grn_db_recover"],grn_builtin_type:[183,2,1,"c.grn_builtin_type"],grn_table_get_key:[114,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[80,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[25,1,1,"c.grn_set_default_match_escalation_threshold"],grn_cache_current_get:[17,1,1,"c.grn_cache_current_get"],grn_expr_create:[39,1,1,"c.grn_expr_create"],grn_get_default_command_version:[117,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[39,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[124,1,1,"c.grn_encoding_parse"],grn_column_create:[122,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[16,1,1,"c.grn_ctx_set_comm and_vers ion"],grn_table_sort_flags:[114,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[94,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[124,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[117,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[41,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_ii_buffer_open:[87,1,1,"c.grn_ii_buffer_open"],"--receive-endpoint":[65,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[122,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[114,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[41,1,1,"c.GRN_PLUGIN_FIN"],command:[98,0,1,"cmdoption-arg-command"],GRN_PLUGIN_REGISTER:[41,1,1,"c.GRN_PLUGIN_REGISTER"],grn_plugin_mutex_close:[41,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[84,1,1,"c.grn_db_touch"],grn_table_update:[114,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[84,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[84,4,1,"c.grn_db_creat e_optarg .builtin_type_names"]}},titleterms:{"6\u30ea\u30ea\u30fc\u30b9":[1,156],code:2,senna:43,"\u6539\u826f":[28,1,156,148],"\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u751f\u6210\u3057\u305f\u3044":153,queri:[109,92,133,116,9,150,30,185],global:19,localstatedir:192,"4\u30ea\u30ea\u30fc\u30b9":156,prefix:[70,152,144,192,179,55,185],"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":153,follow:188,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":153,cache_limit:118,value_typ:66,depend:[192,20],grn_type:183,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":153,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":153,drilldown_offset:109,send:[103,120],column_cr:74,column_or_valu:97,table_list:106,downtim:55,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[170,40],query_str:116,"\u524d\u63d0\u6761\u4ef6":153,grn_command_vers:117,sourc :[167,13 0,14,154,102,192,90],string:[13,47,91,134,152],groonga:[56,142,43,153,190,132,133,135,98,99,9,176,37,89,65,170,120],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":153,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":153,drilldown_calc_target:109,facebook:26,"\u30b5\u30f3\u30d7\u30eb":[182,170],greater_equ:70,brows:9,administr:[9,103],sub_filt:186,gnu:154,list:[0,2,26],scalar:151,vector:[13,86],drilldown_output_column:109,refer:[41,42,44,94,87,107,54,57,5,86,13,117,16,17,114,19,25,119,45,121,122,183,124,64,111,80,84,39],"\u30aa\u30d7\u30b7\u30e7\u30f3":[182,170],dump_index:159,direct:9,sign:152,range_filt:77,aggreg:133,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":145,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":145,index:[67,45,3,133,115,139,79,181,66],what:85,xor:152,learner:65,"files\u306e\u5b9f\u884c":153,delet:173,version:55,"new":[78,43,120],grn_info:42,full:[3,185,133,100,75,79],hash:188,gener:[120,20],learn:[132,65,172,18,49 ,179],lo ck_clear:137,bodi:136,let:188,solari:24,ubuntu:14,path:[69,192,55],target_valu:101,valu:[91,143,6,96,47,48,146,50,147,110,104,10,149,106,108,76,155,194,59,116,60,157,159,63,169,161,66,22,69,27,23,166,163,73,74,127,173,118,97,77,128,177,83,8,186,132,188,134,33,137,101,37,38,141],"\u95a2\u4fc2\u5f0f":70,table_hash_kei:95,search:[45,109,3,92,93,133,86,49,75,18,188,144,152,79,100,179,185],"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":153,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":153,shift:152,blogroonga:153,memcach:52,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":153,chang:43,narrow:75,"\u9759\u7684\u89e3\u6790":180,"windows\u5411\u3051\u306e\u5834\u5408":153,match_column:[116,79,109],repositori:[105,120],appli:86,modul:9,phrase:185,"debian\u7cfb\u306e\u5834\u5408":153,api:[88,31],grn_db:84,request_cancel:104,instal:[178,192,102,138,20],total:109,define_selector:157,select:109,"\u6982\u8981":11,httpd:[132,142,9,99,65],"gqtp\u3067\u306e\u30a2\u30fc\ u30ad\u3 0c6\u30af\u30c1\u30e3":135,from:[167,130,14,154,102,192,65,90],zip:102,commun:26,query_expand:[116,109],regist:10,upgrad:55,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":71,column_remov:73,call:152,"\u30c6\u30b9\u30c8\u65b9\u6cd5":180,key_typ:66,scope:186,query_expans:109,"\u30d6\u30ed\u30b0":153,sort:[75,3,131],token_filt:[91,66],relat:[79,109,9,65],benchmark:170,flag:[47,91,134,175,66],grn_content_typ:107,tokenbigramignoreblanksplitsymbolalpha:85,cach:[109,9],sphere:76,prepar:92,work:[120,18,179,49],tag:[45,188,66],can:46,clearlock:108,"\u7279\u6b8a\u547d\u4ee4":170,control:152,grn_column:122,geo_in_rectangl:35,process:[140,150],lock:133,topic:15,"\u4f7f\u3044\u65b9":170,liter:152,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":125,groonga_cache_limit:9,grndb:62,onlin:115,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":153, unsign:1 52,filter:[143,165,23,109,166],multipl:[79,152,131],secur:[103,152],"\u540d\u524d":[182,68,184,112,170,35,61,171],divis:152,how:[0,86,36,175,129,49,115,18,103,168,89,15,179,120],open_tagn:163,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":180,simpl:109,updat:[133,120,179,153,20],message_pack_install_prefix:192,tokenregexp:85,"\u7406\u7531":125,max:[143,166,63,118,97,140,23],clone:120,geoloc:[93,188],mac:90,offlin:115,date:13,log_level:6,data:[185,13,188,46,49,9,179,152,65,66],table_dat_kei:95,alloc:168,"\u66f8\u5f0f":[182,68,184,112,170,35,171],not_equ:70,tokendelimit:85,explicit:185,issu:[0,103],callback:70,combin:185,normalizernfkc51:193,freebsd:140,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":153,table_token:47,order:143,origin:152,adjust:109,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":125,help:192,softwar:20,hypertext:103,lz4:192, "3\u30ea \u30ea\u30fc\u30b9":156,gqtp:[142,175,129],paramet:[91,143,6,96,98,47,48,146,8,147,110,104,149,106,128,108,109,76,155,59,116,60,157,159,63,194,161,65,66,69,50,23,166,163,73,74,127,173,118,97,79,83,186,132,134,137,101,140,38,141],"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":153,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":153,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":153,group:[181,185,152],thank:[126,7,78,28,113,81],grn_table_select:70,fix:[43,126,7,78,28,81],shard_kei:[143,23,166,63],"\u5b9f\u9a13\u7684":28,platform:192,window:102,requir:[109,76,23,166,132,96,134,47,116,60,91,110,104,63,143,128],persist:95,tsv:[136,178],mail:[0,26],vector_s:149,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":180,"\u4f8b\u3048\u3070redmin":125,grn_hook:94,html_untag:110,"return":[91,2,143,6,96,47,48,146,101,147,110,104,10,149,106,108,76,155,194,59,116,60,157,159,63,169,161,66,22,69,50,23,166,163, 73,74,12 7,173,118,27,97,77,128,177,83,186,132,134,33,137,8,37,38,141],greater:[70,185,152],worker_process:9,rectangl:76,"8\u30ea\u30ea\u30fc\u30b9":156,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":180,"\u8fd4\u5024":[68,109,171,112,35,184],now:184,highlight_ful:163,introduct:[172,20],choic:181,term:152,name:[46,190,60,37,79,66],edit:120,revers:[45,9],grn_ctx:16,authent:55,kern:140,micro:188,token:[133,165,91,85],exampl:[42,5,94,87,57,54,111,117,16,17,114,183,25,119,121,122,168,124,64,175,80,82,84,190,39],"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":174,each:79,ruby_load:69,"benchmark\u5b9f\u884c\u7d50\u679c":170,grn_encod:124,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":180,domain:131,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":11,weight:[79,86],"0\u30ea\u30ea\u30fc\u30b9":[28,156,148],normalizerauto:193,proxy_cach:9,todo:[116,33],"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\ u308b":1 25,develop:164,your:120,db_api:70,query_flag:109,"release\u306e\u5b9f\u884c":153,normalizer_nam:163,quantifi:181,correct:[172,18],red:153,nofil:140,"1\u30ea\u30ea\u30fc\u30b9":[28,156],shut:9,proxi:9,advanc:109,free:133,grn_user_data:119,substitution_t:116,standalon:98,releas:[126,7,78,28,113,81],database_path:[132,65],grn_match_escal:25,launch:132,success:136,dump_schema:159,recov:62,synopsti:190,assign:[36,185,152],oper:[189,3,152],rand:68,rang:[3,66],plugin_regist:22,groonga_log_path:9,suffix:[152,70,185,144],"7\u30ea\u30ea\u30fc\u30b9":[1,156],"\u8aac\u660e":[182,68,184,112,170,35,61,171],arrai:152,number:[140,109,192],edit_dist:112,groonga_database_auto_cr:9,modulo:152,open:140,primari:[46,144],size:175,grn_cach:17,script:[146,152],"\u4fee\u6b63":[28,1,156,148],messag:192,expand:30,termin:175,store:[133,66],option:[47,91,23,166,50,132,134,98,190,116,76,159,63,143,65],relationship:45,travi:82,tool:[192,9,103],specifi:[46,76,3],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\ u7f6e\u3 065\u3051":11,tokenfilterstem:165,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":70,than:[185,152],tokenbigram:85,keyword:188,remot:103,"grntest\u306e\u6e96\u5099":153,grn_table_cursor:64,charact:181,column_list:96,grn_expr:[70,39,160],latitud:[13,133],favorit:188,ruby_ev:146,plugin_unregist:177,tabl:[67,96,109,3,95,46,47,60,159,188,79,65,66],"null":152,logical_table_remov:63,packag:[192,142,14],bitwis:152,drilldown_limit:109,built:[193,85,12],min:[143,97,23,166,63],"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":70,also:[2,6,95,96,69,48,47,91,104,10,146,108,109,155,194,59,116,157,160,169,66,22,165,27,123,163,186,173,175,77,177,178,36,134,33,190,136,8,193,118],builtin:[46,98],without:55,build:[167,130,14,154,102,192,90],highlight_html:48,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":180,mroonga:133,normal:[86,91,134,193,66],"\u30d0\u30fc\u30b8\u30e7\u30f30":1,"\u30d0\u30fc\u30b8\u30e7\u30f31":[156,148],object:152,oracl:24,"twitter\u3067\u306e\u3084\u308a\ u3068\u3 08a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":125,regular:[181,185,152],default_token:66,"class":181,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":153,groonga_log_level:9,geoindex:188,table_pat_kei:95,request:[132,36,9,120],"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":70,latest:153,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":145,"\u539f\u56e0":71,lexicon:[100,3,66],keywordn:163,text:[3,185,133,100,75,79],grn_index_cursor:121,syntax:[91,143,6,96,98,47,48,146,50,147,104,10,149,106,108,109,76,152,155,194,59,116,60,157,62,63,169,161,181,66,22,69,27,23,159,166,163,73,74,127,75,173,118,97,77,128,177,185,83,8,186,134,33,137,101,110,38,141],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":153,threshold:192,xml:136,access:[103,55],explicitli:76,locat:[133,75,76,178,45],just:86,ellipsoid:76,grnslap:182,configur:[19,9,20,192,55,82],solut:168,max_bord:[143,97,23,166,63],use_html_escap:163,"benchmark\u547d\u4ee4":170,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092 \u5909\u 66f4\u3059\u308b":71,contribut:[89,15],variou:[13,75],get:[132,3],express:[181,185,152],stop:142,cannot:168,wheezi:154,report:0,geo:[133,152,45],restart:142,target:149,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":11,enabl:20,query_typ:175,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":125,patch:120,"default":[192,11],tokenfilterstopword:165,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":194,contain:70,table_cr:66,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":180,summari:[2,12,6,91,9,10,76,5,194,16,17,19,87,22,23,25,33,8,37,38,85,41,42,147,47,48,27,54,107,59,60,62,63,64,65,66,69,50,73,74,77,80,83,84,129,94,95,96,98,101,104,106,57,108,109,110,111,86,117,116,114,119,121,122,123,163,127,128,132,36,134,136,137,140,141,143,146,149,151,155,157,159,161,124,165,166,183,169,173,118,97,177,178,181,186,187,139,193],"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":153, set:[132 ,9],max_map_count:140,dump:159,geo_dist:76,see:[2,6,95,96,69,48,47,91,104,10,146,108,109,155,194,59,116,157,160,169,66,22,165,27,123,163,186,173,175,77,177,178,36,134,33,190,136,8,193,118],result:[3,131],arg:70,scorer_tf_idf:123,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":180,statu:[83,175,190],databas:[3,55],column_renam:60,label:109,less_equ:70,score:109,between:97,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":153,kei:[46,109,144],numer:13,javascript:75,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":153,style:109,"\u5bfe\u7b56\u65b9\u6cd52":71,"\u5bfe\u7b56\u65b9\u6cd51":71,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":170,homebrew:90,dump_plugin:159,addit:[193,152,100],instant:133,plugin:[41,192],geopoint:188,equal:[70,185,152],against:79,tutori:158,logic:[185,152],improv:[43,126,7,78,28,113,81],"po\u306e\u5b9f\u884c":153,point2:76,load:[59,188,3,9,86],among:79,defrag:38,point:152,overview:[13,133, 5],perio d:43,header:[136,175],close_tagn:163,shutdown:141,linux:[154,140],grn_proc:54,tokenbigramignoreblanksplitsymbol:85,quit:161,"\u5236\u9650\u4e8b\u9805":170,target_nam:[137,128,50],invert:133,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":180,json:[59,136],basic:[3,152],tokenmecab:85,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":180,log_put:8,drilldown_calc_typ:109,resolut:45,"2\u30ea\u30ea\u30fc\u30b9":156,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":153,logical_range_filt:143,i18n:120,in_valu:101,"case":136,drildown:131,multi:55,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":153,zlib:192,cast:58,"\u691c\u7d22":145,error:[136,168],anchor:181,pack:192,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":180,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":153,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u3 0c9":153 ,"\u5f15\u6570":[182,68,112,170,35,171],filter_str:186,archiv:14,cento:130,synopsi:[132,37,9,65],"version\u30d1\u30e9\u30e1\u30fc\u30bf":11,fedora:167,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":153,"\u691c\u7d22\u306e\u6319\u52d5":145,perform:[9,55],suggest:[132,155,190,49,172,51,65],make:[192,153],"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":180,binari:52,html:[110,120,20],output_column:[109,143],document:[56,15,20],messagepack:136,complet:[172,179],http:[142,4,103,37,55,195],expans:92,nest:79,temporari:95,user:188,engin:133,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":135,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":153,tune:140,desctipion:190,sortbi:109,overcommit_memori:140,person:14,client:[191,98,175],command:[11,3,4,132,98,32,103,62,37,55],gzip:55,left:152,comment:188,construct:115,protocol:[52,103,175],execut:[53,98],less:[ 70,185,1 52],logical_select:166,min_bord:[143,97,23,166,63],"5\u30ea\u30ea\u30fc\u30b9":156,languag:120,approximate_typ:76,hashtag:188,point1:76,mmap:168,"twitter\u7de8":125,patricia:144,blog:188,add:120,macport:90,geo_in_circl:171,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":153,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":153,tokenunigram:85,match:[192,185,152],format:[136,109,3,59,150,178],read:[133,179],tokendelimitnul:85,nginx:9,"\u95be\u5024\u3092\u3042\u3052\u308b":71,characterist:[133,95],recurs:50,daemon:[98,175],like:75,specif:[188,79,9,21],maxfileperproc:140,manual:44,integ:152,server:[142,133,98,34,103,37,175],logical_t:[143,23,166,63],"boolean":[13,152],cascad:173,output:[136,109,3,4,120],snippet_html:33,normalizer_list:27,old:78,twitter:26,log_reopen:194,sampl:[185,152],"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":180,librari:[133,192],tokenbigramsplitsymbolalphadigit:85,confirm:120,avoid:168,per:140,tracker:0,exit:190,condit:[75,109, 185],sco rer_tf_at_most:187,mode:[47,91,98,70],core:55,who:188,run:[175,129,103,20],tokenizs:85,compress:55,view:3,usag:[91,143,4,12,6,96,98,47,48,146,101,147,9,104,10,149,106,108,109,76,50,86,155,194,59,116,60,157,62,63,169,161,65,66,22,69,27,23,159,166,123,163,73,151,74,127,173,118,97,77,128,177,178,181,83,186,132,139,110,134,33,137,8,140,38,141],tokenizer_list:169,tokenbigramsplitsymbol:85,"\u30d3\u30eb\u30c9\u6642\u306etip":153,tokenbigramsplitsymbolalpha:85,offset:[109,143],post:[188,9,55],subtract:152,comparison:[152,55],about:[46,100],column:[67,151,76,3,185,131,86,133,163,48,61,139,72,79],memori:[140,168],page:109,truncat:128,"x\u306e\u304a\u77e5\u3089\u305b":[1,156,148],tokentrigram:85,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":180,ppa:14,match_escalation_threshold:109,grn_ii:87,"\u4f8b":[68,171,112,71,35,184],"float":152,encod:192,dataset:190,down:[75,9],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":145,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u3 0a7\u30f c\u30b9":70,storag:133,groonga_query_log_path:9,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":46,log:[150,192,65,55],transfer:103,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":170,support:93,"\u5909\u66f4":156,submit:0,custom:55,avail:[165,9],start:142,arithmet:152,"\u306e\u66f4\u65b0":153,sharabl:133,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":11,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":153,"function":[162,152],tokenbigramignoreblanksplitsymbolalphadigit:85,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":153,"\u691c\u7d22\u4f8b4":70,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":70,"\u691c\u7d22\u4f8b2":70,"\u691c\u7d22\u4f8b1":70,translat:120,drilldown_sortbi:109,line:[132,98,4],bug:0,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":153,pull:120,dump_record:159,new_nam:60,type:[13,188,46],record:[95,109,3],limit:[67,109,131,86,95,46,178],i nform:[7 5,100],similar:[18,152,70],grn_tabl:114,"\u611f\u8b1d":[28,1,156,148],featur:93,bigram:188,creat:[3,86,188,190,79,66],trie:144,flow:120,grn_obj:80,groonga_databas:9,"homebrew\u306e\u66f4\u65b0":153,jessi:154,right:152,file:[98,190,140,178,65,55,120],check:[127,62],"\u5bfe\u5fdc":125,tokenbigramignoreblank:85,table_remov:147,extract:[152,49],grn_search:57,other:[192,181],logical_count:23,grn_geo:111,"hat\u7cfb\u306e\u5834\u5408":153,io_flush:50,scorer:[75,109,12],cooccurr:[18,179,49],drilldown:[109,131],debian:154,longitud:[13,133],groonga_base_path:9,escal:192,"\u691c\u7d22\u4f8b3":70,descript:46,pseudo:61,cpu:55,munin:192,queryexpandertsv:178,time:[13,188,152],escap:[185,181],"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":153,table_no_kei:95}}) \ No newline at end of file +Search.setIndex({envversion:42,terms:{localstatedir:138,four:[136,95,3,98,150],"\u3084rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306espec\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u306a\u3069\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":153,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":16,"\u811a\u6ce8":[35,46,171,73],"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":170,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":141,your_db:28,grn_fin:5,column_cr:[56,44,86,32,28,81],"\u65e5\u672c\u4eba":179,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":153,no_such_device_or_address:175,thread_tabl:170,command_vers:[11,3,4,163,33,48,83,175,110,9,149,37,103],dewangga:78,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":64,"takas hi\u3055 \u3093\u304c\u5831\u544a":28,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":156,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":109,cancel_request_is_accepted_or_not:104,grn_plugin_win32_base_dir:41,drilldown_output_column:[157,166,81],asami:126,"\u697d\u3057\u3044billiard":[71,145],dump_index:78,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":153,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":114,grn_oper:[114,57,39,122,111],grn_column_name_nsubrecs_len:122,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":153,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":170,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":38,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570": 54,grn_s ocket_is_already_shutdown:2,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":64,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":98,grn_table_cursor_next:[64,156],here:[41,93,2,72,5,95,96,98,69,48,49,47,146,101,102,9,104,10,149,150,107,128,55,59,109,76,12,86,155,14,16,17,116,60,18,91,20,169,152,65,66,22,165,27,23,62,166,123,163,186,75,173,175,97,79,177,178,179,82,193,84,131,159,132,85,110,185,134,33,190,137,181,36,192,140,120,39,118],onga:33,china:[76,131],grn_enc_utf8:[64,124],ful:91,"\u4e0e\u3048":71,latitude_in_msec:152,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":28,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":135,"\u7a7a\u767d\u3084":98,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":98,match_column:[56,166,86,126,157,78,81],"\u540c\u4e00\u30d5\u30 a1\u30a4 \u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":170,engi:[155,179],"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":180,"\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":28,substr:[185,152],unix:[192,81],txt:[88,85,120],unit:[76,152,32,33,173,175,85],tokenizs:[56,44],music:[45,150],until:[41,115,109,59,19,81,120],"\u30d6\u30ed\u30b0":89,grn_op_push:70,token_filt:159,relax:140,relat:[56,130,192,167,133,14,126,26,7,154,78,105,28,89,80,81,82],error_messag:136,notic:[6,123,8,98,9],"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":153,hold:[13,100],"cutter\u 306b\u54 2b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":153,"byte\u9577":[114,80,122],"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":159,"akio\u3055\u3093\u304c\u5831\u544a":156,"\u306a\u3069\u306b\u3088\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5b58\u5426\u3092\u5225\u9014\u78ba\u8a8d\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":80,flushviewoffil:78,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":125,grn_obj_reinit:80,cirit:9,digit:[109,166,18,150,181,85,81,66],"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":170,want:[142,91,3,92,129,98,47,49,146,101,9,105,192,167,109,76,88,14,59,18,69,168,186,175,78,79,178,179,81,181,130,185,131,132,134,154,85,90],"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":114,type1:155,type2:155,"grnslap\u306f":182,grn_fi lename_t oo_long:2,turn:9,grn_read_only_file_system:2,travel:188,grn_geo_point:111,grn_input_output_error:2,enviromn:78,yum:[7,167,130,153,20],"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":80,message_pack_install_prefix:138,groonga_clone_dir:153,moritar:79,wrong:[126,7,172,18,62,78,28,81],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnull\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":84,"\u63d0\u6848\u3092\u884c\u3046":156,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":148,"virtualbox\u306fsourc":153,wing:[7,126],"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":170,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":124,vari:[41,67],"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":89,"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[64,114],"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3 \u30fc\u 30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":156,hidden:133,fin:54,easier:12,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":70,rectangl:[7,28,111,133],stop_word:[165,47,159],"installer\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068windows\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":153,dcmake_install_prefix:102,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":156,timeout:[80,19,126],debug:[91,6,98,8,9,150,78,81],"obj\u3092lock\u3057\u307e\u3059":80,last_modifi:188,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":71,"akio\u3055\u3093\u304c\u63d0\u6848":156,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u 30eb\u30 4c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":170,ideograph:78,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":156,grn_table_s:[114,70],grooon:132,moritapo:45,gregex:126,lexicon_t:170,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":170,input_typ:59,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":153,"\u79d2":80,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u66f4\u65b0\u3084\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u7b49\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,ringtail:126,"\u307e\u308d\u3086\u304d":144,flush:78,libedit:[7,28,192,167,78],"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":46,atv:[75,3,131],pagin:3,"\u30ab\u30e9\u30e0\u306b\u4ed8\u968f\u305 9\u308b\ u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u518d\u5e30\u7684\u306b\u524a\u9664\u3055\u308c\u307e\u3059":147,confus:[85,181],resource_busi:175,accuml:126,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":11,mingw:153,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":64,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":153,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":98,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":153,"\u304a\u3070\u305f\u3055\u3093":1,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":114,master:[120,9,82],"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":64,listen:[7,175,9,55,103],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[35,171],kinjir:45,"\u50242":98,"\u5 0241":98 ,grn_obj_flush_recurs:78,tree:81,second:[109,76,3,185,12,13,188,46,136,75,104,150,79,96,55,152],project:[0,142,152,153,133,105,89,81,82],"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":114,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":170,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":98,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":170,boston:188,"db_api\u306f":70,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":61,"\u3050\u308b\u3093\u304c\u6b21\u90ce":45,increment:36,incompat:[7,78,126,81],"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":153,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":71,"0\u306e\u79d2\u8868\u8a18":71,suenaga:78,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6 \u3092\u 5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f\u884c\u3059\u308b":153,simplifi:[101,126],unknow:81,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"10041\u756a":98,"key_type\u306bt":114,object:[41,91,72,7,28,149,109,86,60,16,17,114,160,169,27,78,80,81,84,134,33,137,38],microsecond:[13,150],letter:193,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":170,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":183,"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":170,camp:188,incompatible_file_format:175,index_blog:79,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":153,expornenti:152,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":145,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068s egv\u305 9\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"\u3092\u6307\u5b9a\u3059\u308b\u3068domain\u578b\u306e\u5024\u306e\u30d9\u30af\u30bf\u3092\u683c\u7d0d\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059":80,daemoinz:7,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,grnslap:[53,56,44],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u6c4e\u7528\u7684\u306a\u30da\u30fc\u30b8\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u304c":98,restaur:133,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":11,"2byte":[2,175],grn_obj_set_element_info:42,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":94,"\u306f\u306a\u304f":1,serv:[13,153,81],source_file_nam:136,other_t:78,ff1f:78, createre po:153,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":46,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[56,32,81,44,16],maverick:28,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":71,unexpectedli:126,etim:182,"description\u306b":145,result:[4,95,49,7,104,78,146,158,56,109,76,152,13,113,115,116,114,18,62,65,120,69,70,166,126,186,28,178,179,81,181,132,133,134,33,136,37,193,85],respons:[17,109,2,132,133,126,7,81,104,28,55,175],fail:[22,17,109,3,185,41,126,7,19,10,28,78,177,81,66],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":80,best:133,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":70,wikipedia:46,figur:93,score:[7,78,60,86],"ve rsion\u3 0d1\u30e9\u30e1\u30fc\u30bf\u306bstable\u6271\u3044\u3067\u306a\u3044\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":11,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":170,extend:[79,92,81,181],shidara:28,extens:4,pat_kei:95,"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":106,grn_plugin_realloc:41,column_scalar:[92,12,96,47,48,101,110,128,109,76,152,116,115,71,60,159,45,165,23,166,123,163,74,186,173,97,79,181,185,131,188,33,137,140],logic:[109,143,166,7,63,23],msghdr:78,login:140,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":145,"2nd":109,"\u95a2\u6570":180,grn_table_cursor_get_valu:64,assum:[54,104,16],summar:131,duplic:[166,81],grn_search_optarg:[78,57],"\u306e\u307b\u304b\u306b":46,"\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30 fc\u30b8 \u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059":11,"takashi\u3055\u3093":28,much:85,salamand:[126,81],res_column:170,"\u30ab\u30f3\u30de":159,worker:[9,126],"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,dave:97,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":71,grn_table_delet:[78,114],"localstatedir\u3092\u4f7f\u7528":156,spil:78,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63":1,"\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,sen_index_norm:43,"\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":171, "\u6307\ u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cstable\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u306a\u3093\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3082\u8868\u793a\u3055\u308c\u305a\u305d\u306e\u307e\u307e\u8d77\u52d5\u3057\u307e\u3059":11,select_opt:152,arg_list_too_long:175,"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":1,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u5185\u90e8\u3067\u30a2\u30ed\u30b1\u30fc\u30c8\u3055\u308c":83,grn_resource_busi:2,simil:152,split:[28,78,85,152,95],big:[9,81],"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":71,documents_content_index:[116,33],"\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":170,refin:[133,126],"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u3066\u304b\u3089\u7d4c\u904e \u3057\u 305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":83,tune:[56,109,126,44,86],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":153,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[71,145],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059":70,out_gqtp:170,users_memo:116,gzip:[7,192,195],unchang:41,drilldown_result_n:109,bellow:85,sleepi:115,hai:70,easi:[12,133,98,55,160,178,81,103],"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":170,had:[12,120],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":89,hat:192,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":70,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":153,koji:7,"\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\ u30ca\u3 0a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":71,command_nam:[37,103],drilldown_result_2:109,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":170,drilldown_result_1:109,measur:[28,133],specif:[56,69,23,86,133,109,126,7,159,155,146,192,81],"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u4f7f\u7528\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":74,filename_too_long:175,"\u30d4\u30ea\u30aa\u30c9":74,sebastian:81,underli:133,grn_obj_table_hash_kei:[64,114],right:[111,81],groogna:[7,113,109,102,185],kouhei:126,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,bottom:111,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":121,"146566000x":[188,76],"gz\u306a\u3069\u306 e\u30ea\ u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":153,ichii:28,condit:[67,56,126,7,78,39],scorer_tf_at_most:[78,12],yoku:[126,81],"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":170,grn_builtin_typ:[183,80],grn_cursor_descend:64,grn_log_path:7,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":122,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":135,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":46,nginxhttpstubstatusmodul:81,"net\u306egroonga\u30c1\u30fc\u30e0\u306eppa\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":153,"\u30c7\u30d5\u30a9\u30eb\u30c8\u 306e\u69 1c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":25,"\u30ad\u30e3\u30c3\u30b7\u30e5\u5bb9\u91cf\u306f\u6709\u9650\u3067\u3059":109,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":70,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":70,suffici:41,support:[41,43,7,91,9,104,28,146,192,115,109,152,14,59,116,65,120,69,166,126,78,113,81,82,193,185,133,189,33,191,66],"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":68,avail:[41,56,109,43,166,44,120,133,96,134,126,136,91,62,155,192,78,107,66],width:[28,193,78],joseph:144,call:[41,69,76,5,86,109,33,16,7,60,126,160,146,81],inv_res_column:170,"\u3086\u304d\u3072\u308d":144,"\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044":1,rid_max:121,pagerank:[123,29,12],"135960000x":76,type:[42,91,72,4,12 ,93,95,9 6,49,7,146,2,9,104,78,105,111,107,54,56,109,76,44,86,155,16,60,18,181,66,122,166,123,170,126,74,186,173,28,29,113,179,81,152,185,132,85,134,37,39],"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":114,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306b\u304a\u3044\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,replied_us:188,"\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059":125,later:[109,110,23,163,98,126,48,7,186,81,28,78,193,3,181],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":114,exist:[142,3,12,98,7,101,9,104,109,152,13,59,62,20,65,166,126,75,175,97,78,79,81,84,191,85],"object\u578b\u306fv1":46,co lumn_nam e1:59,column_name2:59,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":106,grn_search:[56,31,44],"_yyyymmdd":[143,23,166,63],role:[133,116],notif:[150,126],intend:[7,186,79,185,81],moero:45,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":153,grn_ptr_value_at:[39,16],intens:9,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":156,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":122,grn_ii_buffer_open:87,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":57,exce:[7,78,126],time:[56,23,104,166,132,133,136,170,33,126,7,155,19,62,78,28,81,185],push:[120,16],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":106,chain:186,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[184,35,112,171,68],grn_obj_get_hook:94,netbsd:126,millisecond:[13,132,75,19,152],decid:178,thread_title _column: 170,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":156,decim:[13,46,152],"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":180,downtim:195,"257662232kbyte":170,score_adjust_express:109,lru:118,exact:[83,95,109,70,66],"\u5909\u66f4\u5f8c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":25,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":180,grn_plugin_mutex_lock:41,prevent:126,"\u8ad6\u7406\u548c":70,grn_table_group_result:114,index_point:45,sign:[7,2,153],"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":182,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u583 4\u5408\ u306b\u306f\u30a8\u30e9\u30fc\u304c\u8fd4\u3055\u308c\u307e\u3059":11,grn_broken_pip:2,takashi:173,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":80,current:[59,3,84,93,120,188,16,17,60,9,28,118,107,66],"\u3053\u308c\u306b\u3088\u308a":153,construnct:78,boost:179,"encoding\u306e\u5024\u304c":28,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":80,modif:78,address:[132,98,7,103,78,28,175],"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067":70,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":89,throughput:[28,55],"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":89,commonli:[133,181],ipa:167,pentium:170,prefer:[132,78],"\u3092\u6307\u5b9a\u3057\u307e\u3059":[42,84,183,98,114,80,170,122],mitani:8 1,instal :[133,89,180,153],grn_pat_del:78,"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":114,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":98,droonga:101,value2:[59,37,152],value1:[59,37,101,9,152],scope:78,neologd:85,peopl:[133,85],tanuma:81,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":170,enhanc:43,visual:[136,133,126,7,102,78,28,81],"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":64,valuen:101,pgroonga:[78,12],"windows\u7cfb":153,genki:126,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":89,improper_link:175,recycl:81,"takahiro\u3055\u3093":156,index_titl:79,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":64,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":11,chroot:153,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":170,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":180,"\u65e2\u5b58\u306e\u 30c7\u30 fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":170,date:[56,76,133,46,170,158],data:[72,44,94,96,7,102,28,56,109,86,155,14,17,159,59,67,23,166,167,126,173,78,113,81,82,130,84,133,154,138],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":122,quot:[91,3,185,134,126,59,152],cannot:[56,109,185,95,115,40,152,193,55,66],int64:[46,109,81,126],grn_plugin_charlen:41,i686:170,grn_ja_skip_same_value_put:126,"\u30e6\u30fc\u30b6\u540d":170,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":121,implemnt:195,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u77e5\u308c\u307e\u305b\u3093":125,instantli:[133,33],grn_obj_init:80,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":194,"\u30ea\u30ea\u30fc\u30b9\u306b\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u306e\u3067\u6f0f\u308c\u306a\u304f\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":153,"groonga_clon e_dir\u3 06b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,didn:81,separ:[59,109,91,3,4,131,178,96,134,152,47,7,175,155,78,107,85,185],"_dataset":[65,190],operation_not_permit:175,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":80,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u6700\u65b0\u7248\u3068\u5404\u56fd\u8a9e\u7248\u306e\u5185\u5bb9\u3092\u540c\u671f\u3059\u308b\u305f\u3081\u306b":153,compil:[28,192,126,81,78],"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":114,grn_obj_path:[80,126],gtar:24,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":153,vervet:[78,14],internet:[133,160],formula:[168,76],"\u6700\u5f8c\u306e":170,million:67,"\u6700\u5f8c\u306b":71,mime:[78,55],"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b 9a\u3057 \u307e\u3059":25,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":114,"byte":[41,109,122,36,46,183,33,16,7,114,175,126,78,28,80,39,54,81],dest_key_s:114,"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":42,grn_op_adjust:[57,70],brasil:76,geoloc:[56,189,81,44],recov:84,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":94,oper:[56,109,111,44,126,7,137,60,160,78,192,39,81],grn_logger_reopen:7,onc:[109,131,5,188,7,28,79,193,81],beijin:76,reopen:28,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093":71,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":28,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\ u3066\u3 04f\u3060\u3055\u3044":71,open:[17,193,84,150,126,7,111,62,28,78,59,163,82],grn_obj_get_element_info:42,convens:7,convent:7,return_cod:[136,150],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":71,citi:[93,76,188],groonga1:11,fullfil:142,"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":153,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":64,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":80,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":170,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":80,grn_stack_over_flow:2,set_port:170,grn_obj_get_info:42,fumiyasu:28,grn_ctx_set_output_typ:16,"\u307e\u305fgroonga":170,column_list:[56,44,156,32,7,28,81],"\u90fd":[71,145,85],sai:[3,152],san:76,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e \u30aa\u 30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":184,"\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":35,argument:[41,3,12,98,48,7,101,103,149,52,76,152,16,116,163,126,186,110,175,28,79,81,181,33,37],sae:[155,18],"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":28,drilldown_limit:[157,166],uuuuuu:152,note:[41,3,98,7,146,9,104,78,149,55,167,109,110,152,13,66,69,23,168,126,173,28,81,131,132,133,140,103],"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,take:[142,27,3,104,96,137,60,62,169,37,128],"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":61,"\u30cb\u30db\u30f3\u30b8\u30f3":179,noth:[109,98,172,9,62,149,107,179],grn1:79,"\u30f3\u3092\u89e3\u6d88\ u3057\u3 07e\u3059":38,grn3:79,grn2:79,buffer:[87,126,16,127,78,79,80,39],compress:[74,126,7,28,192,81,195],"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":106,homepag:170,"\u30b5\u30fc\u30d0":98,max_valu:140,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":73,do_gqpt:170,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":171,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":170,grn_lzo_error:2,"obj\u306f":80,xml:[126,7,28,107,113,81],slow:[95,152,9,181,185],"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":16,too_many_link:175,grn_float_valu:78,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":170,clang:[7,78,180,126,81],"dump\u30b3\u30de\u30f3\u30c9":1,grn_invalid_seek:2,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,grn_ii_buffer_clos:87,requir:[167,13 0,24,133 ,14,126,7,154,102,28,192,82],embedd:78,"status\u30b3\u30de\u30f3\u30c9\u306f":83,aptitud:180,washida:126,where:[13,2,192],"cursor\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092value\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":64,"\u7a7a\u767d":98,regexplexicon:181,"namebuf\u306e\u30b5\u30a4\u30ba":[80,122],msg_control:78,ohzeki:81,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30b3\u30ed\u30f3":74,mani:[142,3,12,129,95,9,78,192,55,109,152,86,13,120,166,123,126,172,28,81,181,185,131,133,33,190,140,89,66,195],"\u30ed\u30b0\u51fa\u529b":8,"\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093":127,element1:[152,86],"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u304c\u7121\u9650\u30eb\u30fc \u30d7\u 3059\u308b\u554f\u984c\u3092\u4fee\u6b63":156,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u304c\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u3046\u3061":11,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":11,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":42,"object\u306b\u8907\u6570\u306ehook\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f\u9806\u4f4d\u306e\u9806\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":94,better:[133,79,109,81,152],"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f":153,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308 b\u60c5\ u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":42,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":98,score_adjust_expression2:109,score_adjust_expression1:109,parser:[185,181],resolut:[56,158],logical_range_filt:[56,32,44,78],former:[193,178],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":98,ctrl:[98,3,175],ivh:[167,130],html_untag:[56,162,126,44],set_host:170,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":114,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,ascii:[85,185,152],hash_tag:188,binari:[56,4,133,46,126,34,7,191,102,9,136,81,55,152],grn_proc_creat:54,"fedora\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,utf8:[124,192,98],"\u90fd\u6c11":[71,145],grn_operation_not_support: 2,"14671 0080x":188,"\u5358\u72ec\u306e\u5024":122,wiedenroth:81,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":170,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":182,grn_hook_select:94,"\u6771\u4eac\u90fd":[71,145,85],rest:[41,178],"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":170,"\u30cb\u30db\u30f3":179,"hat\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":114,haystack:70,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":170,"4096byte":[67,95,78],around:[93,33],"10043\u756a":98,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u 95be\u50 24\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":145,res1:114,bookmark_index:86,world:[46,85,75,81,126],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,intel:170,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":80,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":11,integ:[78,109,2,98,86],manag:[192,36,84,98,166,133,95,33,16,104,103,62,20,82,178,55,9],yyyi:[150,152],"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":1,"\u6700\u7d42\u66f4\u65b0\u6642\u523b\u306f\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u6709\u52b9\u304b\u3069\u3046\u304b\u306e\u5224\u65ad\u306a\u3069\u306b\u5229\u7528\u3055\u308c\u307e\u3059":84,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":84,grn_obj_is_bui ltin:[28 ,80],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092":153,edict2grn:81,definit:[109,76,185,12,186,123,163,166,33,48,7,116,101,97,149,110,181,173,152],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":54,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":153,reference_column:[78,109,81],ddl:[170,81],refer:[56,133,126,78,28,81],power:[109,181],"\u3053\u306e\u72b6\u614b\u3067\u3082\u4ee5\u524d\u306f\u30de\u30c3\u30c1\u3057\u306a\u304b\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":71,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":46,"\u30d3\u30eb\u30c9\u6642\u306etip":89,grn_get_default_command_vers:117,starttim:[3,4,83,103,9,175],"\u30b5\u30fc\u30d0\u30e2 \u30fc\u 30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":98,ffef:85,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":145,neighbor:133,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":89,"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":153,"flags\u306b\u306f":114,match_escalation_threshold:[156,192,166,16],effici:[133,79,86],"\u306b\u3042\u308b":80,agaist:7,charli:188,hex:[45,152],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":11,"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[28,156],grn_proc_func:[41,54,16],sid:[28,153,81,127],"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,bundl:[126,7,116,78,81,120],htpasswd:[9,55],no_kei:95,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306b\u3088\u30 63\u3066 \u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":98,categor:[109,91,47],pull:153,"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":74,"grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059":70,grn_ctx_get:[122,16],"org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":153,preconfigur:[154,130,14,142,167],reqular:132,gone:45,type_of_the_column:186,uid:153,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":42,"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":98,certain:75,"fedora\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f":156,grn_id_nil:[64,114,39,16],googl:[109,185,12,123,172,29] ,grn_sel ect:109,grn_ctx_open:[28,16],shimomura:7,"\u30ea\u30ea\u30fc\u30b9\u7528\u306b\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u306f\u4ee5\u4e0b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066configure\u3092\u5b9f\u884c\u3057\u307e\u3059":153,writabl:[78,81],"\u4e00\u65b9":71,logical_count:[56,32,44,78],item_dataset:[190,49],"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":70,vocabulari:3,geodet:[46,75],"debug\u3092\u8ffd\u52a0":156,nagano:81,queryexpandertsv:[22,56,44,126,7,116,10,177,30],"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":153,cpu:[132,192,170,9,195],senna:78,grn_type:[56,31,44],illustr:131,pluggabl:133,"\u521d\u671f\u5316\u3059\u308b":16,scr:170,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":89,grn_obj_set_info:42,too_small_offset:175,tail:[175,153],kosuk:126,webclip:110,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0" :[56,156 ],introduc:[78,89,9,81],candid:[132,155,179],too_many_open_fil:175,"4\u30ea\u30ea\u30fc\u30b9":78,colleagu:89,"yum\u306e\u5834\u5408":153,adjust:[166,126,81,86],small:[185,95,126,188,78,152,85,81,66],"flags\u306b":[114,122],"rid_max\u3092\u6307\u5b9a\u3057\u3066\u53d6\u5f97\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u5024\u3092\u5236\u9650\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":121,past:7,"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":74,pass:[76,3,84,153,185,116,181,9,104,78,28,152,113,103],grn_no_such_device_or_address:2,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":153,section:[41,53,91,143,12,87,96,98,47,49,102,9,104,146,192,128,162,167,109,76,86,14,59,123,60,18,118,62,63,181,134,66,164,120,69,50,23,122,166,137,24,126,175,189,78,79,178,179,81,82,130,185,131,188,31,32,154,138,140,89,90,51],"log_put\u306f":8,"debian\u7cfb":153,"files\u306e\u5b9f\u884c":89,delet:[56,1,44,156,32,126,7,20,28 ,78,80,8 1],"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":153,coremodul:9,contrast:[3,5,133,98,116,9,81],"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":145,hash:[152,95,126,7,78,28,66],"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":153,table_renam:113,jennif:144,sender:[132,65],tomygx:78,grn_column_renam:122,out_loc:170,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":16,social:45,action:126,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":94,via:[7,120,2,49],"\u6b21\u306bgroonga\u306etest":153,grn_logical_range_filter_threshold:78,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":145,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":84,"\u7701\u7565\u3057\u305f\u5834\u5408\u30 6f":68,d efine_selector:[56,32,44],select:[17,11,111,44,56,36,86,32,126,148,7,60,173,118,78,28,39,156,81],"log\u3068\u3044\u3046\u5f62\u5f0f\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u4f5c\u3089\u308c\u307e\u3059":170,mecab:[167,130,43,153,133,14,126,7,154,78,28,192,85,81,90],morn:115,mecab_new2:7,"lucid\u304b\u3089":156,more:[41,3,144,12,95,46,98,7,101,9,72,192,55,109,152,86,13,155,16,115,116,18,62,65,66,67,165,166,123,126,172,175,78,178,81,181,96,185,186,133,33,188,140,85],yokoyama:[126,81],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\u30b3\u30a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059":70,uint8:[46,156,96,126],"\u9375\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3060\u3051\u3067\u306f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u3 05f\u308 1":153,function_nam:136,grn_ctx_get_all_t:[78,16],"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":153,nomal:[7,109,9],cach:[17,1,166,133,126,7,118,78,80],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":70,uint64:[46,126,81],"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":153,endpoint:[132,65],"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":11,arg3_valu:181,learn:[155,109,126,166],"benchmark\u304c\u52d5\u4f5c\u3057":170,prompt:[7,102,3,4],scan:[180,163,185,48,152],accept:[76,3,92,132,133,175,97,98,7,75,81,104,36,28,79,188,128,55,152],"delete\u30b3\u30de\u30f3\u30c9":1,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63":28,groonga_cache_limit:126,"\u3053\u306e\u30aa \u30d7\u 30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":170,netinet:78,"search\u3092\u884c\u3044":[64,114],"select\u30b3\u30de\u30f3\u30c9":1,"\u5b9f\u884c\u4f8b":[11,180],simpl:[60,23,96,81],isn:[96,98,7,9,146,192,109,155,16,59,18,66,69,166,126,172,175,78,178,179,81,130,185,33,136,85,118],referenc:[109,131,126,7,173,66],bm25:[123,12],grn_obj_get_rang:80,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":171,conditin:185,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u69cb\u9020\u4f53\u306e\u5b9f\u4f53\u3092api\u306e\u547c\u3073\u5143\u3067\u78ba\u4fdd\u3059\u308b\u306e\u306b\u5bfe\u3057\u3066":16,github:[0,74,153,126,7,78,105,28,120,81,82],m64:24,tokenbigram:[166,165,91,185,12,186,123,95,163,109,98,33,48,115,116,18,47,169,106,152,66],"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":1,open_tag1:163,grn_obj_key_int:183,"\u30d 0\u30c3\ u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":127,sysctl:[140,168,90],trade:85,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":153,i386:[28,130,153],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":[83,98],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoutput_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,dest_kei:114,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":114,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":156,sauci:[126,81],html:[89,153],creat:[41,17,84,44,56,126,148,16,7,28,39,81,120],"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":98,grn_bulk:39,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":122,"\u30e6\u30fc\u30b6\u30fc\u3 0b5\u30d d\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":125,inada:126,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":153,"\u65e5":85,authent:195,achiev:23,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":153,found:[109,111,126,7,172,114,102,192,85],"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":94,with_posit:[3,92,12,96,48,109,152,116,115,71,165,166,123,163,74,186,79,181,185,188,33,140],procedur:[7,126],realli:[152,109,92,166,185],ftp:[170,153],"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":153,ftb:43,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":98,occurr:123,grn_column_index_upd:122," ctx\u309 2\u521d\u671f\u5316\u3057\u307e\u3059":16,grn_user_data:[56,31,54,44],grn_table_hash_kei:[114,111],"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":80,clumn:140,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":170,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":73,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":145,"\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u540c\u6642\u306b\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":11,major:138,"7\u30ea\u30ea\u30fc\u30b9":78,n_result:114,number:[133,138],"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[64,114,80,122],"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":156,file_corrupt:175,"org\u304c\u30db\u30b9\u30c8\u3092":153,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c \u7d0d\u 3057\u307e\u3059":122,relationship:[7,13,60,158,56],"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":153,grace:78,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":153,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":156,"\u307e\u305f\u540c\u6642\u306b":170,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":94,reus:95,grn_ctx_set_match_escalation_threshold:25,arrang:3,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":148,comput:[41,152,12,123,49,7,18,140,179],toybox:13,grn_hook_entri:94,"\u95a2\u6570\u306e\u8ffd\u52a0":1,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":135,gted:120,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":98,documenataion:136,self:170,also:[56,44,86,133,7,89,120],"keybuf\u306e\u30b5\u30a4\u30ba":114,"\u8a18\u53f7":[7 1,98],"m ultithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":114,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":80,lexcon:3,brooklyn:188,plan:144,"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":153,table_pat_kei:[12,96,98,48,101,106,109,152,86,116,60,159,66,47,166,123,163,126,186,128,181,185,33],cover:[133,33],"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":170,umemoto:28,ext:91,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":125,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[114,80,122],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":159,microsoft:[78,102],"\u3057\u304b\u3057":[71,46,145],"\u3068\u3044\u3046\u30ad\u30 fc\u30ef \u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":145,cache_limit:[56,32,44,78],escape_charact:39,session:[132,175,129],"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":170,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":1,columnn:7,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":153,solut:[56,85,40],factor:[109,81],"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":71,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth":153,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66 f4\u3059 \u308b":153,"\u826f\u3044\u306e\u304b":125,mainten:85,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":1,grn_table_cr:114,column1:[109,70,152,12,166,126,7,81],"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":70,column2:[109,70,152,12,166,126,7,81],"\u30bf\u30b0\u3092\u6253\u3063\u305f\u5f8c\u306bconfigure\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067":153,tetsuharu:81,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[170,98],showen:2,startup:7,grn_obj_is_selector_proc:78,see:[41,56,130,192,44,86,24,133,14,126,16,7,154,191,167,19,20,78,90,81,82],"\u306e2\u5358\u8a9e\u6271\u3044":145,sec:19,sea:[91,179],"list\u306bcontrib\u30bb\u30af\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\u3059\u308c\u3070apt":153,juman:167,speed:[28,172,95],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u8868\u793a":83,mutex:[41,126],"chroot\u74b0\u5883\u306e":153,javascript:[56,153,103,37,28,158,9],"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b \u306e\u 901a\u308a\u3067\u3059":106,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":156,bodi:126,last:[7,78,91,85,16],"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":64,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[71,145],whole:126,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":170,load:[56,44,156,126,7,78,28,113,81],rdiscount:153,"256kib":140,"\u30ed\u30b0\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u306e\u79d2\u3088\u308a\u5c0f\u3055\u3044\u5024\u304c\u5e38\u306b0\u306b\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":148,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":64,"5367431640625e":4,devic:133,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":71,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u309 2\u5b9f\ u884c\u3059\u308b\u305f\u3081\u306b\u306f":70,nonexist:[78,109,166,81],"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":64,searchu0000http:85,shinya:7,funa:81,func:[41,54,16],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":89,oldvalu:122,"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":74,error:[41,5,7,102,28,192,167,111,14,16,17,122,56,126,78,113,81,130,84,133,154,138,39],rep_gqpt:170,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":182,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":170,user_data:[41,54],"deprecated\u3060\u3063\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3068\u306a\u308a\u307e\u3059":11,needleess:7,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":16,obsolet:[78,142],n_builtin_type_nam:8 4,nanose cond:[136,150],x64:[102,153],grn_result_too_larg:2,shorter:[115,78],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u901a\u4fe1\u5c64\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30c4\u30fc\u30eb":182,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":180,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault":11,"org\u306edoc":153,alert:[6,98,8,9,150,81],"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":145,grn_db_create_optarg:84,stack:126,recent:118,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":61,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":127,normali:46,person:[56 ,138],"\ u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,do_gqtp:170,construct:[56,152,44,126,7,78,81],mysql:[167,109,43,12,86,133,163,14,134,33,48,154,172,193,178,130,81],"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":114,parenth:59,grn_tokenizer_error:2,input:[136,109,3,152,126,49,59,172,18,175,28,107,179],format:[41,56,43,44,32,7,107,113,81,120],"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":46,intuit:144,"\u5f15\u6570\u540d":98,"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":71,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":98,"\u30d3\u30eb\u30c9\u7d50\u679c\u304c\u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3055\u308c\u307e\u3059":153,encount:[167,130,14,154,102,138 ],"max\u 3068max_size\u304c\u6307\u5b9a\u3055\u308c":64,sampl:[48,7,101,9,10,149,109,76,116,159,65,22,166,163,170,186,110,97,177,132,33,173],"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":94,port_numb:[52,103,175],"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089name\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":16,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":70,"56058502197266e":4,machin:[98,81],keyword_cont:39,"aramaki\u3055\u3093":156,"ongaeshi\u3055\u3093\u304c\u5831\u544a":156,wget:[167,130,24,14,154,192],"gqtp\u306e\u5834\u5408":98,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":114,grn_expr_pars:39,grn_cursor_lt:64,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":71,"1gb":78,"\u884c\u3059\u308b":153,repair:113,"\u5f15\u6570\u3068\u3057\u3066":70,pcre:[7,9],span:[163,110,33,48 ],"\u578 b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":114,line_numb:136,submit:89,custom:[91,12,47,7,9,28,150,192,109,159,160,66,165,126,78,179,81,82,185,134,33,193,195],suit:[133,33,81],"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":153,"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,link:[109,185,131,13,7,103,78,81,152],line:[120,136,20,16,7,102,180,78,28,192,81,82],int8:[13,46,156,126,81],"10000cent":85,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":170,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":153,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":11,xxx_20150604:78,element2:[152,86],element3:86,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u 4f8b\u30 6fzsh":153,xxx_20150603:78,msg_id:153,"char":[41,84,183,124,16,114,80,39,54,81,122],taro:45,musha:78,invalid:[41,109,132,124,126,7,78,28,81,66],"grn_op_and\u306f":70,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":80,lucid:[156,126],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":145,wrongli:28,ago:179,algorithm:[28,76,118],"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":180,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":153,fresh:115,hello:[47,152,166,109,165,115,85],code:[56,5,44,136,32,126,7,153,78,89,39,81,120],partial:[78,179,70,175,172],"\u7a7a\u306e\u5834\u5408":[38,108],"\u672c\u8a9e":85,send:89,table_list:[56,44,156,32,7,2 8],sent: 55,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":170,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":94,"\u5b9f\u884c\u306b\u306f\u76f8\u5fdc\u306e\u30b3\u30b9\u30c8\u304c\u304b\u304b\u308b\u306e\u3067\u3042\u307e\u308a\u983b\u7e41\u306b\u547c\u3070\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044":114,"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":57,tri:[188,19],"\u306e\u5834\u5408\u306f":125,"try":[188,98,19,89,85,79,195],"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":153,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":156,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9\u306a\u3089\u3070groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u308a\u307e":161,video:45,odd:152,"1\u5358\u8a9e\u6271\u3044":145,tomoats u:[7,156 ],obvious:13,cenos6:7,let:[56,109,76,23,166,45,13,86,115,3,79,85,158],ubuntu:[56,82,153,138,20],layout:153,nterm:127,thatn:109,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":54,greas:13,ctx:[41,42,70,121,84,80,94,87,16,17,25,114,111,183,64,57,39,54,119,122],autoreconf:153,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":64,menu:[109,102],"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":64,location_str:188,"200byte":33,firefox:120,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3067\u306f\u3044\u304f\u3064\u304b\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u304b\u3089\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059":153,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":89,zip:[56,153,138],rid_min:121,grn_plugin_get_ruby_suffix:78,doubl:[59,109,91,3,185,95,46,134,126,7,78,28,152,81,66],upgrad:[7,81,195],next:[45,111,3,133,54,81],doubt:131,"http\u306e\u5834\u5408":98,"\u3053\u306e\u 30d1\u30 e9\u30e1\u30fc\u30bf\u306f\u6709\u52b9\u3067\u3059":109,comparison:[7,56],socket_is_already_connect:175,folder:102,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":70,"\u30b5\u30fc\u30d0\u3092\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308b\u5834\u5408\u3082\u3053\u306e\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5229\u7528\u3055\u308c\u307e\u3059":170,drill:188,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":156,process:[2,44,98,7,102,9,10,78,56,152,137,14,60,120,22,122,167,126,28,81,185,130,84,133,32,136,154,138,66],"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":145,high:[133,109,160,86],onlin:[56,44],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atable\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":114 ,"column \u306e\u5024\u304c":70,"128515259x503187188":[45,75],defalt:156,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,logical_table_nam:166,"\u30ed\u30b0\u30a4\u30f3\u53ef\u80fd\u3067\u3042\u308b\u304b\u306e\u78ba\u8a8d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u884c\u3044\u307e\u3059":153,gcc:[167,130,24,126,7,28,192],"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,alloc:[41,17,109,56,16,7,40,83,39,81],essenti:[154,14,9],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":156,seriou:[7,81],"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":170,element:[136,2,3,86,13,33,126,7,81],issu:89,"\u30ea\u30dd\u3 0b8\u30c 8\u30ea\u306bgnupg\u3067\u7f72\u540d\u3092\u884c\u3046\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,allow:[3,133,33,7,154,103,65],okapi:[123,12],posted_bi:188,"centos\u306e\u5834\u5408":153,movi:45,move:[7,88,102,28],lz4:138,sen_sel_term_extract:43,naist:85,comma:[3,152,131,13,59,78],"2st":109,"\u529b":[8,141],yamaguchi:28,perfect:[123,133],mitsuo:126,hobbi:150,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":70,total:[7,67,127],"\u5de6\u4e0a":1,"\u5de6\u4e0b":1,grn_hook:[56,31,44],murakami:[78,126,81],python:[129,153,20],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":156,billiard:[71,145],lzo:[7,28,74,126,81],highlight_ful:[56,162,81,44],"\u3053\u308c\u306b\u5bfe\u3057\u3066":145,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":153,subset:46,grn_file_too_larg:2,bump:[78,126,81] ,meta:[7 ,96],"static":[28,3,81,37],grn_too_many_symbolic_link:2,"table\u306ecolumn":114,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[83,147,6,73,74,127,8,157,159,161,194,106,38,141,108],"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":156,builtin_type_nam:84,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":89,ngx_http_proxy_modul:9,"squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":180,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":153,could:[7,13],mxcl:153,outsid:81,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":180,softwar:89,"\u5f15\u6570\u540d1":98,"\u5f15\u6570\u540d2":98,owner:[9,126],"po\u30d5\u30a1\u30a4\u30eb \u3092\u 7ffb\u8a33\u3057\u307e\u3059":153,index_messag:79,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":114,expnas:178,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":127,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":127,"\u30cb\u30db\u30f3\u30b4":179,licens:[7,43,153,81],system:[109,185,166,24,133,46,14,98,33,126,115,13,75,9,140,78,28,192,81,152],"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cdevelop\u3042\u308b\u3044\u306fdeprecated\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f":11,hash_kei:95,grn_table_get_kei:114,termin:[41,98,16,7,9,78,39,54],articles2:79,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":145,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":108,itagaki:156,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u3 07e\u305 9":71,grn_end_of_data:2,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":135,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":112,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":153,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":171,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":145,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":16,clearli:78,correspond:[109,23,166,155,49,172,18,37,80,179],"\u5f8c\u8ff0\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3054\u3068\u306egrntest\u306b\u3088\u308b\u52d5\u4f5c\u78ba\u8a8d\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":153,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\ u529b\u3 057\u3066":125,satoshi:81,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":156,source_column_nam:78,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":156,highlight_html:[56,163,162,81,44],thesauru:109,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":54,grn_obj_flush:78,oracl:[56,138],"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":135,segment:[7,127,81],"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":170,latin1:[7,192],grn_cursor_by_kei:64,"\u3067\u3059\u306d":125,brew:[90,20],grn_column_name_score_len:122,fact:[45,109],"\u62e1\u5f35\u5b50\u306f":170,dbm:[133,33],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[114,80,122],borderlin:[143,23,63],"\u4f5c\u6210\u3059\u308bdb\u306e\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u6642\u306b\u6307\u5b9a\u3057\u307e\u305 9":84,br ing:3,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":153,nois:[18,85],freq2:49,freq1:49,should:[41,7,102,192,167,109,152,86,14,16,59,18,20,66,175,128,178,82,130,185,36,154,138,193,39],jan:188,articles_cont:79,"\u30b3\u30e1\u30f3\u30c8\u884c":170,familiar:131,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":11,jiro:45,db1:55,db2:55,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":64,grn_column_t:122,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":11,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":98,"hat\u7cfb":153,candidate_1:132,grn_geo_cursor_next:111,candidate_2:132,"\u4e16\u754c\u6e2c\u5730\u7cfb":46,column_renam:[56, 44,32,12 6,113,81],"\u99c4\u76ee\u306a\u4f8b":125,grn_obj_lock:80,"munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0":1,"\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059":153,"\u3066\u3057\u307e\u3044\u307e\u3059":125,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":127,encodiong:152,grn_plugin_expr_var_init:[41,81],max_command_vers:[3,4,83,103,9,175],grn_obj_user_data:119,"ueno\u3055\u3093\u304c\u5831\u544a":148,tld:131,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[183,114,57],"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":71,grn_type_cr:183,zenigata:45,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":145,index_friend:45,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6 307\u5b9 a\u3057\u307e\u3059":54,entry_20150708:166,entry_20150709:166,quotat:[91,134],"\u5b58\u5728\u3057\u306a\u3044\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":156,insuffici:13,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":64,"\u305d\u308c\u305e\u308c\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5\u3068\u306a\u308b\u6761\u4ef6\u304c\u3042\u308b\u306e\u3067\u63a1\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u5341\u5206\u691c\u8a0e\u3057\u3066\u304f\u3060\u3055\u3044":71,grn_obj_unlock:80,grn_cache_clos:17,accident:126,spain:76,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":156,tokenkytea:7,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":170,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3 042\u308 bstatus\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":83,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":170,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":114,ultra:45,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":61,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":54,site:[45,109,3,131,13,137,75,103,159,160,79,81],archiv:[56,192,153,138,120],"_avg":109,grn_ii_estimate_size_for_lexicon_cursor:78,"count\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u305f\u306a\u3089\u3070":83,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":64,output_column:[7,157,126,81,86],"\u30ad\u30fc\u30ef\u30fc\u30c9":148,expans:[56,109,7,116,28,178,158],"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":80,"dist\u3067\u751f\u6210\u3057\u305ftar":153,grn_obj_get_valu:[28,80],countri:[173,103,131],php:[7,153,81,129],expand:[22,56,109,44,126,7,10,177],off:[28,85, 9,81],di nam:160,exampl:[164,133,89],command:[41,17,156,44,56,120,133,86,126,16,7,102,20,105,28,78,192,81,82],ecmascript:[7,109,160,126,152],cutter_check_leak:180,akira:81,value_2:[3,103],orangain:126,web:[45,109,185,155,49,18,9,37,192],uncontinu:7,end_of_data:175,geo_in_circl:[28,162,126,44,56],broken_pip:175,"185428000x":76,dest:[13,182,98],five:[136,3,97],recurs:[105,153],"\u958b\u3044\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u304c\u591a\u3059\u304e\u3066accept\u3067\u304d\u306a\u3044\u72b6\u614b\u306e\u8ca0\u8377\u3092\u4f4e\u6e1b":156,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":127,"\u3053\u306e\u3088\u3046\u306bn":71,rep_gqtp:170,resiz:41,grn_plugin_regist:[41,148],"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":98,daylight:81,grn_cas_error:2,avoid:[56,109,40,81,126],hash_index:188,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":64,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc \u30c8\u 76f4\u4e0b\u306b":28,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":153,stage:81,iwai:[7,113,126],"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664":147,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":71,"id\u304c\u9023\u7d9a\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u5024\u304c\u6607\u9806\u306b\u683c\u7d0d\u3055\u308c\u305f\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092values\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":80,event_queri:[155,190,65,18,49,179],virtualbox:153,merg:[7,133,120],"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":98,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":153,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":46,"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u30 4d\u8fbc \u307e\u308c\u308b":194,"function":[41,56,109,43,153,44,132,133,136,180,126,16,7,9,78,81],cutter_debug:180,"\u307e\u3060\u89e3\u653e\u3055\u308c\u3066\u306a\u3044\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af\u306e\u6570\u3092\u793a\u3057\u307e\u3059":83,"\u691c\u7d22\u4f8b4":89,"\u691c\u7d22\u4f8b3":89,"\u691c\u7d22\u4f8b2":89,"\u691c\u7d22\u4f8b1":89,getenv:78,sigstop:126,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":156,count:[45,109,23,133,188,78],grn_table_cursor_delet:64,otherwis:[41,74,3,152,137,17,116,60,101,186,104,97,128,80,173,82],problem:[17,185,13,126,7,9,28,78,85,152],yuki:[28,81],"zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3082\u540c\u69d8\u306b\u3057\u3066grntest\u3092\u5b9f\u884c\u3057\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":153,bigram:[71,170,85,190],"int":[41,17,111,121,4,94,87,16,7,25,114,19,122,183,64,80,39,54,84],updated_at:71,jessi:[56,153,138],"\u3053\u306e\u60c5\u5831\u3092\u5 6de\u907 f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":71,againt:109,inc:[78,81],grn_obj_key_norm:114,mizuhara:78,grn_int32_value_float_valu:78,"init\u76f4\u5f8c\u306e\u72b6\u614b":16,nonexistent_command:78,varieti:45,variabl:[41,109,152,24,113,96,126,7,13,175,28,78,178,81],"edge\u306equeue\u306benqueue\u3055\u308c\u308b":135,repeat:[133,120],"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":70,grn_geo:[56,31,44],"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":127,"string\u306b":70,document_version_ful:153,kanji:85,rule:[166,109,91,81,55],dbmss:133,"scr\u3067\u3059":170,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":145,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068": 98,lgpl: 43,"const":[41,84,183,124,113,16,114,64,80,39,54,122],"\u6bb5\u843d\u60c5\u5831":122,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":114,spec:[7,28,126],"\u524d\u63d0\u6761\u4ef6":89,secsion:136,editrc:28,createfilemap:78,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":64,"status\u30b3\u30de\u30f3\u30c9":1,grn_cache_set_max_n_entri:17,"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":28,upload:153,msyql:86,unmanag:127,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":73,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":11,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u304b\u3089\u 59cb\u30 7e\u308btable\u306e\u30ab\u30e9\u30e0id\u3092res\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u683c\u7d0d\u3057\u307e\u3059":114,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":80,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":153,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":114,zunda:28,"\u547c\u51fa\u5074\u3067\u6e96\u5099":42,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":98,lock_clear:[56,32,81,44,108],"\u7de8\u96c6\u8ddd\u96e2":1,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":122,"obj\u3092unlock\u3057\u307e\u3059":80,aki:81,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":170,"\u9759\u7684\u89e3\u6790":89,"\u3092\u8ffd\u52a0":[28,156],"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308 b\u3088\ u3046\u306b\u3057\u305f":28,request_cancel:[56,32,81,44,36],"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":114,highli:[123,29,12],"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":98,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":157,column_remov:[56,32,81,44],kytea:[7,91,126,192],search_result:109,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":170,word:[165,178,72,185,12,186,133,160,109,49,7,172,18,188,78,100,85,179,81,152],exit_failur:5,work:[133,89,153],era:133,cache_hit_r:[3,4,83,103,9,175],"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"16gb":168,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":170,geo_in_rectangl:[56,1,44,156,126,28,162],indic:[76,3,144,126,91,150],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee 4\u306f\ u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":170,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":46,basebal:[45,79],"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":114,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":153,length:[7,41,13],"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":106,u0000http:85,recogn:133,"builtin_type_names\u306b\u306f":84,ahost1:181,after:[3,5,95,48,7,102,103,78,192,111,152,13,19,20,120,45,165,163,126,28,81,132,140,193,9],"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":145,lat:170,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":64,grn_is_a_directori:2,averag:[109,81],n_queri:[3,4,83,103,9,175],"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\ u4f9b\u3 059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":156,opaqu:[17,175],grn_fals:80,too_large_offset:175,wgs84geopoint:[45,76,131,13,188,46,75,111,103,28],order:[7,133,126,78],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":71,offici:[28,130,167,153,116],"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":121,"3\u30ea\u30ea\u30fc\u30b9":78,grn_default_query_logger_set_path:7,flexibl:[133,160,116],"web\u7ba1\u7406\u753b\u9762":1,"\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059":70,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":153,grn_network_is_down:2,grn_unknown_error:2,grn_obj_column_scalar:122,them:[3,12,13,192,167,109,76,86,88,14,59,19,120,166,74,75,175, 78,181,1 30,185,39,136,154,140,85],thei:[91,4,12,95,48,49,9,10,150,192,55,115,109,152,86,59,123,18,160,22,166,24,163,172,140,78,177,178,179,185,186,134,33,37,85],"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":61,fragment:38,comment_index:188,grn_plugins_dir:78,"break":[7,28,81,62],jinja2:153,deatil:109,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":170,"\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066db_api\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":145,grn_improper_link:2,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":89,ruby_load:[56,32,126,44],serach:18,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\ u3059":1 80,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":25,"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":156,network:[7,45,175,55],morpholog:[133,192,85,152],"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":94,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":127,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":11,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,standard:[59,46,3,9,175],vector_column:126,sequence_dataset:190,"\u30ad\u30e3\u30c3\u30b7\u30e5\u3057\u3066\u518d\u5229\u7528\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u4f4e\u3044\u30af\u30a8\u30ea\ u306b\u5 bfe\u3057\u3066\u7528\u3044\u307e\u3059":109,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":135,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u3084\u5b9f\u884c\u901f\u5ea6\u6e2c\u5b9a\u304c\u53ef\u80fd\u3067\u3059":170,regress:[78,126,81],grn_qlog_path:7,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":170,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":156,"valgrind\u3092\u7528\u3044\u3066\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u3084\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3057\u3064\u3064":180,independ:133,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[35,171],"ubuntu\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"srpm\u30d1\u30c3\u30b1\u30fc\u30b8\ u306a\u3 069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":153,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":80,"groonga_org_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":153,grn_proc_set_selector:81,john:[173,144],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":153,tokenfilterstem:[154,14,81],latitude_in_degreexlongitude_in_degre:152,"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":112,target:[91,48,7,102,104,192,59,109,111,86,17,116,20,66,122,163,28,80,81,84,33,137,39],provid:[142,3,4,12,95,96,98,49,7,9,55,167,76,5,14,16,116,18,181,53,172,178,179,81,82,130,131,132,133,31,154,191,195,103],shuhei:81,minut:[152,188,75,18,150,179],"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30 fc\u30b9 \u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":153,grn_text_valu:39,"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":84,"select\u306e\u51fa\u529b\u306b\u4e0d\u6b63\u306a\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3055\u308c\u305f\u6642\u306bsegv\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":1,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":89,latter:[193,178],indexbuf:122,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":61,"\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":125,usernam:[45,102],"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":180,gronnga:172,excut:126,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3 092\u305 7\u305f\u308a":125,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":127,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":61,protocol:[167,56,130,2,4,129,133,14,98,34,7,154,191,9,170,37,81,55],"column\u306f":122,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":71,latenc:170,"\u53c2\u8003\u307e\u3067\u306b\u904e\u53bb\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3078\u306e\u30ea\u30f3\u30af\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059":153,liblzo2:[154,14],keyword2:[7,163],keyword1:[7,163],grn_obj_key_with_si:114,optimum:9,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":89,awar:41,suffixsearchterm:[185,152],"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":125,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":1,languag:[133,89,191],accord:[13,76],o ld_relea se_d:153,res_tabl:170,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":145,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":114,address_is_in_us:175,ill:145,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092groonga\u306e\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u547c\u3073\u51fa\u3057\u5f62\u5f0f\u3067\u51fa\u529b\u3057\u307e\u3059":159,grn_obj_check:80,grn_ptr_init:[39,16],"\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059":106,com:[109,3,153,131,13,75,103,105,120,82],"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":194,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":153,"\u3059\u3079\u3066\ u306e\u3 0b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":11,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":170,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":54,"\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059":153,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,modifi:[168,192,103,92],"\u672c":85,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":153,macport:[56,138],snippet3:33,enginen:179,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":170,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":114,drilldown_calc_typ:[166,81 ],inhibi t:113,grn_ctx_db:16,gnu:[56,153,138,20],zlib:138,sourceforg:[78,153,26],grn_obj_prepend:80,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,aio:126,"\u5165\u529b":[6,106,194,108],adisk:181,cond:126,conf:[78,142,9,168,140],arg2_valu:181,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":180,grn_cach:[56,31,44],perform:[109,133,126,78,28,81],"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":25,warri:138,descend:[78,109,155],"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":156,exclam:78,gurunavi:78,"\u6771\u4eac":[71,145,85],unsupported_command_vers:175,"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":16,hana:45,hang:126,evil:152,hand:[109,186,13,133,116,9,79],"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b 9a\u3057 \u307e\u3059":94,thu:[23,92,133,190,100,75,79,65,81,185],o_binari:7,contact:120,thi:[91,3,4,12,7,9,76,13,14,16,17,18,20,23,24,186,28,31,32,33,85,41,46,48,49,51,55,167,192,59,60,62,63,66,53,69,50,74,75,78,79,80,81,82,84,154,89,90,92,96,98,101,102,103,104,107,109,86,116,118,122,123,163,126,128,130,131,132,133,134,136,137,138,140,143,144,149,146,150,152,162,164,47,166,168,175,97,177,178,179,181,185,187,188,189,190],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":153,"_score":[3,12,49,7,28,109,76,152,86,155,71,18,61,45,122,123,126,75,78,79,179,188,116],no_such_devic:175,"table_list\u306f":106,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":145,grn_default_logger_set_path:7,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":89,"\u3042\u308 9\u304b\ u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":153,"\u8ad6\u7406\u7a4d":70,grn_ctx_per_db:[28,16],"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":114,arai:78,"\u306ebase_version\u306e\u66f4\u65b0":153,scan_build:180,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":106,grn_op_but:70,night:[115,92],grn_column_name_id_len:122,grn_plugin_command_cr:[41,81],"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":183,normallexicon:193,grn_default_logger_get_rotate_threshold_s:78,"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":194,tokenbigramsplitsymbolalphadigit:[169,116,18],grn_obj_renam:80,tasuku:[78,43],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":145,overcom:23,grn_text_len:39,grn_pvector:[39 ,16],shi ft_ji:[192,85],grn_inappropriate_i_o_control_oper:2,repositori:[89,174,153],post:[109,111,166,153,126,7,78,81],"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":170,obj:[42,80,84,94,127,57,39,54,119,122],comment2:79,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":182,zxvf:153,"\u3068\u306a\u308a":71,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":125,"float":[7,78,109,76,136],bound:81,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":145,grn_ctx:[17,122,44,56,31,7,19],"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":89,"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":16,coverag:180,accordingli:9,wai:[0,3,4,131,86,133,160,126,7,116,9,188,89,79,65,81,92],"hiroshi\u3055\u3093":156,conbin:[109,160],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u518 5\u306b\ u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":35,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":122,event_dataset:[65,190],"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":153,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":71,"true":[1,147,3,92,12,6,46,165,48,137,47,146,101,104,10,149,110,128,108,115,109,76,152,86,13,194,59,116,60,157,63,144,96,66,22,45,69,50,23,166,123,163,73,126,171,74,186,75,173,97,79,177,81,181,185,131,188,33,35,8,193],"\u4e00\u822c\u7684\u306b\u306f":80,maximum:[67,109,23,152,12,13,36,166,175,97,168,3],inaccur:7,creteria:3,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":1,emit:7,mte:43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64," \u7d44\u 8fbc\u30b3\u30de\u30f3\u30c9\u306f":[83,147,6,73,74,127,8,157,159,161,194,106,38,141,108],fedoraproject:130,score1:70,score2:70,resource_deadlock_avoid:175,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":170,"\u8a9e":[127,85],"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":98,"32byte":78,test:[167,130,3,180,153,13,188,14,170,7,154,102,9,138,78,79,85,81,103],"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":156,memos_tag:101,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":74,scorer:[56,157,44,78],outdat:81,tajima:7,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":16,concept:81,masaharu:[7,113,126],"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":125,consum:81,"s3ki\u3055\u3093":156,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":125,"db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308 f\u305b\ u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,hubeni:76,value_typ:114,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":170,graph:133,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":6,must:[41,3,5,96,49,103,104,149,143,111,192,55,17,109,110,152,13,155,59,60,62,63,181,65,66,23,122,166,168,72,186,173,175,78,179,81,185,84,132,39,137,140,85],takiuchi:126,grn_default_query_logger_set_rotate_threshold_s:78,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":98,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":70,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":42,octob:81,"dump\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u5f8c\u304b\u3089\u8aad\u307f\u8fbc\u3 081\u308 b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u51fa\u529b\u3057\u307e\u3059":159,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ab\u30e9\u30e0\u540d\u306f":74,administr:[7,56,81],"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":80,grn_obj_unlink:[80,16],"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":153,"4gbyte":67,upper:[28,3,81,66],version:[43,143,4,98,7,101,102,9,104,10,149,78,108,11,152,153,137,14,16,123,117,62,63,181,22,50,23,122,166,24,170,126,83,76,28,128,177,81,185,84,159,187,36,154,193,85,195],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5\u306fgroonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3068\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059":11,akihabara:75,"groonga\u3084mysql\u306erpm":153,cost:[11 5,85],ad min_html:[28,98],"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":119,tables_buff:16,appear:[109,91,3,178,12,133,33,2,152,85,81,185],"\u7def\u5ea6\u306f":46,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063":125,nakamura:78,"source\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5fc5\u8981\u306a\u3082\u306e\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,gener:89,satisfi:[59,78,126],minagawa:[126,81],"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":170,redmin:81,table_hash_kei:[109,76,152,12,86,101,166,137,115,116,173,110,159,97,149,106,193,66],trial:133,"\u305d\u306e\u969b":153,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u7 93a\u305 7\u307e\u3059":98,behav:[132,76],"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":11,"\u5358\u7d14\u306a\u8a08\u7b97\u5f0f\u3067\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u305f\u3081\u9ad8\u901f\u3067\u3059\u304c":171,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u95a2\u3059\u308b\u4e0b\u8a18\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":64,regardless:78,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":125,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":180,output_typ:[37,4],freq0:49,mobil:133,"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,httpd:[53,17,130,167,153,44,56,14,126,7,154,104,78,28,113,81],grn_dat:28,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3 057\u307 e\u3059":80,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[89,174],key_typ:114,furigana:155,"grntest\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306fgroonga\u306e\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf\u3068grntest\u306e\u30bd\u30fc\u30b9\u304c\u5fc5\u8981\u3067\u3059":153,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":71,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":180,"_sum":109,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":153,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":80,prepar:[158,56,9,48,33],grn_table_sort_kei:114,cat:153,grn_illegal_byte_sequ:2,can:[2,4,5,7,91,9,10,76,12,14,16,17,18,19,20,22,23,186,28,31,33,36,37,85,41,93,47,48,49,167,192,59,60,62,66,69,74,78,81,82,84,39,154,90,0,95,96,98,101,102,104,107,109,110,86,178,115,116,120,123,163,126,128,130,133,134,136,140,146,1 50,152,1 55,159,160,162,165,166,172,118,97,177,113,179,181,185,191,193],clearlock:[7,56,32,81,44],"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":28,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":114,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,topic:89,abort:81,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":98,occur:[74,111,92,155,136,126,16,7,60,140,78,178,81],grn_between_too_many_index_match_ratio:81,multipl:[91,96,7,101,104,56,109,86,17,116,47,23,166,163,126,173,78,81,185,132,133,134],mpaa:97,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,uptim:[3,4,83,103,9,175],write:[109,143,185,188,98,100,137,181,20,77,79,192,113,81,152],grn_table_select:89,"\u6a19\u6e96\u5165\u529b":[83,147,73,74,127,157,159,161,38],flanc:76,grn_cursor_ascend:64,product:9,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5 408\u8a0 8\u3067\u3059":127,southern:7,uint:7,"\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059":70,"rb\u3092\u8ffd\u52a0":156,grn_too_many_open_files_in_system:2,favorit:120,grn_plugin_log:41,grn_operation_would_block:2,"\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":127,approv:81,increas:[109,91,86,123,133,76,27,140,146,78,169,85,181],tagger:133,still:[88,126,60,104,81,120],ieee:46,dynam:[113,133,3,9],window:[56,153,138],"\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066":70,"\u8a9e\u306e":85,drilldown_result:109,non:[136,109,185,126,7,62,78,85,152],loaded_valu:69,re cal:[133 ,85,160],rake:153,col2:80,col3:80,col1:80,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":114,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":42,half:193,alisa:116,now:[56,69,167,166,44,86,113,74,20,146,78,192,162,81,120],discuss:[0,26],nor:109,introduct:[89,15],drop:[7,28,126,81,78],u0000ful:85,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":106,"\uff4d\uff59\uff53\uff51\uff4c":[163,48],januari:[132,152],grn_encod:[56,31,44],domain:[41,88,96,98,7,60,78,106,80,39,81],replai:9,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":153,"takahiro\u3055\u3093\u304c\u5831\u544a":156,significantli:133,year:[188,97,152,150],grn_socket_is_not_connect:2,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":153,shown:[3,152],"\u534a\u5f84\u304b\u3089\u306e\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u305f\u3081\u306b\u5730\u5f62\u3092\u3069\u306e\u30 88\u3046 \u306b\u8fd1\u4f3c\u3059\u308b\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":171,space:[41,109,91,3,185,86,133,134,126,49,59,78,28,85,181],acccess:142,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":170,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":153,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":16,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":122,grn_db_kei:113,care:[109,23,185,123,96,179,120],"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":153,couldn:[7,78],arnaud:28,"175904000x8464000":76,british:92,grn_ctx_get_match_escalation_threshold:25,directli:[188,152],with_check:[134,81],yourself:138,column_n:186,size:[41,95,96,98,7,102,9,28,149,167,14,66,67,122,183,126,127,78,81,130,36,33,154,138,140,39],silen t:82,boo kmark:[159,86],"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":153,friend:[45,89],column_3:186,column_2:186,column_1:186,kenichi:[28,156],"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":11,"\u4e8c":179,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":46,"\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059":70,jacob16bit:78,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":80,than:[67,109,76,86,133,96,160,98,33,126,155,78,28,81,66],n_keyword:39,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":145,"key\u306e\u4e0a\u9650\u3092\u6307 \u5b9a\u 3057\u307e\u3059":64,"\u5dee\u5206\u3092":170,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":54,browser:[37,192,103,120],analysi:[133,192,152],grn_column_trunc:[122,81],grn_obj_compress_lzo:122,with_weight:[74,96,81,86],"txt\u306e\u5185\u5bb9":153,recover:[84,62],"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":80,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":106,"\u3059\u308b\u3068":180,begin:[182,85,181],"6813819x139":[13,75],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":98,price:13,renam:[3,95,126,7,60,28],"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":28,"\u3068\u308a\u3068\u3093":[185,152],"6909211x139":75,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u 3068\u30 6a\u308b\u306e\u3067":125,gobject:78,host_name_or_ip_address:[103,175],mrb:166,"groonga\u30d7\u30ed\u30bb\u30b9\u5185\u306e\u6307\u5b9a\u3057\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":127,"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u3053\u306e\u3068\u304d":145,concurr:150,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":89,"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":114,record_2_column_1:109,record_2_column_2:109,pakcag:167,onli:[41,93,142,2,3,144,5,95,98,48,7,91,102,9,104,146,152,107,79,55,59,109,110,12,137,13,155,14,17,116,62,181,66,159,166,167,123,163,115,186,75,173,118,97,78,29,178,81,82,130,193,185,128,133,33,154,138,37,120,85],"\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e \u4e00\u 89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":71,"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":70,"\u3050\u308b\u3093\u304c":[185,152],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":156,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":6,overwritten:75,record_2_column_n:109,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"128mb":7,allow_pragma:109,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":11,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":171,error_loc:136,"\u3084red":153,"configure\u306e":28,sport:45,"\u304c\u5fc5\u8981\u3067\u3059":153,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":61,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":1,n_like:[109,185,166,136,140,152],"\u30d0\u30c3\u30d5\u30a 1\u306e\ u72b6\u614b":127,between:[56,109,44,98,126,7,60,28,80,162,65,81,66],"import":[91,12,100,7,9,192,55,109,153,86,16,17,66,123,126,28,29,178,185,133,32,85],"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u5f8c\u306b\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u884c\u3044\u307e\u3059":153,pthread_:126,"groonga\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3057\u305f\u7d50\u679c\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306b\u9650\u308a":71,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":84,instroduc:126,nearbi:133,"\u305f\u3068\u3048\u3070":145,tutori:[7,41,81,56],grn_encoding_pars:124,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092 \u660e\u 793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":153,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":153,grn_too_many_link:2,exploit:133,"debian\u7cfb\u3082\u3057\u304f\u306fr":153,rebuild:78,invers:[123,81,12],"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[42,80],"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":182,emphas:110,rubi:[69,43,153,12,86,133,163,129,48,7,146,160,149,78,181,81,82],"\u30d3\u30eb\u30c9\u306b\u6210\u529f\u3059\u308b\u3068":153,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":98,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":80,"edge\u306fctx\u3092\u542b\u3080":135,"\u307e\u305f\u306fctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":16,"\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c \u58ca\u 308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc":1,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":16,grn_resource_temporarily_unavail:2,"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":74,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":16,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":74,develop:[133,89],etc:[142,3,153,13,168,7,154,9,140,89,178,55],media:81,epoch:[13,188],document:[133,89,153],do_loc:170,finish:[150,104,5],someon:188,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":127,eito:126,repoforg:[7,130],theater:92,grn_permission_deni:2,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":114,appveyor:81,key_nam:109,"_post":153,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u630 7\u5b9a\ u3067\u304d\u307e\u3059":114,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":156,grn_column_name_scor:122,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":98,isssu:126,mmap:[56,40,126],"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":28,desktop:102,"\u30ad\u30fc":98,grn_plugin_proc_get_var:[41,81],real:[133,46,109,33,140],swig:43,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":170,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":98,invalid_argu:175,benefit:142,grnwrap:3,cascad:[126,81],output:89,unsplit:[109,70],"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":114,grn_ii_buff:87,logical_filt:143,"146249000x":188,ff9e:193,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[147,6,73,8,157,194,108],name2:152,"\u30d9\u30af\u30bf\u306e\u5024\u3092":156,grn_no_such_file_or_directori:2,usage_default_and_custom_scor:12,unicod:[78,193],"\u30b3\u30de\u30f3\u 30c9\u30 d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":170,grn_bad_file_descriptor:2,src:[13,154,153],central:188,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":98,degre:[13,28,75,152,86],backup:[84,159],processor:[167,133,130,14,154],unregist:[22,177],"\u53f3\u4e0b":1,"\u53f3\u4e0a":1,"\u305d\u306e\u305f\u3081":[71,145,170,159,153],"\u56fa\u5b9a\u9577\u30ab\u30e9\u30e0\u306b\u30ab\u30e9\u30e0\u9577\u3088\u308a\u77ed\u3044\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u30b4\u30df\u304c\u6b8b\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":156,your:[133,89],"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":182,log:[56,153,138],area:133,aren:[93,109,185,166,95,33,7,9,140,78,81,55,66],start:[41,4,7,102,150,55,109,76,152,115,60,120,2 3,166,12 6,172,28,178,179,81,185,132,136,37,85],lot:126,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":170,submiss:[155,18,179,49],"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":171,ealier:7,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u30921\u884c\u306b1\u3064\u305a\u3064\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":170,"2\u884c\u76ee":170,grn_not_socket:2,"default":[133,138,20],"\u6a19\u6e96\u5165":[8,141],"\u3068\u5171\u306b":122,invalid_seek:175,multibyt:28,pseudo:[56,72,122,44,126,7,81],"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":112,decreas:[78,85],value_1:[3,103],prepend:[152,9,185],valid:[109,3,185,166,13,95,126,49,7,28,81,152],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u 3092\u63 07\u5b9a\u3057\u307e\u3059":94,grn_obj_add_hook:94,you:[2,3,4,5,7,91,9,10,76,12,88,14,16,17,19,20,22,23,186,28,29,32,33,36,37,85,41,93,13,46,47,48,49,55,167,192,59,60,62,63,65,66,45,69,74,75,78,79,81,82,84,39,154,89,90,0,92,129,95,96,98,26,101,102,103,104,105,107,109,110,86,113,116,118,120,122,123,163,126,128,130,131,132,133,134,136,137,138,140,142,143,144,146,149,152,155,159,160,162,164,165,166,168,173,175,97,177,178,179,181,185,188,190,191,193],string2:112,string1:112,poor:178,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":64,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":80,grn_object_corrupt:2,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":64,reduc:[142,92,133,126,7,18,95,78,55,181],"n_builtin_type_names\u306b\u306f":84,naoya:[78,126,81],"\u30c1\u30e3\u 30f3\u30 af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":127,"\u3092\u683c\u7d0d\u3057\u307e\u3059":122,drilldown_offset:[157,166],month:[150,78,188,152,45],"launchpad\u306b\u767b\u9332\u3057\u305fkeyid":153,"4byte":175,articl:79,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":74,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":170,zlib_error:175,mechan:[7,9,55],"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":11,veri:[59,109,185,12,45,166,133,163,33,48,7,95,136,181,179,55,152],"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":122,patsuffix:144,atsushi:[78,81],query_flag:[7,166],masafumi:[126,81],"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":70,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":127,"\u547c\u51fa\u5074\u3067\u306f type\u30 6b\u5fdc\u3058\u3066\u5341\u5206\u306a\u30b5\u30a4\u30ba\u306e\u30d0\u30c3\u30d5\u30a1\u3092\u78ba\u4fdd\u3057\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":42,groonga_dir:153,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":145,"benchmark\u7528\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u5206\u3067\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u65e2\u5b58\u306e\u3082\u306e\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":170,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":153,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":114,learner:[53,56,81,44,190],"\u95a2\u6570\u306f":[35,112,70,171,68],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":127,naoina:[7,126],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":170,too_many_symbolic_link:175,"\u63a5\u7d9a\u5148\u306e \u30db\u 30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":182,snippet1:33,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":64,snippet2:33,cve:81,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":94,amount:7,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":64,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":180,score_1:132,score_2:132,hoge:[98,112],famili:[91,152],"1024r":153,"\u305d\u306e\u5834\u5408\u306b\u306f\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u3054\u3068\u3084\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u3054\u3068\u306a\u3069":153,"\u30c8\u30e2\u3061\u3083\u3093":45,"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":80,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u3 0d7\u305 5\u308c\u307e\u3059":153,almost:[28,109,140,168,129],bash:[78,192],"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":145,fulltext:[167,93,109,91,185,166,116,95,163,14,98,31,48,33,154,152,79,193,130,142,66],"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":1,groonga_vers:28,score_n:132,histori:28,nine:3,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,user_input:152,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":84,grn_db_int:80,phrase:7,string:[41,56,70,80,86,36,124,113,126,16,7,78,136,28,59,39,54,81],"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":119,anoth:[109,133,7,39,78,178],spreadsheet:178,snippet:[7,43,33,126],grn_expr_syntax_escap:39,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308 c\u307e\ u3059":153,"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":122,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":153,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e00\u884c\u305a\u3064eof\u306b\u9054\u3059\u308b\u307e\u3067\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u8aad\u307f\u53d6\u308a":98,unlink:39,allow_column:[109,185],assign:126,grn_table_group:114,egg:79,narwhal:28,logrot:[7,81],akinori:78,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":153,help:[88,138,120],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":156,grn_proc_funct:41,soon:[93,33,55],"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,paramet:[41,42,44,94,7,102,28,57,54,56,111,117,16,17,114,19,25,119,121,122,183,124,126,64,78,80,113,81,84,36,39],"\u3 04a\u304 b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":156,systemd:[7,78],"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":153,"\u5024\u306e\u7bc4\u56f2\u306f1":61,shimada:7,comments_cont:79,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":71,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":70,"\u7279\u6b8a\u547d\u4ee4\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4efb\u610f\u306e\u5834\u6240\u306b\u66f8\u304d\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":170,range_error:175,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":64,sentens:78,"groonga_org_path\u306bgroonga":153,iff:3,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":153,fulli:[7,9],yito:[7,126],heavi:[109,129],grn_column_nam:122,"\u30b9\u30ec\u30c3\u30c9\u6570":170,"\u30d5\u30a1\u30a4\u30eb":153,todo:[42,143,94,87,57,54,109,111,86,117,16,114,63,25,162,119,50,121,12 2,166,18 3,124,151,64,77,80,84,139,134,190,136,58,39],event:55,"\u3080\u308b\u3093\u304c":[185,152],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":153,proxy_pass:9,publish:[153,81],"\u691c\u7d22\u5bfe\u8c61\u306e":71,trusti:[14,153,81],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":74,"shutdown\u306f":141,"1\u30ea\u30ea\u30fc\u30b9":78,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3084command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bgroonga\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u305f\u969b\u306b\u306f":11,pub:[130,153],asc:153,reason:[109,152,131,168,142,7,62,181,85,179,55,66],base:[142,91,12,48,49,7,9,104,192,167,109,111,152,14,18,65,120,123,163,126,187,179,81,130,185,132,133,33,154,188,37,195,85,103],grn_ctx_fin:[7,16],put:[185,123,140,78,37,181,81,120],"groonga\u53ca\u3073gro onga":17 0,rect:[7,76,171],basi:3,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_port\u304c\u512a\u5148\u3055\u308c\u307e\u3059":170,due:[133,33],interact:[3,175],"\u4fee\u6b63":78,"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":11,placehold:126,miss:[126,7,78,28,178,81],"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":114,conditional_probability_threshold:[28,155],station:[93,75,188],zeromq:192,schema:[12,48,101,149,109,76,152,115,116,18,159,23,166,123,163,186,110,97,79,181,185,33,190,173,140],"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":156,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":145,"max\u3068common":64,grep:[154,130,14,167],jqueri:81,"\u4efb\u610f\u306edb\u540d":170,str:39,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u 30c9\u30 92\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":80,"windows\u5411\u3051":153,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"null":[41,91,48,7,106,54,109,111,16,17,66,69,70,166,163,126,110,118,28,81,33,137,39],"table1\u3068table2\u304b\u3089\u91cd\u8907\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u3044\u305f\u7d50\u679c\u3092\u305d\u308c\u305e\u308cres1":114,option:[136,130,167,84,20,24,96,14,126,7,154,118,28,78,192,113,81,90],"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,lib:[22,142,166,156,126,9,62,10,177],"2\u306e\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3063\u305f\u969b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u8 84c\u305 7\u307e\u3057\u305f":153,"56880000x":76,elapsed_tim:[136,150],"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":171,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":180,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":11,grn_snip:[7,81],tokenbigramsplitsymbol:169,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":180,grn_proc_get_typ:81,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":114,clear:[122,153,7,137,28,80,81],grn_too_many_open_fil:2,clean:[180,78,166,153],newvalu:122,weight_in_weight_vector:86,latest:[89,26],grn_ctx_t:2,pretti:81,"\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30f c\u30c9\ u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059":153,wanab:126,yml:82,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":11,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":156,grn_connection_refus:2,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":180,"\u3082\u3057\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u4e2d\u8eab\u306b\u95a2\u308f\u3089\u305a\u52d5\u4f5c\u3092\u7d9a\u3051\u3066\u3057\u307e\u3044":170,grn_get_default_encod:124,grn_obj_compress_zlib:122,remot:[56,98,175,158],"\u68ee\u7530":45,"\u82b1\u5b50":45,grn_hook_get:94,doc_bodi:92,"\u306b\u3066\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059":153,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\ u524d\u3 06b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":109,grn_obj_is_lock:80,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":71,close:[59,95,163],"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":74,grn_table_at:[156,114,80,113],"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":170,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":74,isob:126,numer:[56,152,185,158,78],no_locks_avail:175,both:[3,95,102,72,55,167,109,152,86,14,115,166,123,74,75,175,78,179,181,130,185,188,33,136,154,138,133],grn_range_error:2,geopoint:76,"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[6,98],condition2:152,condition1:152,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u6642\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\ u30fc\u3 0b8\u3092\u3088\u308a\u89aa\u5207\u306b\u3057\u305f":156,jeff:144,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":114,"000x":120,too_small_limit:175,header:[7,24,126,81,78],"\u623b\u308a\u5024\u3067\u3042\u308b":121,linux:[56,153,138,20],tokenbigramignoreblanksplitsymbol:169,"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":170,stamp:[150,18,179,49],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":70,"null\u306a\u3089temporari":84,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":122,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":108,"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":108,grn_table_sort_desc:114,c ombind:1 85,"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[35,171],grn_table_cursor_get_kei:64,coordin:[13,76],unpatch:43,look:2,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":171,"while":[115,91,133,126,7,137,60],"\u691c\u7d22":[7,56,109,156,21],"\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b":98,grn_zlib_error:2,grn_column_name_value_len:122,loop:[7,81],pack:138,malloc:81,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":170,readi:[109,152,166,7,181,20,192,185],readm:[126,153],fedora:[56,153,138,20],belong:[46,72,131],grand:188,octal:152,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306e\u89e3\u6d88\u3092\u884c\u3044\u307e\u3059":80,src_kei:114,imagin:[109,131],optim:81,grn_set_default_match_escalation_threshold:25,temporari :[7,56,7 6,98,44],user:[46,48,49,7,102,9,104,150,192,55,109,152,116,60,18,96,45,23,170,126,172,173,97,78,128,179,81,185,186,132,36,33,136,140,89],"takuto\u3055\u3093\u304c\u5831\u544a":156,"\u306e\u30ab\u30e9\u30e0":[38,108],"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":54,older:[78,188],input_output_error:175,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":114,"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":114,nise_nab:81,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":71,"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"\u5408\u308f\u305b\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044":153,nginx:[167,130,14 ,126,7,1 54,78,81],"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":114,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":125,address_is_not_avail:175,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":127,grn_table_sort:114,signal:81,resolv:[12,86,123,7,28,29,38],elaps:[4,132,46,136,150,28,152],"32bit":[78,46,126],"\u304c\u306a\u3044\u5834\u5408":153,popular:[78,109,98,166,86],"\u30c7\u30d5\u30a9\u30eb\u30c8":70,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":114,creation:[28,3,126],some:[91,5,46,26,7,39,104,150,192,167,12,86,116,19,181,162,120,67,165,23,166,126,78,81,152,185,133,190,136,191,36,140,66,85],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":38,label_1:109,label_2:109,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u 3044":17 0,"\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3057\u307e\u3059":[6,8],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,slash:152,entry_bodi:74,run:[89,180,153,120],label_n:109,stem:[154,165,14,81],step:[3,13,49,102,181,192,120],"\u3082\u3057test":170,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u305d\u3053\u3067":71,grn_no_memory_avail:2,idf:[123,81,12],"index_cursor\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u6307\u5b9a\u3057\u305ftable_cursor\u306e\u73fe\u5728\u306e\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u8fd4\u3057\u307e\u3059":121,block:[13,152,9,126,66],libzmq:[154,14],grn_no_space_left_on_devic:2,"93933868408203e":4,grn_expr_append_obj:[70,39],within:[188,75,18,179],"\u30ea\u30f3\u 30af\u30 92\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":153,grn_obj_key_uint:183,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":153,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":71,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":170,askmonti:81,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":114,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":145,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0":28,pangolin:[7,14],tokenbigramignoreblanksplitalpha:85,hereaft:133,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":153,newer:[78,81],info:[6,98,123,8,9,181],utc :[136,15 2],"0xc7":175,utf:[43,4,132,126,193,7,192,85,152],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":11,"column_create\u306f":74,munin:[154,130,138,167],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":70,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":170,"_max":109,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":125,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":153,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":124,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":114,doesn:[41,93,91,92,12,95,96,7,9,104,192,55,109,152,115,60,18,19,66,165,166,123,126,97,78,178,179,81,181,185,33,136,140,193,85,195],repres:[45,92,13,98,160,181,39,152],"homebrew\u306e\u 66f4\u65 b0":89,before_instal:82,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":153,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":80,pronounc:160,titl:[45,109,3,185,12,112,13,166,126,137,123,186,103,159,153,79,131,29,81,152],drilldown_calc_target:[166,81],accross:7,grn_ctx_close:[28,81,16],"root\u306b\u5909\u66f4":156,sigcont:126,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":156,draw:45,"groonga\u5358\u4f53\u3067test":170,"\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30ad\u30fc\u304c\u5e38\u306bgrn_nil\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":156,"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":80,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":125,io_flush:[56,32,44,78],eval:146,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":15 3,kawaji :7,groonga_org_path:153,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":11,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[180,153],"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"146741340x":188,ruby_script:146,friendli:7,nippon:179,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":170,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":145,"\u5185\u90e8\u7684\u306a\u5909\u66f4":153,button:[7,126,120],hemispher:7,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":98,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":28,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":64,download:[167,130,153,24,14,154,102,192,90],click:109,grn_obj_decr:80,onigmo:[78,81,181],experiment:[143,48,7,104,78,146,17,62,63,69,50,23,166,123,1 63,126,2 8,177,113,81,181,84,187,134,33,85],"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":153,"\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":1,"null\u4ee5\u5916\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306fpersist":84,becom:[13,133,46,43,76],accessor:[78,114],convert:[2,152,13,95,188,78,193,81],copyright:81,blogroonga:89,"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":170,chang:[133,20,126,7,78,28,192,113,81],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":61,danger:[137,60,84,55,122],grn_plugin_mutex_clos:41,"boolean":[56,43,126,185],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":108,query_expand:[22,177,126,166,10],query_expans:[28,126],"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u304c\u5b9a\u7fa 9\u3055\ u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[147,73],soundkitchen:[7,28],mismatch:81,about:[41,0,2,44,93,134,96,98,47,26,49,7,101,9,104,78,146,150,192,128,123,56,109,76,12,86,155,14,116,60,18,19,91,20,169,152,162,120,164,69,27,23,166,167,24,113,126,74,186,173,118,189,28,29,178,179,81,82,130,185,137,36,32,136,154,181,138,140,85,90],"23t02":152,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":153,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":156,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":114,"shibuya\u3055\u3093":156,retriev:[133,109,152],"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":153,min_siz:64,meet:[188,75,81],mitsuhiro:156,control:[160,7,116,9,97,81],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":171,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u3 0b9":153 ,sudo:[167,130,192,153,24,168,14,142,7,154,103,20,140,90,180,82],directory_not_empti:175,grn_domain_error:2,"\u8907\u6570\u306e\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":74,tokendelimit:[169,91,49],"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,narg:39,"\u6a19\u6e96":[6,106,194,108],"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":153,int16:[46,156,126],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":114,decrib:9,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"tokenmecab\u30c8\u30fc \u30af\u 30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u5f8c\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":145,rakutan:79,otehr:66,encyclopedia:46,normalizernfkc51:27,table_token:[56,32,44],kisk:7,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066groonga\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u9759\u7684\u30da\u30fc\u30b8\u3092\u683c\u7d0d\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[80,122],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u751f\u6210\u6642\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u756a\u53f7\u306b\u53cd\u6620\u3055\u308c\u307e\u3059":153,"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":70,"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3 044\u305 1\u307e\u305b\u3093":80,sysconfig:142,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":156,"\u3053\u306e\u5834\u5408":64,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[114,80,122],grn_plugin_proc_alloc:41,read_only_file_system:175,grn_ctx_set_command_vers:16,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":153,handl:[168,2,13,95,126,16,9,140,78,85,81],auto:[7,155,81],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":38,succeeded_or_not:[137,60,173,128],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":8,parameter1:9,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":153,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":170,column_information1:96,column_inform ation2:9 6,"\u3053\u306e\u4f8b\u306f\u65e5\u672c\u8a9e\u3060\u3063\u305f\u306e\u3067tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u3088\u304b\u3063\u305f\u306e\u3067\u3059\u304c":71,"uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4":1,"\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":83,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":170,chunk:[78,168,140,127],"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":180,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":170,special:[109,2,3,185,163,33,48,126,136,175,91,19,181,37,192,39,120],groo:[132,109],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u6e21\u3055\u308c\u308barg\u3068\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,suitabl:[109,166,12,123,95,98,115,85,81, 66],goro o:129,grn_geo_estimate_in_rectangl:[28,111],new_vers:153,"quit\u306f":161,"\u3092\u6307\u5b9a\u3059\u308b\u3068":[64,122],manipul:160,grn_match_escal:[56,31,44],"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":170,latitude_in_msecxlongitude_in_msec:152,keep:[67,115,86,16,17,28,85],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":156,geometri:28,largetext:95,"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":180,grn_cursor_by_id:64,"scorer\u306f":109,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":157,buf_siz:[114,80,122],"groonga\u30b3\u30de\u30f3\u30c9\u306b":156,mkdir:159,attach:[165,193,120],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30af\u30ea\u30fc\u30f3\u306a\u72b6\u614b\u3067\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b":153,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[71,46,170],"final":[41,109,9,5,86],travi:164,"\u30ea\u30e a\u30fc\ u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":153,exactli:168,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":1,"20km":188,"groonga\u306f":180,beg:[85,181],sequence_queri:190,extrct:152,stdin:113,concatin:[7,132,126],logs_20150205:23,logs_20150204:23,logs_20150203:[143,23,63],tabl:[56,70],need:[91,3,4,5,95,98,48,49,7,102,9,104,10,152,78,107,79,55,92,109,192,12,86,16,17,123,18,20,144,181,66,22,23,166,24,168,75,175,140,28,29,178,179,81,82,130,193,185,128,133,134,33,136,85,37,120,39,132],border:[7,91,97],fluent:105,grn_obj_search:57,"0x08":175,"0x04":175,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":156,"0x01":175,"0x02":175,"\u30ed\u30b0\u3092":153,ifexist:59,singl:[109,91,3,86,134,126,59,81],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u95a2\u3059\u308b\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3057\u307e\u3059":109,"\u30d7 \u30e9\u 30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":156,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":153,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":80,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":71,kazuhiro:126,url:[159,28,81,55,37],uri:[37,9],grn_table_upd:114,fontain:28,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":114,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":64,grn_index_cursor:[56,31,44],"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":182,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":121,ssssss:150,object_corrupt:175,"146867000x":188,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d 42\u4e86 \u3059\u308b\u3068":153,grn_obj_is_proc_proc:78,launchpad:[14,153,81],"\u3053\u308c\u306f":71,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[106,98],"\u3053\u308c\u3067":153,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":71,"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":11,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":80,enabl:[89,153],"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":153,"masahiro\u3055\u3093":156,gram:[133,91,3,152],"output_columns\u304b\u3089_value\u3092\u524a\u9664":156,contain:133,kawada:81,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":71,orphan:126,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\ u308b\u3 0ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":70,korea:131,scorer_tf_idf:12,statu:[56,130,2,44,167,14,32,126,7,154,173,81],correctli:[7,78,3],wibowo:126,tend:79,written:[22,188,10,20,128,81],benchmark:[53,56,44,126,7,81],grn_retry_max:2,ken:45,kei:[67,59,23,166,153,56,133,143,86,126,7,114,173,104,63,64,78,80,113,81],grn_no_child_process:2,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":127,regular_express:181,"\u578b\u306e\u30ab\u30e9\u30e0\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":121,eclips:120,"\u3053\u306e\u307e\u307e\u3067\u306f\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u8868\u793a\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":71,admin:[156,126,7,78,28,81],jersei:188,"\u3059\u3079\u3066\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3067\u540c\u3058\u540d\u524d\u306e\u95a2\u6570\u3 092\u30a 8\u30af\u30b9\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"po\u306e\u5b9f\u884c":89,"\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e":125,cutter_source_path:153,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":80,"\u5185\u8a33\u306f":71,"\u304c\u3042\u308a\u307e\u3059":153,quit:[56,32,153,44],addition:[78,75],cent:85,quiz:45,"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,treat:[93,109,91,23,152,166,143,126,7,18,63,78,179,81],"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[147,6,73,8 ,157,194 ,108],downcas:193,"\u65e5\u672c":[85,179],"\u6709\u52b9\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u591a\u304f\u30d2\u30c3\u30c8\u3059\u308b\u305f\u3081\u306b":109,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":106,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":114,delimit:[91,13,133,126,49,78,85],drildown:[56,158],main:[154,153],"12gb":168,glossari:82,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":28,longitude_in_msec:152,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":54,demo:45,redcloth:153,welcom:[109,185,166,88,188,26,152,89,120],grn_table_cursor_t:64,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u591a\u304f\u306a\u3063\u305f\u5834\u5408\u306f\u6307\u5b9a\u3059\u308b\u5024\u3092\u4f4e\u304f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":71,speaker:26,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63" :156,"\u 691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":157,crch:91,entry_selector:157,nsubrecs_column:122,http:[44,98,7,102,9,104,192,56,153,86,14,159,120,53,167,24,170,126,78,81,82,182,130,133,154,191,90],"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u518d\u73fe\u7387\u3092\u3042\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":71,effect:[7,59,188,98,78],"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,rpmforg:130,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":89,well:[23,133,33,126,103,192,9],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u30 67\u3042 \u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":161,"blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":71,undefin:13,"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":80,lcov:180,distanc:[93,76,152,133,7,75],koi8r:[7,192,98],remove_blank:134,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":80,"log_reopen\u306f":194,bc009774:153,patricia:[56,3,185,95,126,7,78,28,152,158,66],"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":153,grn_ctx_get_command_vers:16,"\u3067\u533a\u5207\u308a\u307e\u3059":98,logger:[7,78],"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u6 91c\u7d2 2\u3057":57,int32:[3,12,46,49,7,128,109,76,152,86,155,71,60,18,45,123,126,75,97,79,179,81,185,131,188,116],ryoji:81,pikonyan:45,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":61,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":170,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":127,title_index:12,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":170,dat_kei:95,tomita:156,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":182,grn_file_corrupt:2,necessari:[28,3],"\u4e0b\u8a18":64,page:[56,126,26,7,78,120],"\u4e3b\u30ad\u30fc\u304c\u6570\u5024\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3067\u306e\u6bd4\u8f03\u6f 14\u7b97 \u306b\u5bfe\u5fdc":156,lager:126,use_offline_index:113,revers:[56,153],assgin:152,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[182,98],"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":114,out_http:170,home:[192,85,166,153],tatsuya:7,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":74,index_column:81,nihon:179,estim:[78,111,168],grn_obj_key_float:183,grn_obj_remov:[28,80,78],"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":145,"10t13":[18,179,49],win64:102,"\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4":1,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":170,"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30 b0\u30e1 \u30f3\u30c8\u306e\u6570\u3067\u3059":127,offset:[41,111,94,7,114,157,64,78,80,39],"blog_body\u7d22\u5f15":71,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":170,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":1,empti:[109,185,46,126,78,28,96,81],groonga_query_log_path:[126,81],"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":148,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":98,museum:188,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":170,"\u3053\u3053\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bruby\u3092\u5229\u7528\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u3092web\u30b5\u30fc\u30d0\u7d4c\u7531\u3067\u53c2\u7167\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":153,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":98,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307 e\u3059" :70,suzuki:7,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":145,gronga:[172,178],overflow:[13,28,126,81],ear:91,quetzal:7,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059":70,fullwidth:78,displai:7,limit:56,"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":127,"\u611f\u8b1d":78,"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":145,evalu:[152,185,126,186,146,85,181],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":98,"\u521d\u671f\u5316\u3055\u308c\u305f":16,"aramaki\u3055\u3093\u304c\u5831\u544a":156,eric:97,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u3 07e\u305 9":80,blog1:79,blog2:79,new_valu:109,futur:[69,76,23,86,134,126,175,146,28,55,181],rememb:109,halfwidth:193,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":64,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":28,sphinx:[153,88,20,15,81,120],katagiri:126,table_remov:[7,56,32,126,44],"\u3068\u540c\u3058\u610f\u5473":98,max_concurr:182,"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":184,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":125,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":89,whose:[3,152],accur:[133,33],"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":153,grn_io_vers:81,"0x20":185,escaped_queri:39,kentaro:126,swap:140,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u 305f":1, "lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0":156,"void":[41,84,5,124,114,25,117,19,64,80,113],voic:193,is_anim:13,affect:[7,78,126,81],"\u306f\u7121\u52b9\u3067\u3042\u308a":64,parameter_name1:37,parameter_name2:37,demerit:95,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":98,correct:[56,44,132,155,7,51,78,178,179,81],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":171,vector:[56,72,44,126,7,78,28,81],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"10m":9,batch:7,"10z":152,"\u30b0\u30eb\u30fc\u30d7\u5316":61,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":1 70,even: [167,130,23,152,123,133,14,126,7,154,102,138,79,179,81],"\u3064\u307e\u308atest":153,neg:[41,109,2,16,7,19,78,54],spokesman:89,"debian\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"\u3050\u308b\u3093\u304c\u592a\u90ce":45,"new":[133,89,153],net:[45,3,153,131,13,26,75,103],ever:126,metadata:[69,12,123,188,7,146,29],elimin:126,behavior:[7,116,85,81,97],never:[78,192,155],"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":170,met:186,grn_log_level:41,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":153,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":80,grn_parse_query_flag:78,jame:144,sji:[192,43,98],serch:[155,18],yamada:81,"\u691c\u7d22\u7d50\u679c\u3092\u30af\u30a8\u30ea\u30ad\u30e3 \u30c3\u 30b7\u30e5\u306b\u6b8b\u3057\u307e\u305b\u3093":109,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":182,grn_expr_exec:[39,16],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3067\u304d\u308b\u74b0\u5883\u3067\u3042\u308c\u3070groonga\u30b3\u30de\u30f3\u30c9\u306e\u77e5\u8b58\u304c\u306a\u304f\u3066\u3082groonga\u306e\u52d5\u4f5c\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059":170,"\u826f\u3044\u4f8b":125,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u524d\u306b\u3059\u3067\u306b\u95be\u5024\u304c\u8d8a\u3048\u3066\u3044\u308b\u5834\u5408":71,concret:[45,79,109,131],overhead:[142,81],typo:[126,7,18,78,28,178,179,81],recommend:[167,109,3,185,142,129,14,130,55,136,154,101,102,103,138,140,181,85,81,152],drilldown_result_for_labeled_drilldown:109,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":16,arg1_nam:181,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":117,under :[132,55 ,9,37,192,65,81],"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":80,warp:81,warn:[109,6,98,126,7,123,8,9,150,113,81,181],set_groonga_error:166,"\u4ee5\u4e0b":170,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u4e8b\u524d\u306b\u6e96\u5099\u3057\u305f\u8f9e\u66f8\u3092\u7528\u3044\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b\u305f\u3081":71,setup:[120,126,82],neolog:85,akio:[7,28,126,78],root:[37,98,9,126,103],give:[133,116],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":70,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":25,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,max_tp:182 ,drilldo wn_result_for_column2:109,drilldown_result_for_column1:109,unsign:[41,2,122,87,17,114,183,64,80,39,54,81],"\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u4ee5\u4e0b\u306eurl\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059":153,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":11,log_level:[56,32,44],n_kei:114,updag:7,n_hit:109,config:[1,98,7,102,28,192],sato:78,grn_arg_list_too_long:2,sitedomain:[103,131],"\u30b9\u30fc\u30d7":145,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":70,permission_deni:175,third:[13,96,109,152],maintain:85,grn_text_printf:81,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u5834\u5408\u3082\u91cd\u307f\u4ed8\u3051\u3092\u8003\u616e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3053\u3068\u306f\u304b\u 308f\u30 8a\u3042\u308a\u307e\u305b\u3093":71,romaji:179,"twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927\u306b\u7e4b\u3052\u308b":125,"cutter\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3066cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u53d6\u5f97\u3057\u307e\u3059":153,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":84,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":73,privileg:[103,126],keyboard:109,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":171,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":112,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":54,persist:[56,44,96,114,60 ,106,66] ,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":64,anim:45,"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":156,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":171,leaner:65,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":153,grn_exec_format_error:2,cache_previ:17,side:[7,133,109],mean:[41,93,2,143,96,98,7,91,9,104,150,3,192,109,107,152,86,13,155,19,63,23,166,123,168,126,186,75,111,78,178,179,81,181,185,131,39,137,140,193,85],"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":16,enorm:45,blog_comment_index:186,grn_obj_compar:80,extract:[120,109,133,33,48,7,186,102,78,192,39,81,66],"hiroshi\u3055\u3093\u304c\u5831\u544a":156,content:[41,12,96,9,28,55,109,110,152,115,116,45,165,166,126,186,175,78,79,81,185,188,33,136,140],rewrit:43,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u305 7\u307e\ u3059":64,situat:109,ncpu:90,mdev:78,lzo_error:175,"\u4e0d\u6b63\u306a\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u3068\u304d\u306bdump\u3059\u308b\u3068\u843d\u3061\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":156,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":16,isk:181,iso:152,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u306f\u7279\u6b8a\u30b3\u30de\u30f3\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059":170,wgs84geoppoint:111,cpuinfo:[154,130,14,167],plugin_regist:[166,56,32,159,44],grn_snip_clos:81,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":71,hook:82,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":170,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":156,sometim:81,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306f\u30d1\u30c8\u30 ea\u30b7 \u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":145,grn_cache_get_max_n_entri:17,iptabl:[103,55],"\u5358\u4f4d":[183,171],"push\u3057\u3066groonga":153,"80ghz":170,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":98,mkostemp:81,conveni:[23,133,191,28,192,179,195],keyword:[45,109,3,185,12,172,123,163,33,48,126,7,116,79,39,66],"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":98,grn_expr_get_var_by_offset:39,modern:188,mind:67,mine:133,"\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":28,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u308 1\u306bc onfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":159,regular:[132,56,9,44,78],tradit:[133,81],"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":170,don:[3,4,12,96,98,49,9,28,107,55,17,109,192,152,86,16,59,66,123,175,78,29,178,81,193,185,39,137,138,37,120,85,103],doc:[92,153,88,20,126,7,9,28,78,113,81,120],"\u8a18\u53f7\u3068\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":71,doe:[109,3,185,86,13,133,126,7,186,9,62,155,142,152],logyyyymmddhhmmss:132,grn_not_enough_spac:2,dot:7,"longtext\u306e\uff13\u3064\u306e\u578b\u306b\u3064\u3044\u3066\u306f\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u4fdd\u5b58\u3057\u305f\u308a\u51fa\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u304c":46,"\u904e\ u53bb\u3 06e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":125,keybuf:114,"\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u51fa\u529b\u5148\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":170,syntax:[56,44,86,126,7,78,39,81],"\u65e5\u672c\u8a9e":179,yoji:28,acquir:19,explain:[13,3],"_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":1,"root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408":98,"\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u3088\u308a\u8fd4\u3055\u308c\u308b\u5024\u304c\u5909\u308f\u308a\u307e\u3059":127,record_id:78,grn_obj_is_function_proc:78,cosmo0920:[126,81],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":64,stop:[165,12,123,98,109,126,7,60,9,78,28,29,81],grn_plugin_fin:41,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30 a8\u30f3 \u30c8\u30ea\u306b\u306f":153,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":11,attr_setpshar:126,bar:66,"md\u30d5\u30a1\u30a4\u30eb\u306epublish":153,reload:178,bad:[133,126,81],"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":42,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":73,veres:55,all_record:7,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":170,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":46,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":170,old_releas:153,"\u5b9f\u884c\u3067\u304d\u307e\u3059":153,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":145,subject:126,brazil:131,libgroonga:[164,3],grn_function_not_impl:2,simplest:[133,192,12,36],illegal_byte_sequ:175,attribut:[91,110,27,134,169],nfkc51lexicon:193,threasd:98,"\u30d0\u 30c3\u30 af\u30b9\u30e9\u30c3\u30b7\u30e5\u6587\u5b57\u81ea\u8eab\u3092\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":98,"100x150":35,"\u534a\u5f84":171,str_ptr:41,"takuto\u3055\u3093":156,replied_to:188,key_length:175,"\u30af\u30a8\u30ea\u306e":71,string_liter:81,"\u6539\u884c\u6587\u5b57\u306f":98,against:[56,109,84,45,185,133,86,98,49,7,18,158,152,128,39,179,81,122],"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":180,"\u95a2\u6570\u304c\u5f15\u6570\u3092":1,grn_queri:7,"twitter\u7de8":89,grn_op_cal:70,grn_expr_var:[41,54],g721d5c7:83,grn_obj_clos:[70,121,81,80,16],three:[109,76,23,131,86,13,163,126,136,123,60,18,160,3,79,179],"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":153,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":11,"1285858800\u306f2010":71,interest:[89,3,181],basic:[7,133,109,81,56],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\ u6307\u5 b9a\u3057\u307e\u3059":153,suppress:[7,113,81],"2\u30ea\u30ea\u30fc\u30b9":78,multithread:104,servic:[142,133,126,7,18,140,78,81,82],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":84,calcul:[93,109,76,132,188,126,7,75,146,81],"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":153,groonga_cli:152,seven:[23,3],datail:109,theatr:92,"key\u3092\u8fd4\u3057\u307e\u3059":80,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":98,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":80,"\u691c\u7d22\u306e\u6319\u52d5":56,receiv:[152,132,133,175,98,16,9,65,120],make:[133,89],column_list_head:96,meetup:78,"_kei":[3,92,12,96,47,49,7,101,9,149,110,128,55,144,109,76,152,86,13,155,59,60,18,61,159,45,165,122,166,126,186,75,173,97,79,80,179,81,185,131,188,136,140,193,103],msg_controllen:78,zlib1g:[154,14],unicorn:14,"\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\ u30bf\u3 0d5\u30a7\u30fc\u30b9\u307e\u3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059":70,"8byte":175,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":70,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":122,inherit:126,"grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":74,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":98,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,left:111,identifi:[46,173],just:[17,130,192,84,5,167,24,120,14,126,7,154,102, 138,78,2 8,80,81,82],sigusr1:28,"\u6771\u4eac\u90fd\u6c11":[71,145],human:[96,66],"\u73fe\u5728\u306f":[182,170],yamamoto:81,yet:[93,69,23,152,12,123,133,166,109,126,146,28,55],"table\u304c":114,defrag:[28,32,126,44,56],uint16:[46,126],"worker\u306f":135,save:[132,168,79,153,81],applic:[164,152,133,98,33,55,9,28,178,81],"bigram\u306e\u5834\u5408\u306f\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":145,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":153,background:98,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":153,nomral:[109,185],daemon:[7,126,81],vdw:[75,3,131],manual:[56,81],grn_obj_expir:80,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":108,mrubi:[69,153,126,146,78,81],unnecessari:140,cxxflag:24,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5 \u30a9\u 30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,intern:[13,33,16,17,126,78,107,113,81],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":106,insensit:[109,181],"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":145,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306b\u9650\u308a":145,tracker:89,"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":70,localhost:[182,4,153,132,170,98,9,104,55,175],range_filt:[56,32,81,44],new_release_d:153,"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":8,grn_cursor_gt:64,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":180,promot:126,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u30 6erpm\u3 06b\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,grnline:3,"\u305f\u3068\u3048\u3070\u4e0b\u8a18\u306e\u3088\u3046\u306bgroonga\u306e\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u63a8\u79fb\u3057\u307e\u3059":11,postgresql:[133,33],"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059":153,update_buffer_s:87,"\u30c6\u30b9\u30c8\u306f":180,grn_ctx_recv:81,commit:[81,120],"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[182,98],meerkat:28,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":74,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2 \u7167\u 3057\u3066\u304f\u3060\u3055\u3044":25,sphr:[76,171],down:[56,126,81],contrib:153,"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":170,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,editor:120,fraction:[13,133,188],storategi:109,fork:[98,120],grn_content_tsv:107,infom:16,tokenbigramignoreblanksplitsymbolalphadigit:169,form:[109,3,185,132,188,175,160,126,9,52,28,193,103],sub1:[109,166],forc:7,grn_obj_db:84,"4e86e700":168,entries_20150708:166,entries_20150709:166,"txt\u306b\u307e\u3068\u3081\u307e\u3059":153,grroonga:172,"\u5426\u5b9a":70,auth_basic_user_fil:[9,55],"dump\u304c\u51fa\u529b\u3059\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306f\u76f4\u63a5groonga\u304c\u89e3\u91c8\u3067\u304d\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u3059":15 9,unrel: 28,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":11,classif:131,featur:[91,143,189,98,48,7,50,9,104,78,109,76,86,155,16,116,62,63,169,66,27,23,166,163,160,28,177,81,185,84,133,134,33,120],kwic:33,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":68,grn_obj:[42,111,121,84,44,56,94,87,31,16,7,78,39,81,122],"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":54,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":61,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":35,score_function2:12,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":98,tokenbigramignoreblank:169,excel:178,"defrag\u306f":38,"web\u30 b5\u30a4 \u30c8\u304b\u3089\u6700\u65b0\u7248\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":153,matur:[142,191,23],escaped_charact:39,faction:188,grn_ii_cursor_set_min:78,why:[109,126,142],calc_typ:[109,166],fsf:7,data_set_nam:155,"scr\u306e\u4e2d\u8eab\u304c":170,vmstat:168,ignor:[109,91,84,178,95,134,126,7,173,104,78,28,85,81,185],reply_to:79,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,logs_message_index:181,n_entri:118,"152489000x":188,skip:[78,3,126,81],segv:126,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":38,force_prefix:[78,91],depend:[133,89],"max\u3068pat\u6728\u4e0a\u3067\u8fd1\u3044\u4f4d\u7f6e\u306b\u3042\u308b\u30ce\u30fc\u30c9\u304b\u3089\u9806\u756a\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u 308a\u51 fa\u3057\u307e\u3059":64,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":180,marku:7,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,cutter_dir:153,query_str:126,"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":28,"0mq":126,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":153,grn_obj_set_fin:54,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":74,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":153,proc:[41,167,109,94,14,126,154,130,54,119],iter:152,dic:167,item:[142,155,109,49,18,179,55,66],round:28,dir:170,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78 ba\u8a8d \u3057":114,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":153,strerror:81,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":156,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":170,shinoda:[78,81],"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":68,deriv:[142,65],"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":145,wait:[41,19],box:109,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":61,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059":11,grn_true:80,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":159,raccoon:45,bob:[ 109,185, 188,116,60,9,97,128,55],grn_content_json:107,drilldown_result_for_kei:109,modul:[133,156,81,56],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":127,result_too_larg:175,sako:78,univers:14,perl:9,nokubi:81,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":74,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":114,grn_proc_typ:54,"_min":109,ooo:95,apper:109,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":70,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":73,grn_plugin_proc_get_var_by_offset:[41,81],commands_column_list:96,tokyo:[75,76],"\u4ee5\u4e0b\u306e\u3088\u3046\u306bgroonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u5148\u304b\u3089\u306e\u76f8\u 5bfe\u30 d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":153,uniqu:[132,104],ull:91,"256kb":168,predict:[95,85,66],"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":54,"\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059":125,libmemcach:180,grn_no_buff:2,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":145,normalizs:66,map:[109,23,168,140,28,150,78,179],"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":170,max:[17,126,7,28,64,78,81],mac:[56,138],grn_obj_append:80,assigend:185,mai:[164,12,95,96,7,9,104,78,146,192,79,55,152,155,17,60,62,181,66,67,45,69,23,122,166,123,126,28,29,178,81,185,84,133,134,136,137,140,85],underscor:66,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u307 8\u306e\ u5909\u63db\u65b9\u6cd5\u3084":46,table_dat_kei:[185,126,106,66,81,152],grn_expr_get_keyword:39,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":145,"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":28,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":182,talk:[78,126,26,153],feb:23,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":71,pointer:41,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":70,entiti:133,group:[109,166,133,126,7,186,81],monitor:[154,130,14,126,167],polici:126,"\u5b9f\u9a13\u7684":78,vector_s:[56,162,44,78],resource_temporarily_unavail:175,initi:[41,5,132,16,7 ,78,28,8 1],lunch:133,"no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8":1,"cutter_source_path\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306bcutter\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":153,"groonga_dir\u4ee5\u4e0b\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":153,"\u5fa9\u53f7\u3057\u305f\u9375":153,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":80,massachusett:188,"groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u7f72\u540d\u7528\u306e\u9375\u3092\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306e\u516c\u958b\u9375\u3067\u6697\u53f7\u5316\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306epackag":153,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":170,"\u3053\u306e\u7d50\u679c\u306f":170,gzip_typ:55,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2 \u6570\u 304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":156,continu:[91,98,126,7,18,85,81,82],ensur:18,unlock:41,nroonga:[116,79,82],"memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f":180,"3rd":[109,126],compress_lzo:74,"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":11,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":170,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":153,uint32:[3,92,46,7,103,106,128,144,109,152,86,115,60,96,66,45,165,166,71,126,186,75,173,97,79,81,181,185,131,136,140,193],"\u624b\u7d9a\u304d":54,earlier:[28,128,193,78],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30ed\u30b0\u95a2\u6570\u3092\u7528\u3044\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u306b\u5bfe\u5fdc\u3057\u3066\u3044\u307e\u3059":194,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\ u3059":1 83,debootstrap:153,org:[3,102,9,192,167,110,153,86,13,14,159,120,45,24,170,75,103,78,81,130,131,154,90],prefix_search:[28,155],"128487316x502920929":[45,75],grn_table_renam:114,"\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":71,"\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059":125,"marverick\u306b\u5909\u66f4":156,frequenc:[12,123,155,100,187,78,81],"grn_op_adjust\u306f":70,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":106,thing:78,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":145,think:[123,29,109,12,152],frequent:12,first:[41,142,3,92,12,96,48,102,9, 104,28,1 92,55,109,152,13,16,66,45,166,163,126,78,79,178,81,181,185,132,188,33,136,120,85],"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":153,"vmware\u306a\u3069":153,key_norm:[115,109,193,3,92,71,188,185,33,7,116,140,79,152,66],fast:[93,91,3,12,95,48,101,72,55,109,76,152,59,66,45,166,123,163,110,79,181,185,133,33,136,195],crit:[6,8],grn_geo_cursor_open_in_rectangl:111,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":71,workaround:[78,81],"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":61,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":28,memo:[165,12,123,116,101,149,29],key_siz:114,broadcast:188,"value\u304c\u5c5e\u3059\u308b\u578b":106,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":114,proxy_cache_valid:9,patprefix:144,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":46,longitudexlatitud:126,yoshioka:7,poyonga:129,grn_db_touch:[156,84],were:[76,3],zsh:192,"\u8a2d\u5b9a\u30d5\u30a1\u3 0a4\u30e b\u3092\u6307\u5b9a\u3059\u308b":1,dash:192,grn_invalid_format:2,properli:[7,78,103,185],katakana:[155,193,85,179],squar:76,timeuot:19,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":170,record_n_column_1:109,"256gbyte":67,normal:[56,130,44,167,14,126,16,7,154,78,107,113,81],beta:43,pair:[109,13,49,172,18,178,179],"143660000x419009000":76,synonym:[109,178,92],grn_default_query_logger_get_rotate_threshold_s:78,"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[38,108],"\u539f\u56e0":[56,40],shop:[115,145],lexicon:[56,159,78],"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u3092\u516c\u958b":156,show:[93,1,2,3,4,12,48,7,103,78,52,107,109,76,152,13,59,116,45,23,166,123,163,126,186,75,173,175,97,28,81,181,185,131,133,134,33,136,188,19 2,110,85 ],"\u62c5\u5f53\u8005":153,threshold:138,"\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":70,black:[93,193],"\u30c6\u30fc\u30d6\u30eb\u540d":[106,38,108],"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":71,tamano:81,variou:[56,158],get:[41,91,98,26,7,78,192,56,109,111,153,14,16,17,20,120,47,118,28,81,133,154,37],"\u3092\u8a08\u7b97\u3059\u308b":1,wheezi:[56,153,138],"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":156,gem:153,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_host\u304 c\u512a\ u5148\u3055\u308c\u307e\u3059":170,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u306710\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u6642\u306b\u5b9f\u884c\u3059\u308b":170,tokyogeopoint:[76,46,35,75,111,28,171],median:81,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":1,summari:[56,126,44],wiki:9,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":114,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":71,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":28,sear:179,enci:170,masahiro:[156,126,81],japan:[75,173,103,131,179],therubyrac:153,infinit:[7,28,81,66],record_n_column_2:109,enumer:3,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":170,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":114,label:[166,78,126,81],enough:[133,79,168, 81,78],a cross:76,parent:[109,9,166],unknown_error:175,column_vector:[45,109,86,13,188,96,126,74,186,173,149,81],"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":194,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":98,"\u5bfe\u7b56\u65b9\u6cd52":[56,40],"\u5bfe\u7b56\u65b9\u6cd51":[56,40],recrod:109,"\u3088\u3063\u3066":46,dump_plugin:78,"\u5206\u5272":145,grn_expr_clos:39,nogpgcheck:7,"\u3060\u3068\u539f\u56e0\u306f":125,grn_cache_open:17,record_n_column_n:109,among:[7,13,45,158,56],grn_obj_delete_hook:94,"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":170,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":170,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":145,inappropriate_i_o_control_oper:175,cancel:[36,104,81],grn_proc:[56,31,44],"ruby\u306erake\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\ u30de\u3 0f3\u30c9\u306b\u3088\u308a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":153,gnupg2:153,mark:[165,188,113,142,78,193,85,81,66],"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":11,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":87,grn_too_small_offset:2,grn_init:[7,150,5],senboku:126,i18n:[89,15],those:[109,76,3,4,172,24,133,160,185,33,49,13,193,95,152,192,113,55,120],sound:[18,193],hdd:170,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"8\u306b\u5bfe\u5fdc":156,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":98,advantag:[133,142,33],"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":170,brasillia:76,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\ u5f62\u5 f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":170,"1\u3068command":11,pat:[7,113],candidate_n:132,drilldown_result2:109,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":89,drilldown_result1:109,same:[3,12,129,9,104,10,55,109,152,86,13,16,59,116,18,19,22,166,123,126,75,78,79,181,185,36,136,37,193,39],speech:[133,85],pai:109,"\u30b3\u30de\u30f3\u30c9\u304cquery\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u3059\u308b\u306e\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":145,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":153,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,grn_command_version_st:117,entries_key_index_20150708:166,grn_table_dat_kei:114,"\u540c\u3058\u3067\u3059":170,montywi:113,grn_address_is_not_avail:2,macro:[28,126,81,78],markup:[88,78],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30 92\u8fd4 \u3057\u307e\u3059":16,argument2:[152,12],"clone\u3057\u305fweb\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u65b0\u898f\u8ffd\u52a0\u3057\u307e\u3059":153,argument1:[152,12],"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":80,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":182,document_vers:153,execut:[91,44,96,47,7,102,104,10,146,106,78,192,56,109,86,155,16,59,60,169,66,22,69,27,23,166,126,83,173,118,28,128,177,81,133,134,136,137],grn_obj_fin:[39,16],"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":98,monei:45,mcdonald:93,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":121,column_name_1:109,column_name_2:109,enable_tokenized_delimit:9 1,"db\u3 06eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":80,"\u697d\u3057":[71,145],value_column:122,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":114,column_name_n:109,evaluated_valu:146,either:[0,109,152,126,97,79,181,185],quantal:7,operation_not_support:175,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":153,ascend:[93,75,3,109,131],testdb:[170,65],"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":114,confirm:89,table_no_kei:[109,23,185,137,123,163,33,48,115,116,181,173,159,78,106,152,81,66],valuebuf:42,str_length:41,"\u30cb\u30c3\u30dd\u30f3":179,event_typ:190,broken:[84,126,7,137,62,78,28,81,122],regexp:[78,81],"128452975x503157902":[13,45,75,103],"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":98,"_set_valu":113,"x\u306e\u304a\u77e 5\u3089\ u305b":78,"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":156,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":153,column_type_n:109,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":64,strip:110,"tomita\u3055\u3093\u304c\u5831\u544a":156,yyi:120,drilldown:[56,166,157,126,61,78,28,81],grn_ctx_batch_mod:81,complianc:9,"\u3082\u3057\u6307\u5b9a\u3055\u308c\u305fdb\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u81ea\u52d5\u7684\u306bdb\u3092\u4f5c\u6210\u3057\u307e\u3059\u304c":170,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":80,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e \u3059": 74,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":153,arugment1:152,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":170,column_type_1:109,column_type_2:109,possibl:[28,46,37],"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":153,embed:[133,98,33,48,9,78,178],record_1_column_1:109,record_1_column_2:109,grn_operation_not_permit:2,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_offset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,file:[89,153],logo:7,fill:[132,152],again:[115,78,9,81,19],field:[78,96],location_in_groonga:136,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u30 59":170, architectur:[133,98,153,81],"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":74,sequenc:[109,185,36,126,49,155,18,175,150,28,179,152],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":64,"6gib":140,record_1_column_n:109,konishi:126,"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":114,escal:138,unload:7,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":46,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":147,"x\u3067\u306frealloc":156,descript:[56,109,27,185,44,132,134,96,166,98,126,7,91,9,169,152,181,179,81,66],escap:[7,163,39,126,81],"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,represent:[124,120,39,86],forget:86,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3 092\u8ff d\u52a0":1,interpret:[113,185,153],suno:81,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":89,file_too_larg:175,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":94,libmsgpack:[154,14],"rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"\u691c\u7d22\u7d50\u679c\u306e\u30bd\u30fc\u30c8\u9806\u5e8f\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":109,objnam:[38,108],grn_op_and:[57,70],grn_op_or:[57,70],fals:[1,91,104,153,137,13,46,126,74,116,60,101,186,173,97,144,152,128,163,81,185],"\u3053\u3053\u3067\u3082":71,offlin:[56,44,126,7,78,113,81],util:9,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":156,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30 c9\u3092 \u5b9f\u884c\u3059\u308b\u969b\u306b":11,sub_filt:[56,162,126,44,78],hottolink:43,grn_hook_set:94,puropos:91,"\u305d\u308c\u3092\u65e7ji":64,zero:[165,72,86,13,85,109,175,193,178],further:13,"\u3053\u3053\u3067\u306f":71,aba:[75,3,131],abi:78,grn_info_typ:42,"\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":125,fffe:91,tokenbigramignoreblanksplitalphadigit:85,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":127,"public":81,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":98,tokenbigramsplitxxx:85,grn_table_pat_kei:114,valu:[41,42,2,72,87,7,28,107,54,192,86,16,19,64,122,126,78,80,113,81,133,136],grn_table_setoper:114,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057 \u307e\u 3059":122,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":194,fff0:85,narrow:[158,56,109,126,81],"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u95a2\u4fc2\u5f0f\u306f":70,commands_table_cr:106,transit:142,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,"groonga\u306epackag":153,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":171,establish:[3,175],distinct:[67,132,144],"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":153,regist:[22,41,23,166,44,56,133,143,32,126,7,159,78,134],libev:[192,154,14,113],groonga_path:170,"check\u30b3\u30de\u30f3\u30c9\u306f":127,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3 067\u4f7 f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":98,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":74,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":64,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,jsonp:[132,78],desin:142,memo6:12,memo5:12,memo4:12,memo3:12,memo2:12,memo1:12,none:[109,91,166,134,175,98,47,190,137,9,79,192,66],"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":182,hour:[188,152,19,150],dev:[153,14,126,26,7,154,180,78,28,81],"\u30c7\u30fc\u30bf\u306b\u4e0d\u6574\u5408\u304c\u767a\u751f\u3059\u308b\u5834\u5408\u306f\u30c7\u30fc\u30bf\u3092\u524a\u9664\u3057\u306a\u3044\u3088\u3046\u306b\u5909\u66f4":1,remain:[150,126,181],paragraph:3,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":156,deb:[153,14,126,7,154,78,28,81],"\u6771\u4eac\u90fd\u6c1 1\u306b\ u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":71,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":153,share:[17,23,84,166,45,133,143,98,126,26,7,9,122,63,28,79,192,19],shard:[95,143,23,166,78],"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":64,minimum:[41,167,109,152,166,14,130,154],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[35,171],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":89,strlen:41,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":122,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":145,secur:[56,81,78],"13\u7528rpm\u306e\u63d0\u4f9b":156,arg2_nam:181,needl:70,grn_command_vers:[56,31,44],number2:152,number1:152,mariadb:[126,81],associ:[41,45,109,3,13,59,173,28],"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":1 53,creat ed_at:166,kuriyama:[78,81],spheric:76,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":161,rotat:[78,98],hypertext:[56,158],no_buff:175,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":71,through:[133,9],"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":153,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":89,entries_content_index_20150708:166,"\u5024\u3092\u53d6\u5f97\u3059\u308b\u7bc4\u56f2\u306e\u958b\u59cb\u4f4d\u7f6e\u3068\u306a\u308b\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":80,"\u30b0\u30eb\u30fc\u30d7\u5316\u51e6\u7406\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e_nsubrecs\u306b\u8a18\u9332\u3055\u308c\u307e\u3059":61,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683 c\u7d0d\ u3059\u308b\u9818\u57df\u3092\u4e00\u3064\u3060\u3051\u6301\u3064\u3053\u3068\u304c\u3067\u304d\u307e\u3059":114,good:[165,91,185,166,133,109,115,47,152,79,192,85,120],timestamp:[188,23],"tokenmecab\u3067\u306f":71,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":153,grn_get_lock_timeout:19,grn_obj_vector:[80,39,16],"_valu":[109,61,122,81,126],rank:[3,81],"db\u3068\u306a\u308a\u307e\u3059":84,comamnd:55,micro:[13,56,152,158],name_2:[3,103],name_1:[3,103],hard:140,idea:109,"2000\u898f\u683c\u306b\u5f93\u3063\u3066\u5168\u89d2\u30ab\u30bf\u30ab\u30ca\u306b\u5909\u63db\u3057\u305f\u6587\u5b57\u5217\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b\u5024\u3092key\u3068\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,connect:[3,98,7,191,175,78],rlimit_nofil:[150,126],"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":153,flower:13,entries_key_index_20150709:166,"\u3053\u308c\u3092\u56de\u907f\u305 9\u308b\ u306b\u306f":153,"release\u306e\u5b9f\u884c":89,print:[175,81],foreground:98,definion:152,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":70,entries_content_index:[140,109,185,152],database_path:62,msg_flag:78,"975mbyte":170,tahr:[14,81],"\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u7f72\u540d\u3059\u308b\u9375\u306b\u5909\u66f4\u304c\u3042\u3063\u305f\u5834\u5408\u306a\u3069\u306b\u884c\u3044\u307e\u3059":153,grntest:[7,28,156,153,105],"tokenmecab\u306e\u5834\u5408":71,tritonn:[109,185,166,152],"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":114,suggest_prepar:[155,18,179,49],"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":125,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u305 7\u307e\ u3059":98,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":98,done:[17,109,9,81,19],stack_over_flow:175,"\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":46,stabl:[155,11,81],"squeeze\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"indexbuf\u306e\u30b5\u30a4\u30ba":122,"5th":109,least:[185,168,7,186,118,140,78],"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":159,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":71,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":114,kou:166,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307 e\u3059" :71,"libedit\u5bfe\u5fdc":1,grn_plugin_get_suffix:28,"grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":70,pari:76,selector:7,part:[109,188,23,13,133,143,33,136,63,3,192,85],pars:[124,39,81,160],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":114,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059":125,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":170,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u30 59":145, "\u30c6\u30fc\u30d6\u30eb":108,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":70,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":71,plugin_unregist:[22,56,32,44,78],consol:9,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":73,built:[56,91,44,133,32,126,76,9,192,78,80,134,162],argument_name1:37,argument_name2:37,build:[56,153,133,138,20,180,82],"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":153,distribut:[167,130,166,153,14,7,154,102,138,192,81],"\u30d0\u30fc\u30b8\u30e7\u30f30":78,"\u30d0\u30fc\u30b8\u30e7\u30f31":78,previou:[142,131,12,13,126,7,79,81,181],chart:28,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":68,most:[109,111,3,185,166,86,13,32,16,81,78,181,85,55,152], "db\u304 b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":80,myisam:133,grn_incompatible_file_format:2,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[89,174],groonga_log_level:126,mainlin:[78,81],cas_error:175,roughli:13,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":145,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":56,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":180,carefulli:86,"bom\u4ed8\u304dutf":156,find:[114,165,193,3,133,163,109,33,48,49,155,60,18,102,20,89,192,85,179,120],grn_no_such_process:2,grn_index_cursor_open:121,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":84,grn_logger:7,unus:81,grn_in_values_too_many_index_match_ratio:81,grn_obj_defrag:80,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u 306a\u30 44":182,commands_column_renam:60,restart:[22,78,178,140,10],"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":170,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":71,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":170,map_hugetlb:28,common:[109,185,95,46,14,98,7,114,160,64,28,79,152,66],table_cr:[56,109,23,166,44,86,96,32,7,137,60,173,159,81],grn_api:39,"table1\u3068table2\u3092op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066\u96c6\u5408\u6f14\u7b97\u3057\u305f\u7d50\u679c\u3092res\u306b\u683c\u7d0d\u3057\u307e\u3059":114,grn_interrupted_function_cal:[2,104],lion:7,"\u521d\u671f\u5024\u306f10\u3067\u3059":182,blog_cont:186,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":170,gemfil:7,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":170,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u 3059":18 0,"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":157,network_is_down:175,hiroyuki:78,is_stop_word:[165,47,81],simpli:[123,144],point:[41,76,185,86,132,133,126,35,60,101,104,78,28,111,171,113],hideki:[78,126,81],shutdown:[32,23,44,56],"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":71,weight_in_match_column:86,ran:179,secret:153,indexblog1:79,"\u4ee5\u4e0b\u3067":71,gat:[75,3,131],understand:[109,3,81],convers:[28,9],"\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a":11,bill:[71,145],"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":145,opear:152,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":127,anonym:95,gb87d9f8:4,everyon:103,"v1\u306e\u5024\u30 4cv2\u30 6e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,manner:[109,3],"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":170,"\u6c11":145,itself:[91,185,86,126,178,81,181],cento:[56,153,138,20],"\u30d3\u30eb\u30c9\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3057\u30ea\u30ea\u30fc\u30b9\u524d\u306e\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":153,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":145,"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":70,res2:114,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":71,inv_thread_column:170,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":159,keyr:[7,154],"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":194,usage_multiple_ scor:12, "\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u3082\u4e00\u7dd2\u306b\u6307\u5b9a\u3059\u308b\u30af\u30a8\u30ea\u306b\u3088\u3063\u3066\u306f\u5168\u6587\u691c\u7d22\u306e\u7d50\u679c\u304c\u7570\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":71,task:[7,133],sortbi:[28,157,126,166],entri:[147,94,48,108,17,109,152,59,157,166,163,73,126,74,186,173,118,79,185,188,137,140,38],parenthes:3,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":170,spend:[185,152],"build\u3092\u7528\u3044\u3066":180,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":68,shape:93,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":170,"\u3053\u306e\u64cd\u4f5c\u306f":114,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":159,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":70,"groonga\u306e\u30ea\u30ea\u30fc\ u30b9\u4 f5c\u696d\u3067\u306f":153,bin:[192,102,20],key_column:122,kashihara:81,"\u4e0d\u6b63\u306a\u540d\u524d\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u3082\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,tokendelimitnul:169,motoi:126,"\u6c38\u7d9a\u7684\u306a":80,bit:[167,109,185,154,24,46,14,170,130,13,102,138,152,82],"\u7d4c\u5ea6\u3068\u7def\u5ea6\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8868\u73fe\u3057\u305f\u6574\u6570\u306e\u7d44\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":46,semi:[28,66],groogna_default_command_vers:55,in_valu:[56,162,81,44,78],followe:188,often:97,grn_ctx_set_fin:16,back:[181,9,152],grn_plugin_init:41,sizeof:[78,39,16],"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":114,scale:[133,55],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":170,pe r:[23,13 2,133,7,9,28,85],newark:188,substitut:[109,185,116,152,82,120],larg:[185,13,133,140,7,62,95,78,152,85,55,66],"\u304c\u8fd4\u3055\u308c\u307e\u3059":80,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":108,reproduc:126,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":1,s10:81,"\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":127,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":148,grn_default_logger_get_path:7,"markdown\u30d1\u30fc\u30b5\u30fc":153,grn_expr_compil:39,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30 c9\u306e \u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":108,"\u30c6\u30fc\u30d6\u30ebterm\u306b":74,nsi:153,bsd:[28,192,81,78],errno:[78,81],pair_dataset:[190,49],includ:[91,143,12,96,10,146,3,55,109,152,88,60,63,22,69,23,166,123,126,97,78,177,178,81,130,134,33,136,85],score_funct:12,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":35,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":180,str_size:39,translat:89,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":89,concaten:79,default_command_vers:[3,4,83,103,9,175],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":114,remaind:152,grn_tabl:[56,31,44],exit_success:5,no_space_left_on_devic:175,curl:[192,4,132,98,7,9,104,90,55,82],cmake:[7,78,192,102,126],sequenti:[185,78,152,85,81,181],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u 7406\u6f 14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":70,grn_content_msgpack:107,grn_no_locks_avail:2,libwinpthread:81,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":153,"\u30b7\u30a7\u30eb\u4e0a":170,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":170,"\u3053\u306e\u4f5c\u696d\u306f":153,"tokenbigram\u306a\u3069":71,ellip:[76,171],grn_bulk_vsiz:[39,16],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":1,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u306e\u306f\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306a\u306e\u3067":153,getaddrinfo:7,jason:144,"\u5f62\u5f0f1":98,"\u5f62\u5f0f2":98,"\u308d\u3086\u304d":144,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":122,"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u30 59":153, sensit:85,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":153,grn_db:[56,31,113,44],becam:[142,81],exit:[7,78,98,126,62],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":83,fatal:81,db_path:[3,4,129,175,98,103,78,37,52,9],comment_cont:186,"2rd":109,grn_obj_is_scorer_proc:78,geograph:[13,76],"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":8,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":46,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[38,108],"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":153,"0x0":[13,46,113],object1:152,object2:152,leakag:92,carlo:[60,128],append:[7,39],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u524d\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\ u5728\u3 059\u308b\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":145,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":11,access:[56,109,122,195,133,126,49,7,60,18,9,140,37,28,78,120,179,81,19],"32gib":140,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,interrupted_function_cal:175,"obj\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u3068\u308b\u5024\u306e\u7bc4\u56f2\u3092\u8868\u308f\u3057\u3066\u3044\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u8fd4\u3057\u307e\u3059":80,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":156,vertic:66,sinc:[115,142,76,122,167,13,188,46,98,150,7,152,10,136,78,128,108,66],"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":127,masatoshi:78,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u306 6\u8aac\ u660e\u3057\u307e\u3059":184,grn_resource_deadlock_avoid:[2,80],grn_too_large_offset:2,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":98,grn_mecab_chunk_size_threshold:78,"groonga\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3084zip\u30a2\u30fc\u30ab\u30a4\u30d6\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":153,ii_buff:87,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":156,score_function1:12,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":153,score_function3:12,set_token_filt:81,grn_content_typ:[56,31,44],name1:152,account:[26,81],"146607190x":188,"\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30ea\u30fc\u30b9\u3055\u308c" :11,alic :[109,185,188,116,60,9,97,128,85,55],rurema:81,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":153,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":145,fetch:[79,81,49],abcd:134,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":156,commnad:[11,102],"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":54,msvc:78,users_loc:188,grn_ii_buffer_commit:87,surfac:93,groonga_n_record:126,afr:[75,3,131],"entry\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u306e\u5024\u3092\u5bfe\u8c61\u3068\u3059\u308b\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u30ab\u30e9\u30e0":74,inst:126,physic:127,"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":64,bind:[164,43,163,160,98,48,7,78,28,82],amazon:109,"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":80,grn_geo_select_in_circl:28,"\u6df1\u523b":71,"learner\u306e\u30e1 \u30e2\u 30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":156,hiroshi:[28,81,78],replies2:79,"centos_versions\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u7279\u5b9a\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30ea\u30ea\u30fc\u30b9\u3068\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u7d44\u307f\u5408\u308f\u305b\u3067\u30d3\u30eb\u30c9\u3092\u5e73\u884c\u3057\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,meter:[75,76],report:89,cflag:24,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":114,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":106,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u30 4f\u306a \u308a\u307e\u3059":171,euc:[98,85,126],"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":170,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":114,tsv:78,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":70,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":98,nvar:54,spell:[178,92],dai:[23,152,188,115,150,78],dat:[7,113,126],mention:186,rubygem:7,"8\u30ea\u30ea\u30fc\u30b9":[78,153],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":106,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":170,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u 306b\u30 c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":153,grn_table_lcp_search:114,"tomotaka_ito\u3055\u3093":28,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":71,column_index:[3,92,12,96,48,101,109,152,86,115,71,159,45,165,166,123,163,74,186,116,97,79,81,181,185,188,33,140],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3059":38,"\u306e\u66f4\u65b0":89,normalizerauto:[109,91,166,163,134,47,48,116,27,78,106,66],"\u3067\u3042\u308c\u3070":170,tokenregexp:[78,181],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":80,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":153,stub:81,rel:[28,109,81],"\u30ab\u30ec\u30fc":145,ref:152,red:89,clarifi:81,"\u3053\u306 e\u30b1\ u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3059\u308b\u306e\u3067":71,frank:97,test_loc:170,releas:[167,130,102,153],"\u5b9f\u884c\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3068\u305d\u306e\u5f15\u6570\u3092\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":98,groonga_log_path:126,drilldown_xxx:109,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":156,pgp:153,tokenizer_error:175,natti:28,messag:[153,138],"\u6761\u4ef6\u306e\u9806\u5e8f\u3092\u5909\u3048\u308b\u3068\u691c\u7d22\u7d50\u679c\u304c\u5909\u308f\u308b\u3068\u3044\u3046\u72b6\u6cc1\u304c\u767a\u751f\u3057\u307e\u3059":71,monkei:13,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":153,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":170,"\u 5fc5\u89 81\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,alloc_count:[3,4,175,98,83,103,9],ipad:[167,85],"groonga\u30b3\u30de\u30f3\u30c9\u3092\u901a\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u547d\u4ee4\u3092\u30b3\u30de\u30f3\u30c9\u3068\u547c\u3073\u307e\u3059":98,syscal:[3,81],structur:[136,133,45,81,95],charact:[41,109,91,178,133,150,185,98,33,48,126,7,193,134,78,28,152,39,163,81,66],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":127,have:[93,142,2,3,195,46,49,9,72,192,55,115,109,107,152,88,155,59,18,96,66,165,166,78,178,81,185,193,84,133,136,13,140,120,85,103],"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":98,min:[7,64,19,81],"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":170,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":122,"l c_messag es\u4ee5\u4e0b\u306e\u5404\u7a2e":153,osdn:[78,153,26],mix:[37,155,86,85,78],builtin:[56,44],"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":80,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":145,gurun:160,bottom_right:[28,35],eight:3,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":38,"\u6e2c\u5730\u7cfb":46,hardcod:23,"takahiro\u3055\u3093\u304c\u63d0\u6848":156,mail_column:170,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":70,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":180,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":145,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":71,"grn_bool\u578b\u3092\ u8ffd\u5 2a0":156,bernard:78,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":74,elfr:7,grn_plugin_malloc:41,grn_ii_buffer_append:87,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":71,escaped_str:39,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":84,integr:[7,13,126,82],"hat\u7cfb\u306e\u5834\u5408\u306b\u306f\u672c\u756a\u74b0\u5883\u3078\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u524d\u306b\u30ed\u30fc\u30ab\u30eb\u306eapt\u306a\u3044\u3057yum\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53c2\u7167\u3057\u3066\u6b63\u5e38\u306b\u66f4\u65b0\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":153,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,malfunct:78,your_new_db:28,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d 22\u5f15 \u306e\u65b9\u3092tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u3088\u308a\u3082\u91cd\u8996\u3059\u308b\u3088\u3046\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":71,pattern:[152,133,136,78,181,185],"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":180,progress:150,superior:[133,33],"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":170,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":183,plugin:[56,130,167,154,138,105,120],shorttext:[3,92,12,95,46,98,47,48,49,101,103,149,106,111,128,144,123,109,76,152,86,13,155,115,116,60,18,159,96,66,45,165,166,71,163,170,74,186,75,173,97,79,110,179,81,181,185,131,188,33,136,137,140,193],"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":16,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":127,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":1 17,equat :76,"\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3092\u8aac\u660e\u3059\u308b\u524d\u306b":145,comment:[186,79,178,126],grn_update_not_allow:2,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":94,log_repoen:7,test_str:180,"hook\u306e\u5b9f\u884c\u9806\u4f4d":94,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":98,"\u52c9\u5f37":85,json:[86,156,7,28,107,81],grn_obj_table_no_kei:[64,114],grn_table_group_flag:114,grn_ii_cursor_set_min_en:78,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":180,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":98,"\u4f8b\u3048\u3070":[71,170,80,98,145],bulk:[78,39],multi:[133,9,78,28,192,81,195],plain:[78,110],defin:[3,152,46,190,115,175,78,178,179],buildabl:28,replies_cont:79,howev:133,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5 024\u309 2\u6307\u5b9a\u3057\u307e\u3059":157,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":180,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":89,kernel:[7,140],caplit:[126,81],grn_plugin_mutex_open:41,power8:81,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":170,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":74,too_many_open_files_in_system:175,japanes:[0,185,133,26,7,152,85,179,81,120],"pc\u306bgroonga":148,auth_bas:[9,55],utop:[14,153],optarg:[57,84],hostnam:[170,98,7,9,37,175],"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":74,column_nam:59,grn_column_name_key_len:122,document_index:[163,48],francisco:76,"\u4f5c\u6210\u3057\u305f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u3078\u3068\u6d41\u3057\u307e\u3059":153,center:[133,171],builder:87,"\u30e6\u30 fc\u30b6 \u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":153,choos:[109,13,98,59,9,85,81,181],error_cod:41,update_not_allow:175,"1byte":175,usual:[13,78,79,65,16],unari:126,logical_select:[56,32,44,78],"5\u30ea\u30ea\u30fc\u30b9":78,"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,takayuki:28,gmo:81,"30ac":193,lake:93,add:89,"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":153,grn_ctx_at:[7,16],match:138,"\u4e3b\u306b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u58ca\u308c\u305f\u5834\u5408\u306a\u3069\u7570\u5e38\u6642\u306e\u554f\u984c\u89e3\u6c7a\u306e\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":127,grn_obj_table_pat_kei:[64,114],"\u3067\u306f\u306a\u304ffree":156,grn_obj_path_by_id:[80,113],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5b fe\u5fdc \u3057\u307e\u3059":84,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":80,substit:109,"\u8ffd\u52a0\u306e\u5c5e":74,insert:[7,3,33],like:[93,129,96,98,26,9,192,55,56,109,76,152,86,155,60,158,160,122,166,123,186,78,179,81,181,185,131,188,85],success:[41,84,5,16,17,39,122],groongau0000ful:85,grn_obj_id:80,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":80,"shorttext\u306e\u30d9\u30af\u30bf\u30fc\u3092\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u4f7f\u7528\u3057\u305f\u3044\u5834\u5408\u306b\u306f":46,"\u3067\u4e0d\u6b63\u306ajson\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u305d\u308c\u4ee5\u964d\u30b3\u30de\u30f3\u30c9\u3092\u53d7\u3051\u4ed8\u3051\u306a\u304f\u306a\u308b":156,"com\u304cedge\u3092\u4f5c\u308b":135,socket_is_already_shutdown:175,soft:140,snippet_html:[56,109,44,126,7,162,81],normalizer_list:[56,32,81,44],"\u4e e5\u4e0b \u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":159,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,specfi:111,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":84,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":159,proper:[136,188,23,81],grn_column_cr:122,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":170,tmp:[3,153,132,155,96,98,126,60,103,106,181,178,55,175],"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":170,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e \u30d1\u 30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":71,"\u3053\u306e\u3088\u3046\u306btokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u91cd\u307f\u3092\u9ad8\u304f\u3059\u308b\u3053\u3068\u306b\u3088\u308a":71,"repositories\u914d\u4e0b\u306b":153,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":71,host:[170,98,175,28,82,103],although:9,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":153,"\u30c0\u30e1\u30fc\u30b8":71,sbin:90,actual:[23,166,12,13,143,126,9,63,3,81],socket:7,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":16,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":122,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3 066\u308 2\u554f\u984c\u3042\u308a\u307e\u305b\u3093":170,"mooz\u3055\u3093\u304c\u4fee\u6b63":28,lifecycl:82,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":[89,174],tomo:45,discard:126,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":170,syntax_error:175,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059":70,dataset:[53,56,126,44,155],"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":71,guard:123,"\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3092\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30 fc\u30eb ":153,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":71,ayumu:81,conbind:185,rch:91,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":11,hatak:[78,81],"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":61,glib:126,unexpect:[7,81],brand:78,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[89,174],"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":122,uninstal:7,bug:89,grn_obj_set:80,dump_record:78,binlib:153,"point\u578b\u306e\u5024":[35,171],tokenmecab:[7,169],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_output_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,epel:[7,130],"shimada\u3055\u3093":156,colum:79,dure:[7,3],pid:[28,1,192,98,78],saer:[155,18],grn_too_small_limit:2,implement:[69,43,23,152,129,123,95,109,7,76,9,37,146,28,78, 195,81,1 20],entries_yyyymmdd:166,pip:20,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":114,probabl:155,"\u305f\u3060\u3057":[64,98,145,61],detail:[41,142,91,3,46,7,9,10,150,192,167,109,152,86,13,14,116,96,66,22,47,166,170,126,75,140,78,177,81,181,130,185,131,133,154,191,36,37,89,120],virtual:126,comment_nam:186,grn_expr_create_for_queri:70,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":170,is_a_directori:175,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[64,121],grn_obj_flag:[41,183,114,39,122],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":141,sergei:81,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":70,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":71,"\u6539\u826f":78,"\u8aa4\u3063\u305f\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3 042\u308 a\u307e\u3059":153,tweet:[115,26],umask:81,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":11,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":71,"\u554f\u984c\u306fgroonga":170,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":64,everi:131,risk:81,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":89,"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":98,"24byte":175,grn_encoding_to_str:124,not_a_directori:175,x86_64:[130,153],properti:[150,14],naiv:131,not_enough_spac:175,direct:[7,126],"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":122,aim:126,hide:126,introspect:7,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":74,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061 ":80,"\u 5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":70,"82pre":43,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,grn_tokenizer_query_open:7,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":180,studio:[7,78,102,126],path:[153,138,20],"\u3067\u914d\u5217\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,httprewritemodul:9,"\u95a2\u4fc2\u5f0f":89,functin:152,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":114,precis:[136,3,153,133,46,14,7,85,179],"\u306e3\u30d5\u30e9\u30b0\u306f":64,"\u30b5\u30f3\u30d7\u30eb\u5185\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u5b9f\u884c\u5c5e\u6027\u304c\u3064\u304b\u306a\u3044\ u554f\u9 84c\u3092\u4fee\u6b63":148,orilldown:131,portabl:[28,9,126],"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":70,"\u7bc4\u56f2\u5185\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u6709\u52b9\u3067\u3042\u308b\u3068\u306f\u9650\u308a\u307e\u305b\u3093":80,describ:[41,0,91,3,12,93,134,96,98,47,49,102,51,104,146,143,192,128,167,109,110,152,86,14,59,123,60,18,118,62,20,181,162,66,164,69,50,23,166,24,63,53,189,186,175,78,79,178,179,81,82,130,193,185,137,188,31,32,136,154,138,140,89,120,85,90],noarch:[167,130],"groonga\u306e\u7d44\u8fbc\u578b\u304b":74,namebuf:[80,122],autogen:[7,153,120],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":46,"msg\u306fcom\u306b\u3088\u3063\u3066":135,chracter:[193,33,66],"arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u306a\u3055\u308c\u307e\u3059":70,"grn_op_but\u306f":70,grn_obj_wit h_sect:1 22,join:26,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":145,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":171,overrid:192,enourm:49,dump_schema:78,end:[182,76,152,185,181,85,4],eng:[155,179],vagrant:153,hiragana:[179,85,185,152],env:178,rroonga:[12,186,163,126,48,17,116,101,160,149,78,79,81,82],grn_content_non:107,tablenam:11,grn_set_default_command_vers:117,befor:[22,109,3,5,86,13,113,7,172,18,9,181,10,192,178,179,118],xcode:90,"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":11,parallel:133,exclud:[59,143,166,97,126,7,159,63,23,81],environ:[130,113,126,102,9,138,78,28,192,178,81,82],enter:[3,126,175],composit:193,over:[133,163,126,7,103,168,78,81],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3064\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u30 92\u5b9f \u884c\u3057\u307e\u3059":153,becaus:[142,3,4,12,129,95,49,7,101,9,10,55,92,167,109,152,13,115,116,60,18,144,181,66,22,45,165,23,166,123,74,172,175,97,78,79,178,179,81,82,185,186,132,133,33,136,140,193,85,195],london:76,gqtp:[182,56,130,2,167,133,14,98,126,34,7,154,191,170,78,81],"\u304bwgs84geopoint":[35,171],digest:55,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":11,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":156,oneir:[28,126],"table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":70,choic:133,grn_pat_at:156,ea ch:[91,1 43,12,95,96,49,150,9,104,78,3,192,109,152,86,13,155,59,116,18,63,169,45,27,23,166,168,163,126,175,28,100,179,131,132,133,138,36,39],searc:179,"0\u30ea\u30ea\u30fc\u30b9":78,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"groonga\u306e\u30ab\u30e9\u30e0\u306f":46,goo:[185,152],msgpack:[4,55,175],"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,newli:[115,133,33,17,128,81],"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":112,got:[126,81],"\u69cb\u9020\u4f53\u306e\u914d\u5217":54,"offset\u306f":114,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":127,filter:[56,44,86,14,126,7,154,173,157,78,28,81],"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":153,"16gib":140,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":170,score_column:122,onto:140,rand:[56,162,44],rang:[56,109,72,96,126,7,60,78,8 1],"\u5b fe\u8c61\u30c6\u30fc\u30d6\u30eb\u306ekey\u30b5\u30a4\u30ba\u3068\u540c\u3058\u304b\u8d85\u3048\u308b\u5e45\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":64,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u306f":153,edit_dist:[56,1,162,44],restrict:[7,103,55,126],alreadi:[41,115,91,3,59,19,140,79,65,81],"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":80,primari:[59,56],"\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093":125,"\u3092\u4f7f\u7528\u3057\u307e\u3059":153,"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":80,top:[111,131],mercuri:153,too:[109,152,86,13,126,78,79],tom:116,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[89,174],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u305d\u308c\u305e\u308c\u306b\u304a\u3044\u3066\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30a2\u30fc\ u30ab\u3 0a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3092\u884c\u3044\u307e\u3059":153,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"path\u3092":156,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":127,tood:41,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":159,tool:[56,82,138,20,15,120],"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":106,user_ag:97,wareohji:7,grn_obj_set_valu:[64,80],ga54c5f8:170,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":28,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":153,expr:39,obata:[28,156,126,78],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u30 57\u306a \u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":70,blog_bodi:71,rab:[75,3,131],indexblog2:79,"column_list\u30b3\u30de\u30f3\u30c9":1,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":106,ram:170,raw:[126,82],"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":71,with_sect:[74,188,79,96,81],unresolv:28,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":145,hanako:173,bad_file_descriptor:175,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":153,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[114,122],fuzzi:66,though:[23,133,126,7,79,179,81],"\u3044\u307e\u3059":125,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":170,grn _db_reco v:[84,81],"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":114,"16bit":46,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":70,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":153,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":170,mininum:142,flow:89,abbrev:76,radix:152,"0\u30d9\u30fc\u30b9\u3067":[64,114],abl:[123,29,33,12],random:75,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":11,pkg:[130,24,156,7,28,192],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":159,"\u3067\u4f5c\u6210\u3057\u305f":16,"\u3082\u3057\u304f\u306f":[64,46,114],absolut:[22,177,10],top_left_point :111,con figur:[89,180,153,120],"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":153,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":80,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":170,"\u542b\u3081\u308b\u3082\u306e":153,item_queri:[155,18,179,190,49],label1:[109,166,81],label2:[109,166],watch:153,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":98,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":74,normalized_text:134,reconstruct:81,"\u4e3b\u306bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":83,method:[3,126,9,78,37,85,179],twice:[109,185],hendro:126,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":11,"d ebug\u4e d8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":156,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u3067\u306e\u30af\u30a8\u30ea\u30d1\u30bf\u30f3\u306b\u8fd1\u3044\u30af\u30a8\u30ea\u3092\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":182,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":25,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":153,nul:[41,28,85],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":70,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":64,grn_plugin_error:41,databas:[164,95,46,98,7,9,10,106,78,192,56,152,114,16,17,60,62,160,169,59,65,66,22,27,159,126,28,80,81,185,96,84,132,133,33,190,137,140,193,195],"\u51 fa\u529b \u30d5\u30a1\u30a4\u30eb\u540d":170,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":80,algolithm:160,approach:76,exec_format_error:175,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":98,weak:[133,33],grn_invalid_argu:[64,114,2,80],fault:7,"4gib":[95,175],facet:109,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":64,content_index:12,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":153,trust:153,id_column:122,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":98,evalud:146,been:[60,153],"\u3072\u308d\u3042\u304d":144,accumul:109,geo_distance2:[28,76],geo_distance3:[28,76],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":153,quickli:115,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":161,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9 \u30fc\u 30de\u30f3\u30b9\u8a08\u6e2c\u7528":1,msec:[28,19],xxx:[98,126,81,152],"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":122,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":170,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":1,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":145,"grn_op_or\u306f":70,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":89,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[114,122],message_index:123,suggest:[56,44,156,32,126,148,7,78,28,192,113,81],"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":156,complex:[7,109,181,126,152],unix_time_when_command_is_start:136,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,niku:81,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d \u3092\u 6307\u5b9a\u3057\u307e\u3059":54,complet:[22,56,44,132,155,126,51,10,28,177,113],"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":114,sen_index_delimit:43,"44001770019531e":4,"\u30b3\u30de\u30f3\u30c9\u540d":98,quotient:152,"top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":35,"\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u554f\u984c\u306e\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u305f\u3089":153,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,geosit:45,"\u5024":98,no_such_process:175,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":135,els:[78,81],grn_column_name_valu:122,ceekz:126,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":64,"v1\u306e\u5024\u306e \u8981\u 7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":70,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":122,"mooz\u3055\u3093":28,unstabl:113,poedit:120,el5:130,escaps:[163,33,48],"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":35,log_reopen:[6,56,8,32,44],grn_obj_is_t:78,grn_plugin_mutex_unlock:41,"\u7d44\u8fbc\u95a2\u6570\u306f":[184,35,112,171,68],"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":156,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b":1,"\u751f\u6210\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u3078\u306e\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,line_cont:136,"package\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u 4e0b\u30 6b\u4f5c\u6210\u3057\u307e\u3059":153,core:[132,133,170,9,192,195],"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,chapter:3,surround:[7,163,33,48,152],dinner:133,ppa:[56,153,138],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":42,"\u578b":183,encod:138,two:[0,93,142,91,3,96,49,101,9,150,55,167,109,76,14,16,116,18,65,66,45,50,166,126,74,186,75,78,79,81,181,130,185,131,39,134,33,136,154,188,193,85,195],"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":28,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":16,version4:11,git:[105,153,120],version1:11,version2:11,version3:11,"\u30d0\u30fc\u30b8\u30e7\u30f3":153,"256gib":67,head:[182,109,9,81,175],medium:[167,130,188,14,154,102,138],logical_table_remov:[56,32,44,78],removep:80,drilldown_sortbi:[157,166],"max\u306esiz e\u3092\ u6307\u5b9a\u3057\u307e\u3059":64,deafult:28,grn_expr_estimate_s:78,autoconf:28,grn_expr_syntax_escape_queri:39,openbsd:78,trie:[56,3,185,95,126,7,78,28,152,158,66],decrypt:153,bad_address:175,check:[56,2,84,44,136,156,32,126,7,180,78,105,28,80,153,81],ongaeshi:[7,78,126],"clearlock\u306f":108,successfulli:[41,3],"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":127,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":70,"\u63a5\u7d9a\u5148\u30b5\u30fc\u30d0\u304c\u4f7f\u7528\u4e2d\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":170,when:[3,144,129,98,7,101,9,10,78,109,76,86,155,59,116,20,181,66,22,45,122,166,126,74,186,110,175,28,179,81,185,84,132,133,136,188,140,89,193,85],groonga_dist:7,tid:121,saerch:[155,18],rid:87,node:[7,78,130,153,82],"\ u8ffd\u5 2a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,grn_op_and_not:57,consid:[45,142,23,92,55,79,81,66],sql:[109,23,131,12],faster:[129,126,28,192,85,81],top_left:[28,35],"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":61,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":145,backward:[7,78,128,81,55],grn_obj_table_dat_kei:28,"6\u30ea\u30ea\u30fc\u30b9":78,grn_db_float:78,focus:3,llt:91,memo7:12,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":171,row:[133,33],"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":74,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":153,readabl:[113,81],"\u554f\u984c\u3042\u308a":28,jumand:167,sourc:[56,153,88,138,20,120,82],"\u306b\u8a2d\u5b9a \u3059\u 308b":153,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":170,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":121,"6elz":81,"\u3092\u8fd4\u3057\u307e\u3059":[64,94,114,80],"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":61,level:[41,131,6,98,126,7,8,9,150,65,81,175],brother:185,fbnteqr:78,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":122,slower:[123,76,131,12],"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":127,port:[142,43,4,132,170,175,98,126,81,103,37,90,55,9],repli:[188,79],"64bit":46,arg1_valu:181,"sh\u306e\u307f\u306a\u3089\u305a":180,grn_expr_append_const:[70,39],grn_table_get:[114,113],"\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3057\u307e\u3059":83,connection_refus:175,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u 5b9f\u88 4c\u3057\u307e\u3059":153,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u89e3\u6d88\u304c\u5b9f\u884c\u3055\u308c\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":80,grn_not_a_directori:2,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":153,normalizeauto:163,"1st":97,grn_table_cursor_clos:64,"string1\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u3068string2\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u306e\u9593\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u6c42\u3081\u307e\u3059":112,daiki:[7,28,156,148],"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":11,grn_obj_clear_lock:[28,80],file_exist:175,vivid:[78,14,153],memori:[41,17,130,156,56,14,74,126,167,16,7,154,102,138,78,28,181,81,66],"net\u4e0a\u3067\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c":153,todai:133,"\u30b5\u30fc\u30d0\ u304c\u8 1ea\u52d5\u7684\u306b\u306f\u8d77\u52d5\u3055\u308c\u306a\u3044\u306e\u3082\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u5834\u5408\u3068\u540c\u69d8\u3067\u3059":170,criteria:3,capit:3,target_charact:39,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":156,proxy_cache_path:9,entries_key_index:[140,109,185,152],lc_messag:120,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":171,purpos:[23,86,126,116,103,3],"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":156,stream:81,backslash:[39,126,185],critic:[7,41,192,98,150],satoh:28,alwai:[109,175,185,133,96,136,155,9,140,78,179,81,152],grn_table_update_by_id:114,grn_plugin_isspac:41,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f\u30a2\u30eb\u30d5\u30a1\u30d9\u 30c3\u30 c8\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u3082bigram\u3092\u751f\u6210\u3057":145,clone:[105,89,153],"4th":109,key_with_si:[144,152,185,66],"\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b":156,ueno:[7,28],predic:78,inform:[22,17,69,150,56,133,45,109,26,126,7,10,146,78,193,113,96,158,120],combin:[109,133,7,116,97,81,66],"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":71,midnight:152,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":170,mainli:[188,81],"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":94,platform:[138,120],meridian:76,cutter:[180,153],"\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf \u30d9\u 30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584":1,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":35,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":153,"\u6b21\u306b":70,"\u691c\u7d22\u6761\u4ef6\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3057\u305f\u65b0\u305f\u306a\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":[157,98],"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":80,term:[67,74,109,185,166,127,133,163,98,33,48,126,7,116,78,81,47],name:[41,44,96,7,54,56,16,114,120,122,183,124,73,126,74,127,28,80,113,81,84,133,136,39],"\u65e5\u3005":125,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":64," command_ version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":70,no_memory_avail:175,request_id:[36,104],osanai:81,grn_itoh:28,grn_bool:80,grn_table_delete_by_id:[78,114],end_tagn:163,"base_version\u306ftar":153,"groonga_clone_dir\u306b\u3066autogen":153,profil:188,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":74,compress_zlib:74,"65535byte":78,partit:23,migrat:[166,109,185,81,152],"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":70,ruby19:7,"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\ u3092\u8 fd4\u3057\u307e\u3059":16,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":98,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":170,"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":153,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":109,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":80,place:[188,192,26],sho:[126,81],"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":106,origin:[109,126,136,191,159,107,81,120],"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u30671\u4ef6\u3082\u30d2\u30c3\u30c8\u3057\u306a\u3044\u5834\u5408\u3067\u3082\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306a\u3069\u3092\u884c\u3044\u307e\u305b\u3093":71,redhat:[28,192],arrai:[136,109,27,185,86,96,134,33,7,127,91,169,28,81,66],"64kib":78,string_siz:39,given:[7,45,126,116],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u306b\u5fc5\u8981\u 306a\u79 d8\u5bc6\u9375\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u306b\u3064\u3044\u3066\u306f":153,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":28,domain_error:175,circl:[133,93],white:[85,3,185],"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":121,grn_table_add:114,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":180,copi:[7,41,60],specifi:[41,91,143,96,98,47,7,9,104,10,146,72,192,54,56,109,111,86,155,16,59,60,159,63,65,66,22,120,69,23,166,126,74,173,118,97,78,128,177,113,81,84,132,133,134,190,136,137,37,38,90],"\u30d1\u30a4\u30d7":74,"\u521d\u671f\u5316\u6e08\u307f\u306e":84,enclos:[59,3],pragma:109,calro:97,wide:[28,192,3,181,133],"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":80,"\u524a\u9664\u3057\u305f\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u304b\u3089id\u9806 \u306b\u 53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c":156,"\u65e5\u672c\u8a9e\u306e\u52c9\u5f37":85,grn_table_cursor:[56,31,121,44],"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":61,"windows\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,posix:[78,152],posit:[41,109,2,3,111,86,96,47,91,85,81],grn_column_index:122,seri:3,kazuhiko:[7,81],ann:153,ani:[91,12,46,98,47,48,9,146,192,55,109,155,59,116,69,166,163,186,78,178,130,185,133,134,33,85],grn_unsupported_command_vers:2,grn_obj_set_mask:80,techniqu:[123,12],operation_timeout:175,moreov:75,"\u306b\u306a\u308a\u307e\u3059":16,sure:3,multipli:152,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u 30e5\u30 59\u308b\u554f\u984c\u3092\u4fee\u6b63":28,"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":180,geoindex:45,time_column:170,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":70,"com\u306f1\u30b9\u30ec\u30c3\u30c9":135,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":98,grn_table_cursor_set_valu:64,"textile\u30d1\u30fc\u30b5\u30fc":153,permiss:[192,81],sitecountri:[103,131],explicitli:[7,78,9,20],"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[71,145],state:[7,76,175,173,129],analyz:[7,28,85,9,133],grn_obj_column_vector:122,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[56,40],"\u3092\u6307\u5b9a\u3057":[64,38,108],"45ea3034":150,ssh:153,takatsugu:81,"\u8a73\u7d30\u306f":[71,180],pipermail:81,reveal:133,"\u542b\u3081\u306a\u3044\u3082\u306e":153,tokenfilterstopword:[78,47,81],bison:153,grn_geo_select_in_rectangl:[28,111],"shibuya\u3055\ u3093\u3 04c\u5831\u544a":156,"\u9014\u4e2d\u3067\u5931\u6557\u3059\u308b\u3053\u3068\u3082\u3042\u308b\u306e\u3067\u9806\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":153,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":80,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":114,"ongaeshi\u3055\u3093":156,"\u8b66\u544a\u3092\u9664\u53bb":156,detect:[7,28,91,9,192],"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":125,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":153,grn_query_expander_tsv_synonyms_fil:178,grn_db_register_by_nam:148,"59\u74b0\u5883\u306b\u304a\u3044\u3066":28,come:[93,188],"\u63a5\u7d9a\u3059\u308bgroonga":170,region:[93,75],quiet:175,grn_default_logger_set_rotate_threshold_s:78,reference_ve ctor_col umn:126,"\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u306e\u306f\u5168\u6587\u691c\u7d22\u6642\u306b\u8907\u6570\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3089\u3067\u3059":71,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u306e\u5834\u5408\u306ftokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306a\u3069\u3082\u5229\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":71,"\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u751f\u6210\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,color:193,whombx:126,period:78,pole:76,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":80,grn_ctx_use_ql:81,"ueno\u3055\u3093":[156,148],lexicon2:79,item_exampl:179,log_put:[6,56,32,44],"\u30ea\u30ea\u30fc\u30 b9\u306e \u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":153,frequency_threshold:[28,155,18,179,49],"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":156,"s3ki\u3055\u3093\u304c\u5831\u544a":156,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[80,122],not_socket:175,grn_command_version_max:117,"case":[41,84,86,126,16,17,78,28,192,81],"\u3042\u308a\u307e\u305b\u3093":[83,106,194,141,161],cast:[7,28,113,126],grn_db_open:84,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,favorited_bi:188,grn_expr_alloc:39,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":70,"define_selector\u306f":157,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":114,query_s:39,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":15 3,saerc: [155,18],"4\u884c\u76ee":170,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":122,author:9,alphabet:[109,91,166,18,85,81,66],users_index:188,grn_get_default_match_escalation_threshold:25,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":70,grn_cursor_rk:64,"\u5f37":85,expresss:160,messagepack:[192,7,78,28,107,113],status:[2,175],nest:[56,126,7,81,78,158],"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":98,"_nsubrec":[45,109,122,131,166,188,61,81],"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":28,immedi:[133,9,104,78],"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[89,174],"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":64,"\u306e\u3044\u305a\u30 8c\u304b \u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[35,114,171],sed:[7,28,78],overcommit_memori:7,without:[143,49,7,9,10,109,152,86,115,116,63,22,23,166,126,186,118,78,113,179,81,181,185,133,33,195],model:[98,175,81],"4kib":78,"\u3067\u78ba\u4fdd\u3057\u305f":16,"groonga\u3092build\u3059\u308b\u969b\u306b":83,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":64,rose:13,except:[167,93,69,91,185,86,95,109,33,7,101,9,140,146,28,181,85,81,66],blog:[56,109,185,153,71,166,115,186,79,158,152],vulner:81,hino:126,hyphen:[3,66],grn_obj_nam:80,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":98,grn_table_cursor_open:[64,156],realtim:[155,49],with_typ:134,madrid:76,grn_rc:[41,42,80,84,5,94,87,124,114,16,17,25,117,111,19,64,57,39,54,122],unrecover:84,easili:81,grn_cache_current_set:17,freed:[17,81],nosuchfileordirectori:78,garbag:[28,126,81,127],inspect:[78,126,81],n_tabl:16,tokenbigramsplitsymbolalpha:[169,109,91],"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u30 59":[80, 122],"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":84,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":156,stand:129,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":11,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":153,tokentrigram:[169,78,91],max_siz:64,libmecab:[154,14,153],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":127,rescord:160,strict:[78,81],interfac:[7,132,3,4],chracterist:95,regard:[37,126,185],jun:[78,81],grn_obj_key_var_s:183,untag:110,longer:[43,16],notat:[7,126,152],"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":80,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306 b\u306f\ u6a19\u6e96\u30a8\u30e9\u30fc\u51fa\u529b\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057":11,grn_expr_creat:39,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":153,"http\u7d4c\u7531\u3067\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u6642\u306b\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b":156,strongli:[167,130,14,154,102,138],"a\u3092\u6307\u5b9a\u3057\u3066tabl":114,user_column:170,incorrect:81,grn_db_text:39,grn_index_cursor_next:[121,126],gettext:[120,20],orient:[13,133,33],rdbm:98,oneself:81,symbol:85,remove_tokenized_delimit:134,"\u30b5\u30fc\u30d0\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u5229\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":170,allow_upd:[109,185],comments_loc:188,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":125,directo ri:[41,1 32,126,7,9,78,28,192,178,65,81,120],potenti:126,"\u30c7\u30fc\u30e2\u30f3":98,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":16,all:[91,3,92,95,46,69,49,7,9,10,146,150,78,192,55,115,109,111,152,86,193,16,59,60,159,160,96,66,22,165,122,166,47,175,97,28,128,179,81,181,188,185,133,137,36,140,120,85,118],grn_table_column:114,dist:153,"ctx_new\u3068\u3044\u3046queue\u306b":135,scalar:[56,72,44],follow:[41,93,91,3,4,12,129,46,98,48,49,7,102,9,78,149,52,192,163,55,109,76,5,86,13,155,59,116,60,18,181,20,169,152,65,66,67,45,27,122,166,123,168,150,126,172,26,140,28,178,179,81,82,96,185,131,186,132,134,33,190,136,37,120,85,175],disk:[78,79,181,66],ptr:[41,156],item_:155,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":156,init:[7,192,54,81,126],program:[152,132,96,98,126,7,191,9,65],"\u95be\u5024\u3092 \u8d8a\u 3048\u308b":71,neglig:81,liter:[185,163,33,48,126,7,28],replic:12,"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":71,libgcc_s_sjlj:81,rand_max:68,systemctl:142,failur:[7,78,19,81,153],"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":61,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":64,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":98,longtext:[46,111],"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":153,"\u304a\u3088\u3073":153,"help\u3067\u51fa\u529b\u3055\u308c\u308b":28,yappo:[43,126,81],name_s:[41,122,183,16,114,80,39,54],tex:91,rate:[126,97],design:[7,13,109,129],sug:172,what:[56,44,155,186,39,181],sub:[133,153],sum:[109,81,12],"\u66f4\u65b0\u524d\u306e\u5024\u3092\ u6307\u5 b9a\u3057\u307e\u3059":122,libstemm:81,themselv:[178,120],noraml:91,bottom_right_point:111,behaviour:[126,159],shouldn:81,solari:[56,138],n_var:41,grn_ctx_init:[28,16],serihiro:7,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":194,memcach:[133,191,56,34],matsuu:156,grn_bad_address:2,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":89,grn_ctx_get_output_typ:16,gtihub:28,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":125,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":71,tokenunigram:169,"\u30ea\u30ea\u30fc\u30b9\u65e5":153,deprec:[109,11,98,126,7,76,10,28,108,81,66],ocelot:[28,126],suddenli:126,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[28,156],"vagrant\u3067\u4f7f\u7528\u3059\u308b\u4eee\u60f3\u5316\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":153,"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":153,"\u4ee 5\u964d\ u3092\u7121\u8996":156,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":156,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[56,40],"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":46,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":157,grn_syntax_error:2,src_key_siz:114,flag:[41,74,121,122,86,183,96,113,114,16,7,127,60,64,28,80,39,81],"op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066res\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3042\u308b\u3044\u306f\u524a\u9664\u3057\u307e\u3059":57,known:[23,152,12,133,33,126,103,3],"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":94,"2\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3059":46,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":98,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":108,"org\u3068\u901a\u4fe1 \u3057\u 307e\u3059":170,mecab_strerror:81,omit:[22,109,91,3,4,95,136,137,76,10,28,177,179],grndb:[53,56,81,44],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_sortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,cours:131,newlin:[28,113,78],divid:[13,133,152,123],rather:[109,12,86,123,96,129,115,78,29,85,181],rep_loc:170,divis:81,cmp0014:81,resourc:[115,81,5,16],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[38,108],"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":122,overcommit:140,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":122,"\u6307\u5b9a\u3059\u308b":84,resours:17,"request\u3092\u9001\u308a\u307e\u3059":153,"short":[9,86],geo_dist:[56,44,126,7,28,162],postfix:[143,23,166,63],caus:[185,13,126,7,78,28,152,81,66],"\u30 5d\u308c \u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":80,mailarch:153,yahppo:126,grn_table_trunc:[28,114],logal:82,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":114,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":156,style:[78,81],"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":16,soccer:45,"return":[41,17,111,44,5,56,124,32,126,16,7,114,19,122,78,136,28,80,39,81,84],normalzi:163,grn_table_sort_asc:114,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":70,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":122,refresh:45,innodb:133,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":141,"table_remove\u306f\u30c6\u30fc\u30d6\u30eb\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":147,"\u30ea\u30 ea\u30fc \u30b9\u5bfe\u8c61\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304claunchpad":153,friendship:45,truncat:[56,122,44,32,126,137,78,28,81],"windows\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,grn_text_vprintf:81,weight:[7,56,126,81],needless:[7,78,113,126],yoshida:126,expect:[13,85,81,181],errror:181,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":114,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":80,socket_is_not_connect:175,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[114,80],footnot:[76,3],"\u5186\u5468\u4e0a\u306e\u70b9\u306e\u4e00\u3064\u306e\u5ea7\u6a19\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":171,"windows\u3067\u306fmingw\u3067\u3082p thread\u 3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":28,advanc:[69,43,143,166,23,146,78],differ:[7,78,81,0],content_type_len:7,thread:[41,84,132,133,98,126,16,137,55,150,81,122],"\u306exml\u51fa\u529b\u5bfe\u5fdc":156,"\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059":70,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":114,grn_selector_func:81,"apt\u306e\u5834\u5408":153,notifi:104,feel:81,groonga_database_auto_cr:[7,126],blank:[78,193,85],"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":170,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":145,gpl:43,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u3064\u3044\u305f\u30a b\u30e9\ u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u7d50\u679c\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":156,script:[56,166,44,126,7,78,192,39,81,82],goronga:102,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":153,gpg:153,exclude_t:126,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":180,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u524d\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":145,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3068tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u6319\u52d5\u304c\u5909\u308f\u308a\u307e\u3059":145,statement:152,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":153,"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2 e\u985e\ u3092\u6307\u5b9a\u3057\u307e\u3059":42,"version\u3067\u8868\u793a\u3055\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u304c\u66f4\u65b0\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059":153,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[80,122],kind:[3,92,131,133,46,75],similar_search:[7,155],remov:[165,84,24,126,7,13,173,9,10,28,78,80,113,81,47],xxx_201506:78,rep_http:170,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":170,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":180,grn_post:[111,121],ruby_ev:[56,32,126,44],expir:[78,9,118],"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":125,"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":170,"\u30d9\u30af\u30bf\u30fc\u3068\u3057 \u3066\u 683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":46,grn_directory_not_empti:2,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":156,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":98,"mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584":1,"\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059":184,operation_would_block:175,park:188,function_not_impl:175,"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":61,reach:140,keyword_s:39,"\u30e1\u30fc\u30c8\u30eb":171,grn_obj_incr:80,latitude_in_degre:152,"name_size\u30d1\u30e9\u30e1\u30fc\u30bf\u304c0\u306e\u5834\u5408\u306f\u3059\u3079\u3066\u306e\u30ab\u30e9\u30e0id\u3092\u683c\u7d0d\u3057\u307e\u3059":114,grn_column_name_kei:122,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":171,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":71,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u 304b\u30 63\u305f\u5834\u5408\u306b\u306ftrue":[147,6,73,8,157,194,108],penalti:126,firewood:[7,126],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":16,underflow:13,grn_plugin_fre:41,hit:[109,160,126,144],pair_queri:[155,18,179,190,49],"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":114,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":98,longest:[28,114,152],"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u8a9e\u306e\u30d2\u30c3\u30c8\u6570\u304c\u591a\u3044\u305f\u3081":71,grn_column_name_nsubrec:122,grn_obj_persist:[114,122],"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3068\u540c\u7b49\u3067\u3059":145,grn_success:[41,2,84,5, 16,17,19 ,150,39,122],armhf:81,"\u6570\u5024":145,"\u30b3\u30df\u30c3\u30c8":153,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":89,art:[188,152],dump:[56,44,156,32,126,7,78,28,107,81],highight_ful:163,ff01:78,arc:91,tobbi:116,grn_obj_with_weight:122,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":122,jemalloc:81,grn_table_differ:114,"\u5fc5\u8981\u306a\u6642\u4ee5\u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":156,"js\u306a\u3069":153,latin:98,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u304f\u308b\u3053\u3068\u3092\u6291\u3048\u3064\u3064\u518d\u73fe\u7387\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":71,succeed:[2,3,74,137,173,128,192],"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63 ":156,so lv:[13,123,12],solr:152,socket_not_initi:175,"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":182,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":71,context:[166,33,16,17,186,9,28,80,39],"1x139":13,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":122,grn_table_sort_flag:114,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":98,grn_no_such_devic:2,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":11,additional_configure_opt:126,"\u5f93\u3063\u3066":109,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":94,f10399c0:153,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":171,conifugr:82,grn_file_exist:2,beforehand:167,close_tag1:163,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":170,packag:[56,130,153,167,154,138,90,120],"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":170,nakai:126,abov:[3,92,49,7, 101,102, 9,104,192,109,110,116,18,120,23,186,75,97,78,79,178,179,82,193,131,132,188,66,85],kana:[155,18,179,190,49],input_file_nam:136,xvzf:[167,130,24,14,154,192,90],"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":71,"benchmark\u7d42\u4e86\u5f8c\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u306f\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059":170,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":153,table_buff:16,score_valu:78,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":170,minim:[9,97],grn_obj_column:80,"\u5065\u4f5c":45,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":156,higher:[155,109],"\u975e\u4e92\u63db":28,x86:[28,102,78],"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059": 127,"ben chmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":170,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":145,lower:[109,91,3,66],"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":170,searchabl:[115,78],"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":114,propos:[172,109],table_:[95,66],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":68,"3\u884c\u76ee":170,northern:7,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":70,teruya:78,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":80,grn_plugin_get_system_plugins_dir:28,table2:114,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30 ec\u30b3 \u30fc\u30c9\u306e\u3046\u3061":70,table1:114,docutil:153,retry_max:175,collect:[136,133,188],"\u3042\u3089\u304b\u3058\u3081groonga\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304a\u304f\u3068\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u5186\u6ed1\u306b\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":70,"\u305d\u306e\u6642\u70b9\u3067stable\u3067\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":11,global:[7,56,31,126,44],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":11,invalid_format:175,"log\u3067\u3059":98,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[42,84,94,80,54,119,122],blog_titl:3,retri:19,"gro onga\u30 6e\u30d1\u30b9\u6307\u5b9a":153,leftmost:152,form_1:3,form_2:3,"\u7591\u4f3c\u30ab\u30e9\u30e0":61,squeez:[126,153],maximium:109,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":64,plai:[133,92],"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":16,dialog:126,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":170,grn_cache_current_get:17,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":194,"\u3059\u3079\u3066\u306e\u95a2\u6570\u304c\u30c6\u30b9\u30c8\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u304f\u3060\u3055\u3044":180,shimoda:156,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":153,question:[78,79],live:[188,66],"long":[104,87,126,62,25,78,81,66],adjac :[85,185 ],arithmet:126,"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":170,grn_proc_get_info:54,wno:28,"436218z":152,"\u554f\u984c\u3092\u4fee\u6b63":156,aramaki:28,piro:81,consist:[109,3,185,49,175,78,85,81],"benchmark\u306f":170,caller:54,"\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u9069\u7528\u3059\u308bgrn_expr\u3092script\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":109,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":98,test_text_otoj:180,highlight:[163,48],radious_or_point:171,vojtovich:81,"\u3059\u308b\u3068groonga":153,horikoshi:28,unauthent:[7,154],grn_expr_append_const_int:39,"\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3 044\u307 e\u3059":145,grn_socket_not_initi:2,oniguruma:78,"man\u3092\u8ffd\u52a0":1,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":156,weight3:86,weight2:[7,109,86],weight1:[7,109,86],comments2:79,grn:[9,159],gro:[132,33],"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\u6587\u66f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059":145,nice:115,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":170,bookmark_titl:159,meaning:78,grn_expr_add_var:39,"\u540c\u6642\u306b":135,"\u7279\u306b\u4f55\u3082\u6307\u5b9a \u3057\u 306a\u3044\u3068\u751f\u6210\u3057\u305fhtml\u306b\u57cb\u3081\u8fbc\u307e\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u304c":153,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":89,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u4e0d\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3059\u5834\u5408\u304c\u3042\u308a\u307e\u3059":83,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":148,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":153,lear:49,grn_set_default_encod:124,"\u7e70\u308a\u8fd4\u3057\u6570":170,mainstream:133,w64:153,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":70,entries_content_index_20150709:166,"grn_expr\u306f":70,relev:[133,3],ranguba:[81,86],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u53cd\u6620\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3 \u30c9\u 3092\u5b9f\u884c\u3057\u307e\u3059":153,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":153,nfkc:193,pleas:[0,142,3,84,12,123,26,78,29,192,89,81,120],smaller:[76,86,133,115,150,66],memset:78,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":153,compat:[167,130,166,14,134,55,154,9,78,37,128,193,81],compar:[109,185,133,33,7,81],grn_plugin_mutex:41,jekyl:153,grn_info:[56,31,44],"314e":152,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,usag:[56,44,133,126,78,81],"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":46,larger:[109,86,95,98,33,49,175,140,78,65,81],larget:104,"_name":66,typic:[78,109],appli:[43,39],approxim:[7,28,76],"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":153,apt:[153,14,7,154,20,82],api:[89,15,191],from:[133,138,56],"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":71,usa:131,few :[109,55 ,195],usr:[22,177,98,9,10,192,180,90],proonga:129,sort:[93,109,56,95,126,133,155,78,28,158],grn_db_creat:84,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_limit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,tokenbigramignoreblanksplitsymbolalpha:169,memos_cont:165,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":156,"groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\u308c\u306a\u3044\u3057":125,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":61,annot:126,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":94,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044":180,endian:81,"res2\u 306b\u68 3c\u7d0d\u3057\u307e\u3059":114,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":80,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":46,grn_column:[56,31,44],tar:[167,130,153,24,14,154,192,90],tag:[56,109,166,153,86,96,126,7,28,81],calc_target:[109,166],"\u30ea\u30ea\u30fc\u30b9\u6642\u3068\u958b\u767a\u6642\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u5206\u3051\u305a\u306b\u4f5c\u696d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c":153,grn_set_lock_timeout:19,pure:85,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":94,six:[150,3,63],"100x100":171,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":106,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":114,instead:[93,142,92,95,98,48,7,102,9,10,78,192,108,167,109,76,152,16,160,181,66,1 66,163,1 26,175,28,81,82,185,33,138,193],express:[56,69,76,44,132,160,109,126,7,173,102,9,78,28,39],"\u500b\u5225\u306b\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u3067\u554f\u984c\u304c\u767a\u751f\u3057\u3066\u3044\u308b\u7b87\u6240\u3092\u5207\u308a\u5206\u3051\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":153,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":153,"load\u30b3\u30de\u30f3\u30c9":1,attent:[109,144],"db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5358\u7d14\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":70,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":156,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":182,light:[60,129],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":1 06,"1\u8 84c\u76ee":170,freebsd:[56,44,78],"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":180,"\u4eac\u90fd":[71,145,85],location_in_input:136,ouput:126,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":170,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":89,"log_level\u306f":6,condtion:185,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":98,"homebrew\u3078pul":153,bye:[47,152,166,109,165,185],"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":98,crash:[126,7,137,60,78,28,81],"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":11,"release\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067build\u304b\u3089upload\u307e\u3067\u4e00\u6c17\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":153,keys_zon:9,"\u884c":180,de vel:[167 ,130],shinjyuku:75,successor:152,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":180,edit:[89,153],grn_socket_is_already_connect:2,nested_reference_column:109,our:[26,120],grn_obj_column_index:[121,122],"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":170,"gz\u306eversion\u304a\u3088\u3073vers":153,out:[167,130,186,14,154,102,138,105,79,81],longitude_in_degre:152,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":156,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":153,dcb314:81,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":135,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":71,grn_ctx_send:[17,107,16],"\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u 308b\u30 68\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059":153,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":71,york:[188,76],dictionari:[167,156,126,7,78,193,85,81],column3:12,lte:91,"\u57fa\u672c\u7684\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u8a18\u8f09\u3057\u307e\u3059":153,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":80,tokenizer_list:[56,32,81,44],"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":156,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":183,"request\u3092\u9001\u308a\u307e\u3057\u305f":153,set:[17,109,167,72,86,14,126,16,7,154,19,78,118,80,130,81,47],prioriti:[133,109,179],"proc\u3 067\u4f7 f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":54,grn_obj_get:80,unknown:[124,113],"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,"akio\u3055\u3093":156,grn_dat_repair:113,shell:[78,192,98,185,181],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":38,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":74,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":64,practic:[13,133,81],"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":156,"\u3092\u4f5c\u6210\u3057\u307e\u3059":74,emac:120,no_such_file_or_directori:175,collaps:7,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":125,"\u7d4c\u5ea6\u3 068\u7de f\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":46,"4097byte":95,"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059":98,"shimada\u3055\u3093\u304c\u5831\u544a":156,grn_ii_estimate_size_for_queri:78,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":80,which:[41,142,91,3,92,5,98,47,7,146,101,103,149,143,144,167,109,76,152,13,116,63,65,45,69,23,166,126,186,75,173,175,78,79,179,81,185,131,132,133,134,191,188,110],grn_obj_delete_by_id:[28,80],"\u30db\u30b9\u30c8\u540d\u3068":170,who:[78,85,126,45],"100cent":85,default_token:[109,166],"class":[163,110,33,48],"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":153,determin:[109,3,160],"_id":[3,92,49,101,103,128,144,109,152,86,155,115,60,18,61,159,45,165,122,166,71,75,173,97,78,79,80,179,81,181,185,131,136,193],someth:81,grn_mecab_chunked_tokenize_en:78,"max\u3068\u7570\u306a\u3063\u305f\u6 5b9\u541 1\u306b\u3042\u308b\u30ce\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f\u53d6\u308a\u51fa\u3057\u307e\u305b\u3093":64,word1:[7,109,185,152],word2:[7,109,185,152],memo_index:81,your_github_account:120,grn_obj_with_posit:122,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":74,local:[152,153,133,98,9,20,192,120],"150x100":35,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":145,grn_ctx_use:16,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":145,subrecord:126,grn_cursor_prefix:64,candidate2:155,candidate1:155,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":170,view:[56,132,168,7,101,158],"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":153,knowledg:133,"1073741824\u306e\u6574\u6570\u3067":61,"\u5f15\u6570\u306f\u4ee5\u4e0b \u306e2\ u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":98,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"10t22":18,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":64,index_tag:45,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":170,entranc:3,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,dll:[7,28,41,81],"v1\u306e\u5024\u306e\u4e2d\u306b":70,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":125,yaman:[126,81],"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":171,job:170,homebrew:[56,153,138],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u304 6\u306b\ u3057\u307e\u3059":125,addit:[56,109,91,44,167,133,14,134,130,154],"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":182,april:153,"groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u6642\u70b9\u3067\u306fconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u542b\u307e\u308c\u3066\u304a\u3089\u305a":153,grn_logger_info:7,"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":156,respect:[7,13,75,188],rpm:[167,130,153,126,7,78,28,113,81],hiroaki:78,target_nam:81,"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":28,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":122,mike:173,spammer:[123,12],hmm:188,"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[35,171],roonga:[172,185,152],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":71,"\u30c6\u30fc\u30d6\u30ebentry\u306b":74,"\u6570\u5024\u3092\u63 07\u5b9a \u3057\u305f\u5834\u5408\u306b\u306f":171,"21th":126,cursor:[28,111],"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":61,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u9069\u5408\u7387\u306e\u4f4e\u3044\u5834\u5408\u304c\u591a\u3044\u306e\u3067":71,layer:78,customiz:33,"\u3072\u308d\u3086\u304d":144,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":153,avg:[182,109,81],"\u30b3\u30de\u30f3\u30c9\u3067\u30ad\u30fc\u304cshorttext\u4ee5\u5916\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3067\u304d\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":156,grn_expr_append_op:[70,39],"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":170,"\u6ce8\u610f":114,"\u5024\u304c\u5b58\u5728\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u30 59\u308b \u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":156,difficult:133,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":71,grn_column_name_id:122,"\u7d9a\u3044\u3066":71,"0x10":175,"center\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u3092\u4e2d\u5fc3\u3068\u3059\u308b\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":171,english:[0,109,126,26,20,28,85,179,81,120],grn_content_xml:107,uzulla:28,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u305f\u6642\u523b\u306etvsec\u5024\u3092\u8fd4\u3057\u307e\u3059":83,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":153,do_http:170,users_nam:116,obtain:41,"\u3082\u3057groonga":170,euc_jp:192,"key\u306b\u306f":114,amd64:153,book:152,host2:181,host1:181,"\u307e\u305f\u306f":170,"table\u306fcolumn\u3068\u306f\u5225\u306b":114,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":124,"offset\u306b\u6307\ u5b9a\u3 055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":80,know:[45,109,131,188,62,78,85],press:120,"\u95be\u5024\u3092\u3042\u3052\u308b":[56,40],earch:91,incres:81,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,exceed:168,no_child_process:175,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"export":[28,126,81,20],"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":71,yyyymmdd:166,column_inform:96,lead:[109,3,33],grn_obj_get_nhook:94,leak:[74,156,126,7,78,28,81],"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":98,grn_address_is_in_us:2,time_stamp:150,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":122,investig:[168,126,131],acronym:[175,129],tanab:126,rare:[78,126],"\u305d\u308c\u305e\u308c":180,kanako: 126,disa bl:[109,156,185,132,150,20,98,126,7,9,78,28,192,113,179,81],"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":89,own:[23,152,13,133,7,39],grn_operation_timeout:2,"\u6570\u5b57":170,grn_ii:[56,31,44],"\u4f8b":[56,1,80,153],grn_id:[41,42,121,122,87,16,114,64,80,39],yuya:[78,81],automat:[22,45,3,185,95,152,9,62,10,144,78,177,120],automak:156,grn_expr_append_const_str:39,grn_default_query_logger_get_path:7,"145508000x":76,transfer:[56,142,129,133,175,158],grn_command_version_min:117,appl:193,replac:[152,190,78,181,65,81,92],"var":[41,142,70,96,98,9,62,78,192,54],"\u30ad\u30fc\u304c":98,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":153,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059":70,"\u73fe\u5728":194,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":98,"entry_body\u3092\u4 f5c\u621 0\u3057\u307e\u3059":74,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":153,palallel:153,made:[7,28,3,78],tab:[78,107,178,4,175],grn_logical_range_filter_en:78,whether:[2,143,7,101,9,109,76,13,155,116,159,160,23,62,166,168,63,186,97,128,80,81,185,84],troubl:120,record:[67,56,111,23,166,44,86,133,126,7,114,173,159,78,28,59,39,81],below:[59,105,60,185],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":80,"\u307e\u305f\u306f\u30bd\u30b1\u30c3\u30c8\u7d4c\u7531\u3067groonga\u30b5\u30fc\u30d0\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u884c\u3057\u307e\u3059":[83,147,6,73,74,127,8,157,159,161,194,106,38,141,108],meaningless:166,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":117,ff76:193,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059" :42,"8bi t":46,"\u3067\u306f\u6607\u9806":114,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":153,makecach:[7,130],"\u6700\u5f8c\u306bgrntest\u306b\u3088\u308b\u5b9f\u884c\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u307e\u3068\u3081\u3066\u8868\u793a\u3055\u308c\u307e\u3059":153,other:[133,89,120,138,56],bool:[165,185,13,46,126,47,144],"command_version\u3092\u8fd4\u3057\u307e\u3059":16,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":98,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":156,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":80,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":11,debian:[56,153,138,20],"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":94,emerg:[6,150,8,98,9],allow_leading_not:109},objtypes:{"0":" std:opti on","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},objnames:{"0":["std","option","option"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","macro","C macro"],"4":["c","member","C member"]},filenames:["contribution/report","news/0.x","reference/command/return_code","tutorial/introduction","reference/output","reference/api/overview","reference/commands/log_level","news/2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","reference/command/command_version","reference/scorer","tutorial/data","install/ubuntu","contribution/documentation","reference/api/grn_ctx","reference/api/grn_cache","reference/suggest/correction","reference/api/global_configurations","contribution/documentation/introduction","spec","reference/commands/plugin_register","reference/commands/logical_count","install/solaris","reference/api/grn_match_escalation","community","reference/commands/normalizer_list","news/1.2.x","referenc e/scorin g_note","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","reference/command/request_id","reference/executables/groonga-server-http","reference/commands/defrag","reference/api/grn_expr","troubleshooting","reference/api/plugin","reference/api/grn_info","news/senna","reference","tutorial/index","reference/types","reference/commands/table_tokenize","reference/functions/highlight_html","reference/suggest/suggestion","reference/commands/io_flush","reference/suggest","server/memcached","reference/executables","reference/api/grn_proc","server/http/comparison","index","reference/api/grn_search","reference/cast","reference/commands/load","reference/commands/column_rename","reference/columns/pseudo","reference/executables/grndb","reference/commands/logical_table_remove","reference/api/grn_table_cursor","reference/executables/groonga-suggest-learner","reference/commands/table_create","limit ations", "reference/functions/rand","reference/commands/ruby_load","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/column","reference/commands/column_remove","reference/commands/column_create","tutorial/search","reference/functions/geo_distance","reference/commands/range_filter","news","tutorial/match_columns","reference/api/grn_obj","news/4.x","development/travis-ci","reference/commands/status","reference/api/grn_db","reference/tokenizers","reference/columns/vector","reference/api/grn_ii","contribution/documentation/c-api","contribution","install/mac_os_x","reference/commands/tokenize","tutorial/query_expansion","reference/operations/geolocation_search","reference/api/grn_hook","reference/tables","reference/commands/column_list","reference/functions/between","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/functions/in_values","install/windows","tutorial/network","reference/commands/reques t_cancel ","contribution/development/repository","reference/commands/table_list","reference/api/grn_content_type","reference/commands/clearlock","reference/commands/select","reference/functions/html_untag","reference/api/grn_geo","reference/functions/edit_distance","news/1.3.x","reference/api/grn_table","reference/indexing","reference/functions/query","reference/api/grn_command_version","reference/commands/cache_limit","reference/api/grn_user_data","contribution/documentation/i18n","reference/api/grn_index_cursor","reference/api/grn_column","reference/scorers/scorer_tf_idf","reference/api/grn_encoding","contribution/development/cooperation","news/3.x","reference/commands/check","reference/commands/truncate","server/gqtp","install/centos","tutorial/drilldown","reference/executables/groonga-suggest-httpd","characteristic","reference/commands/normalize","contribution/development/com","reference/command/output_format","reference/commands/lock_clear","install","reference/columns/index","r eference /tuning","reference/commands/shutdown","server/package","reference/commands/logical_range_filter","tutorial/patricia_trie","spec/search","reference/commands/ruby_eval","reference/commands/table_remove","news/1.1.x","reference/functions/vector_size","reference/log","reference/columns/scalar","reference/grn_expr/script_syntax","contribution/development/release","install/debian","reference/commands/suggest","news/1.0.x","reference/commands/define_selector","tutorial","reference/commands/dump","reference/grn_expr","reference/commands/quit","reference/function","reference/functions/highlight_full","development","reference/token_filters","reference/commands/logical_select","install/fedora","troubleshooting/mmap_cannot_allocate_memory","reference/commands/tokenizer_list","reference/executables/groonga-benchmark","reference/functions/geo_in_circle","reference/suggest/introduction","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/com mands/pl ugin_unregister","reference/query_expanders/tsv","reference/suggest/completion","contribution/development/test","reference/regular_expression","reference/executables/grnslap","reference/api/grn_type","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","reference/scorers/scorer_tf_at_most","tutorial/micro_blog","reference/operations","reference/executables/groonga-suggest-create-dataset","client","install/others","reference/normalizers","reference/commands/log_reopen","server/http"],titles:["12.1. How to report a bug","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","7.3.4. Return code","4.1. Basic operations","7.2. Output","7.20.1. Overview","7.3.19. <tt class=\"docutils literal\"><span class=\"pre\">log_level</span></tt>","Release 2.1.2 - 2013-01-29","7.3.20. <tt class=\"docutils literal\"><span class=\"pre\">log_put</span></tt>","7.1.5. groonga-httpd","7.3.32. <tt class=\"docutils literal\"><span class=\"pre\">regis ter</spa n></tt>","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.11. Scorer","4.3. Various data types","2.4. Ubuntu","12.2. How to contribute in documentation topics","7.20.8. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","7.20.4. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","7.16.3. Correction","7.20.2. Global configurations","12.2.1. Introduction","8. Specification","7.3.28. <tt class=\"docutils literal\"><span class=\"pre\">plugin_register</span></tt>","7.3.22. <tt class=\"docutils literal\"><span class=\"pre\">logical_count</span></tt>","2.7. Oracle Solaris","7.20.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></tt>","3. Community","7.3.27. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","Release 1.2.9 - 2011-12-29","<no title>","7.10. Query expanders","7.20. API","7.3. Command","7.14.13. snippet_html","5. Server","7.14.5. geo_in_rect angle"," 7.3.3. Request ID","7.1.6. Groonga HTTP server","7.3.13. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","7.20.11. grn_expr","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","7.20.3. Plugin","7.20.16. <tt class=\"docutils literal\"><span class=\"pre\">grn_info</span></tt>","News in Senna period","7. Reference manual","4.6. Tag search and reverse resolution of reference relationships","7.4. Data types","7.3.43. <tt class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></tt>","7.14.7. highlight_html","7.16.4. Suggestion","7.3.16. <tt class=\"docutils literal\"><span class=\"pre\">io_flush</span></tt>","7.16. Suggest","5.4. Memcached binary protocol","7.1. Executables","7.20.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","5.2.1. Comparison","Groonga documentation","7.20.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_search</span></tt>","Cast","7.3.17. <tt class=\"docutils lite ral\"><s pan class=\"pre\">load</span></tt>","7.3.11. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","7.6.3. Pseudo column","7.1.1. <tt class=\"docutils literal\"><span class=\"pre\">grndb</span></tt>","7.3.25. <tt class=\"docutils literal\"><span class=\"pre\">logical_table_remove</span></tt>","7.20.22. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></tt>","7.1.9. groonga-suggest-learner","7.3.40. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","9. Limitations","7.14.12. rand","7.3.35. <tt class=\"docutils literal\"><span class=\"pre\">ruby_load</span></tt>","12.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","7.6. Column","7.3.10. <tt class=\"docutils literal\"><span class=\"pre\">column_remove</span></tt>","7.3.8. <tt class=\"docutils literal\"><span class=\"pre \">colum n_create</span></tt>","4.4. Various search conditions","7.14.3. geo_distance","7.3.31. <tt class=\"docutils literal\"><span class=\"pre\">range_filter</span></tt>","News","4.7. match_columns parameter","7.20.18. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","Release 4.1.1 - 2015-01-29","11.1. Travis CI","7.3.38. <tt class=\"docutils literal\"><span class=\"pre\">status</span></tt>","7.20.9. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","7.8. Tokenizers","7.6.2. Vector column","7.20.14. <tt class=\"docutils literal\"><span class=\"pre\">grn_ii</span></tt>","12.2.3. C API","12. How to contribute to groonga","2.2. Mac OS X","7.3.44. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","4.11. Query expansion","7.15.1. Geolocation Search","7.20.13. <tt class=\"docutils literal\"><span class=\"pre\">grn_hook</span></tt>","7.5. Tables","7.3.9. <tt class=\"docutils literal\"><span class=\"pre\">column_list</span> </tt>"," 7.14.1. between","7.1.3. <tt class=\"docutils literal\"><span class=\"pre\">groonga</span></tt> executable file","5.2.3. groonga-httpd","4.9. Additional information about lexicon for full text search","7.14.9. in_values","2.1. Windows","4.2. Remote access","7.3.33. <tt class=\"docutils literal\"><span class=\"pre\">request_cancel</span></tt>","12.3.1. Repository","7.3.41. <tt class=\"docutils literal\"><span class=\"pre\">table_list</span></tt>","7.20.7. <tt class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></tt>","7.3.7. <tt class=\"docutils literal\"><span class=\"pre\">clearlock</span></tt>","7.3.36. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","7.14.8. html_untag","7.20.12. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","7.14.2. edit_distance","Release 1.3.0 - 2012-01-29","7.20.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","7.17. Indexing","7.14.11. query","7.20.6. <tt class=\" docutils literal\"><span class=\"pre\">grn_command_version</span></tt>","7.3.5. <tt class=\"docutils literal\"><span class=\"pre\">cache_limit</span></tt>","7.20.24. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","12.2.2. I18N","7.20.15. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","7.20.5. <tt class=\"docutils literal\"><span class=\"pre\">grn_column</span></tt>","7.11.3.2. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></tt>","7.20.10. <tt class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></tt>","12.3.3. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","Release 3.1.2 - 2014-01-29","7.3.6. <tt class=\"docutils literal\"><span class=\"pre\">check</span></tt>","7.3.46. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","5.3. GQTP","2.5. CentOS","4. 5. Drill down","7.1.8. groonga-suggest-httpd","1. Characteristics of Groonga","7.3.26. <tt class=\"docutils literal\"><span class=\"pre\">normalize</span></tt>","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","7.3.2. Output format","7.3.18. <tt class=\"docutils literal\"><span class=\"pre\">lock_clear</span></tt>","2. Install","7.6.4. Index column","7.19. Tuning","7.3.37. <tt class=\"docutils literal\"><span class=\"pre\">shutdown</span></tt>","5.1. Server packages","7.3.23. <tt class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></tt>","4.8. Prefix search with patricia trie","8.2. \u691c\u7d22","7.3.34. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","7.3.42. <tt class=\"docutils literal\"><span class=\"pre\">table_remove</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","7.14.15. vector_size","7.18. Log","7.6.1. Scalar column","7.12.2. Script syntax","12.3.6. \u30ea\u30ea\u30fc\u 30b9\u62 4b\u9806","2.3. Debian GNU/Linux","7.3.39. <tt class=\"docutils literal\"><span class=\"pre\">suggest</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","7.3.12. <tt class=\"docutils literal\"><span class=\"pre\">define_selector</span></tt>","4. Tutorial","7.3.15. <tt class=\"docutils literal\"><span class=\"pre\">dump</span></tt>","7.12. grn_expr","7.3.30. <tt class=\"docutils literal\"><span class=\"pre\">quit</span></tt>","7.14. Function","7.14.6. highlight_full","11. Development","7.9. Token filters","7.3.24. <tt class=\"docutils literal\"><span class=\"pre\">logical_select</span></tt>","2.6. Fedora","10.2. How to avoid mmap Cannot allocate memory error","7.3.45. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","7.1.4. groonga-benchmark","7.14.4. geo_in_circle","7.16.1. Introduction","7.3.14. <tt class=\"docutils literal\"><span class=\"pre\">delete</span></tt>","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5 \u5831", "8.1. GQTP","5.2.2. groonga","7.3.29. <tt class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></tt>","7.10.1. QueryExpanderTSV","7.16.2. Completion","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","7.13. Regular expression","7.1.2. grnslap","7.20.23. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","7.14.10. now","7.12.1. Query syntax","7.14.14. sub_filter","7.11.3.1. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></tt>","4.10. Let's create micro-blog","7.15. Operations","7.1.7. groonga-suggest-create-dataset","6. Client","2.8. Others","7.7. Normalizers","7.3.21. <tt class=\"docutils literal\"><span class=\"pre\">log_reopen</span></tt>","5.2. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[25,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[98,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[80,1,1,"c.grn_obj_reinit"],grn_get_default_match_escalation_threshold:[25,1,1,"c.grn_get_default_ match_es calation_threshold"],grn_db_create:[84,1,1,"c.grn_db_create"],grn_plugin_charlen:[41,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[94,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[80,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[64,1,1,"c.grn_table_cursor_close"],"-P":[182,0,1,"cmdoption-P"],grn_table_cursor_set_value:[64,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[39,1,1,"c.grn_expr_syntax_escape"],"--log-output-dir":[170,0,1,"cmdoption--log-output-dir"],"-d":[65,0,1,"cmdoption-d"],"-a":[98,0,1,"cmdoption-a"],"-c":[98,0,1,"cmdoption-c"],grn_obj_set_info:[42,1,1,"c.grn_obj_set_info"],"-m":[182,0,1,"cmdoption-m"],"-l":[65,0,1,"cmdoption-l"],"--disable-max-fd-check":[132,0,1,"cmdoption--disable-max-fd-check"],"-i":[170,0,1,"cmdoption-i"],"-h":[98,0,1,"cmdoption-h"],grn_db:[84,2,1,"c.grn_db"],"--log-rotate-threshold-size":[98,0,1,"cmdoption--log-rotate-threshold-size"],"-t":[132,0,1,"cmdoption-t"],grn_command_version:[117,2,1,"c.grn_command_version"],grn_obj_set_e lement_i nfo:[42,1,1,"c.grn_obj_set_element_info"],"-p":[132,0,1,"cmdoption-p"],"-s":[65,0,1,"cmdoption-s"],"-r":[65,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[41,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[16,1,1,"c.grn_ctx_at"],"--bind-address":[98,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[117,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[98,0,1,"cmdoption--config-path"],grn_table_size:[114,1,1,"c.grn_table_size"],"--query-log-path":[98,0,1,"cmdoption--query-log-path"],grn_ctx_use:[16,1,1,"c.grn_ctx_use"],grn_obj_defrag:[80,1,1,"c.grn_obj_defrag"],db:[170,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[19,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[64,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[124,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[80,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[87,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[80,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[111,1,1,"c.grn_geo_estimate_in_rectangle "],grn_t able_sort:[114,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[122,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[80,1,1,"c.grn_obj_unlink"],grn_obj_id:[80,1,1,"c.grn_obj_id"],grn_obj_set_value:[80,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[41,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[124,2,1,"c.grn_encoding"],grn_proc_create:[54,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[41,3,1,"c.GRN_PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[122,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--log-base-path":[65,0,1,"cmdoption--log-base-path"],"--dir":[170,0,1,"cmdoption--dir"],"--address":[98,0,1,"cmdoption--address"],grn_table_group_result:[114,2,1,"c.grn_table_group_result"],grn_expr_close:[39,1,1,"c.grn_expr_close"],grn_obj_path:[80,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[17,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[84,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[111,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[80,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[114,1,1,"c.grn_t able_lcp _search"],grn_table_create:[114,1,1,"c.grn_table_create"],grn_ctx_get_all_tables:[16,1,1,"c.grn_ctx_get_all_tables"],grn_encoding_to_string:[124,1,1,"c.grn_encoding_to_string"],"--daemon":[65,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[80,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[114,1,1,"c.grn_table_columns"],grn_ctx_set_output_type:[16,1,1,"c.grn_ctx_set_output_type"],"--pid-path":[98,0,1,"cmdoption--pid-path"],"--encoding":[98,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[16,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[17,2,1,"c.grn_cache"],grn_table_delete_by_id:[114,1,1,"c.grn_table_delete_by_id"],grn_content_type:[107,2,1,"c.grn_content_type"],grn_plugin_mutex:[41,2,1,"c.grn_plugin_mutex"],grn_expr_get_keywords:[39,1,1,"c.grn_expr_get_keywords"],grn_ii_buffer:[87,2,1,"c.grn_ii_buffer"],"--host":[170,0,1,"cmdoption--host"],grn_ctx_get_output_type:[16,1,1,"c.grn_ctx_get_output_type"],grn_obj_set_finalizer:[54,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[1 7,1,1,"c .grn_cache_current_set"],grn_obj_user_data:[119,1,1,"c.grn_obj_user_data"],grn_obj_lock:[80,1,1,"c.grn_obj_lock"],grn_obj_name:[80,1,1,"c.grn_obj_name"],"--log-path":[65,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[122,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"-e":[98,0,1,"cmdoption-e"],GRN_OBJ_COMPARE:[80,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[39,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[41,1,1,"c.grn_plugin_mutex_lock"],grn_obj_clear_lock:[80,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[64,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[39,1,1,"c.grn_expr_alloc"],grn_expr_compile:[39,1,1,"c.grn_expr_compile"],grn_user_data:[119,2,1,"c.grn_user_data"],grn_obj_get_range:[80,1,1,"c.grn_obj_get_range"],grn_table_get:[114,1,1,"c.grn_table_get"],grn_ctx_fin:[16,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[111,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[98,0,1,"cmdoption--max-threads"],grn_ctx_init:[16,1,1,"c.grn_ctx_init"],grn_ii _buffer_ close:[87,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[80,3,1,"c.GRN_OBJ_DECR"],grn_table_sort_key:[114,2,1,"c.grn_table_sort_key"],grn_obj_rename:[80,1,1,"c.grn_obj_rename"],grn_table_group_flags:[114,2,1,"c.grn_table_group_flags"],grn_obj_check:[80,1,1,"c.grn_obj_check"],grn_table_at:[114,1,1,"c.grn_table_at"],grn_column_name:[122,1,1,"c.grn_column_name"],grn_table_difference:[114,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[132,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[41,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[17,1,1,"c.grn_cache_close"],grn_obj_close:[80,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[122,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[114,1,1,"c.grn_table_truncate"],grn_obj_get_value:[80,1,1,"c.grn_obj_get_value"],grn_cache_open:[17,1,1,"c.grn_cache_open"],"--server-id":[98,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[94,1,1,"c.grn_obj_delete_hook"],"-n":[98,0,1,"cmdoption-n"],"--port":[132,0,1,"cmdoption--port"],grn_ii: [87,2,1, "c.grn_ii"],"--ftp":[170,0,1,"cmdoption--ftp"],grn_obj_is_locked:[80,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[39,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[41,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[65,0,1,"cmdoption--log-level"],GRN_OBJ_SET_MASK:[80,3,1,"c.GRN_OBJ_SET_MASK"],grn_fin:[5,1,1,"c.grn_fin"],GRN_COLUMN_NAME_NSUBRECS:[122,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_unlock:[41,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[117,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[41,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[42,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[57,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[39,1,1,"c.grn_expr_append_const_str"],grn_table_rename:[114,1,1,"c.grn_table_rename"],script:[170,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[41,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[117,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[39,1,1,"c.grn_expr_get _var_by_ offset"],GRN_PLUGIN_MALLOC:[41,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[94,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[41,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[121,1,1,"c.grn_index_cursor_open"],grn_proc_func:[54,2,1,"c.grn_proc_func"],grn_db_create_optarg:[84,2,1,"c.grn_db_create_optarg"],grn_column_table:[122,1,1,"c.grn_column_table"],grn_table_add:[114,1,1,"c.grn_table_add"],grn_obj_unlock:[80,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[17,1,1,"c.grn_cache_set_max_n_entries"],grn_init:[5,1,1,"c.grn_init"],grn_proc_type:[54,2,1,"c.grn_proc_type"],grn_proc_get_info:[54,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[80,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[16,1,1,"c.grn_ctx_close"],"--query-log-rotate-threshold-size":[98,0,1,"cmdoption--query-log-rotate-threshold-size"],GRN_COLUMN_NAME_KEY:[122,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[122,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[122,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table _cursor_ get_key:[64,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[80,1,1,"c.grn_obj_get_values"],grn_column_rename:[122,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[80,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[42,1,1,"c.grn_obj_get_info"],grn_ctx_db:[16,1,1,"c.grn_ctx_db"],"--protocol":[170,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[41,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[64,2,1,"c.grn_table_cursor"],grn_table_cursor_get_value:[64,1,1,"c.grn_table_cursor_get_value"],grn_ctx_get:[16,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[25,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[84,1,1,"c.grn_db_open"],grn_column_index:[122,1,1,"c.grn_column_index"],"--n-threads":[132,0,1,"cmdoption--n-threads"],grn_ctx:[16,2,1,"c.grn_ctx"],"--help":[98,0,1,"cmdoption--help"],"--groonga":[170,0,1,"cmdoption--groonga"],grn_table_setoperation:[114,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[122,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[80,3,1,"c.GRN_ OBJ_SET" ],"--document-root":[98,0,1,"cmdoption--document-root"],grn_info_type:[42,2,1,"c.grn_info_type"],grn_column_truncate:[122,1,1,"c.grn_column_truncate"],grn_obj:[80,2,1,"c.grn_obj"],grn_obj_remove:[80,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[41,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[80,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[39,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[39,1,1,"c.grn_expr_syntax_escape_query"],grn_geo_select_in_rectangle:[111,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[19,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[87,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[57,1,1,"c.grn_obj_search"],"--send-endpoint":[65,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[114,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[94,2,1,"c.grn_hook_entry"],grn_expr_append_op:[39,1,1,"c.grn_expr_append_op"],grn_geo_point:[111,2,1,"c.grn_geo_point"],grn_table_cursor_table:[64,1,1,"c.grn_table_cursor_table"],grn_ index_cu rsor_next:[121,1,1,"c.grn_index_cursor_next"],grn_table_delete:[114,1,1,"c.grn_table_delete"],dest:[98,0,1,"cmdoption-arg-dest"],grn_ctx_open:[16,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[41,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[122,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[80,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[16,1,1,"c.grn_ctx_get_command_version"],"--default-match-escalation-threshold":[98,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[64,1,1,"c.grn_table_cursor_delete"],grn_type_create:[183,1,1,"c.grn_type_create"],grn_obj_path_by_id:[80,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[41,1,1,"c.grn_plugin_command_create"],grn_db_recover:[84,1,1,"c.grn_db_recover"],grn_builtin_type:[183,2,1,"c.grn_builtin_type"],grn_table_get_key:[114,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[80,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[25,1,1,"c.grn_set_default_match_esc alation_ threshold"],grn_cache_current_get:[17,1,1,"c.grn_cache_current_get"],grn_expr_create:[39,1,1,"c.grn_expr_create"],grn_get_default_command_version:[117,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[39,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[124,1,1,"c.grn_encoding_parse"],grn_column_create:[122,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[16,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[114,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[94,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[124,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[117,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[41,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_ii_buffer_open:[87,1,1,"c.grn_ii_buffer_open"],"--receive-endpoint":[65,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[122,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[114,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[41,1 ,1,"c.GR N_PLUGIN_FIN"],command:[98,0,1,"cmdoption-arg-command"],GRN_PLUGIN_REGISTER:[41,1,1,"c.GRN_PLUGIN_REGISTER"],grn_plugin_mutex_close:[41,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[84,1,1,"c.grn_db_touch"],grn_table_update:[114,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[84,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[84,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"6\u30ea\u30ea\u30fc\u30b9":[1,156],code:2,senna:43,"\u6539\u826f":[28,1,156,148],"\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u751f\u6210\u3057\u305f\u3044":153,queri:[109,92,133,116,9,150,30,185],global:19,localstatedir:192,"4\u30ea\u30ea\u30fc\u30b9":156,prefix:[70,152,144,192,179,55,185],"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":153,follow:188,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":153,cache_limit:118,va lue_typ: 66,depend:[192,20],grn_type:183,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":153,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":153,drilldown_offset:109,send:[103,120],column_cr:74,column_or_valu:97,table_list:106,downtim:55,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[170,40],query_str:116,"\u524d\u63d0\u6761\u4ef6":153,grn_command_vers:117,sourc:[167,130,14,154,102,192,90],string:[13,47,91,134,152],groonga:[56,142,43,153,190,132,133,135,98,99,9,176,37,89,65,170,120],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":153,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":153,drilldown_calc_target:109,facebook:26,"\u30b5\u30f3\u30d7\u30eb":[182,170],greater_equ:70,brows:9,administr:[9,103],sub_filt:186,gnu:154,list:[0,2,26],scalar:151,vector:[13,86],drilldown_output_column:109,refer:[41,42,44,94,87,107,54,57,5,86,13,117,16,17,114,19,25,119,45,121,122,183,124,64,111,80,84,39],"\u30aa\u30d7\u 30b7\u30 e7\u30f3":[182,170],dump_index:159,direct:9,sign:152,range_filt:77,aggreg:133,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":145,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":145,index:[67,45,3,133,115,139,79,181,66],what:85,xor:152,learner:65,"files\u306e\u5b9f\u884c":153,delet:173,version:55,"new":[78,43,120],grn_info:42,full:[3,185,133,100,75,79],hash:188,gener:[120,20],learn:[132,65,172,18,49,179],lock_clear:137,bodi:136,let:188,solari:24,ubuntu:14,path:[69,192,55],target_valu:101,valu:[91,143,6,96,47,48,146,50,147,110,104,10,149,106,108,109,76,155,194,59,116,60,157,159,63,169,161,66,22,69,27,23,166,163,73,74,127,173,118,97,77,128,177,83,8,186,132,188,134,33,137,101,37,38,141],"\u95a2\u4fc2\u5f0f":70,table_hash_kei:95,search:[45,109,3,92,93,133,86,49,75,18,188,144,152,79,100,179,185],"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":153,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":153,shift:152,blogroonga:153,memcach:52,"\u5909\u66f4\u70b9\u306e\u30 7e\u3068 \u3081":153,chang:43,narrow:75,"\u9759\u7684\u89e3\u6790":180,"windows\u5411\u3051\u306e\u5834\u5408":153,match_column:[116,79,109],repositori:[105,120],appli:86,modul:9,phrase:185,"debian\u7cfb\u306e\u5834\u5408":153,api:[88,31],grn_db:84,request_cancel:104,instal:[178,192,102,138,20],total:109,define_selector:157,select:[109,166],"\u6982\u8981":11,httpd:[132,142,9,99,65],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":135,from:[167,130,166,14,154,102,192,65,90],zip:102,commun:26,query_expand:[116,109],regist:10,upgrad:55,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":71,column_remov:73,call:152,"\u30c6\u30b9\u30c8\u65b9\u6cd5":180,key_typ:66,scope:186,query_expans:109,"\u30d6\u30ed\u30b0":153,sort:[75,3,131],token_filt:[91,66],relat:[79,109,9,65],benchmark:170,flag:[47,91,134,175,66],grn_content_typ:107,tokenbigramignoreblanksplitsymbolalpha:85,cach:[109,9],sphere:76,prepar :92,work :[120,18,179,49],tag:[45,188,66],can:46,clearlock:108,"\u7279\u6b8a\u547d\u4ee4":170,control:152,grn_column:122,geo_in_rectangl:35,process:[140,150],lock:133,topic:15,"\u4f7f\u3044\u65b9":170,liter:152,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":125,groonga_cache_limit:9,grndb:62,onlin:115,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":153,unsign:152,filter:[143,165,23,109,166],multipl:[79,152,131],secur:[103,152],"\u540d\u524d":[182,68,184,112,170,35,61,171],divis:152,how:[0,86,36,175,129,49,115,18,103,168,89,15,179,120],open_tagn:163,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":180,simpl:[109,166],updat:[133,120,179,153,20],message_pack_install_prefix:192,tokenregexp:85,"\u7406\u7531":125,max:[143,166,63,118,97,140,23],clone:120,geoloc:[93,188],mac:90,offlin:115,date:13,log_level:6,data:[185,13,188,46,49,9,179,152,65,66],table_dat_kei:95,alloc:168,"\u66f8\u5f0f":[182,68,184,112,170,35,171],not_equ:70 ,tokende limit:85,explicit:185,issu:[0,103],callback:70,combin:185,normalizernfkc51:193,freebsd:140,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":153,table_token:47,order:143,origin:152,adjust:109,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":125,help:192,softwar:20,hypertext:103,lz4:192,"3\u30ea\u30ea\u30fc\u30b9":156,gqtp:[142,175,129],paramet:[91,143,6,96,98,47,48,146,8,147,110,104,149,106,128,108,109,76,155,59,116,60,157,159,63,194,161,65,66,69,50,23,166,163,73,74,127,173,118,97,79,83,186,132,134,137,101,140,38,141],"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":153,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":153,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":153,group:[181,185,152],thank:[126,7,78,28,113,81],grn_table_select:70,fix:[43,126,7,78,28,81],shard_k ei:[143, 23,166,63],"\u5b9f\u9a13\u7684":28,platform:192,window:102,requir:[109,76,23,166,132,96,134,47,116,60,91,110,104,63,143,128],persist:95,tsv:[136,178],mail:[0,26],vector_s:149,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":180,"\u4f8b\u3048\u3070redmin":125,grn_hook:94,html_untag:110,"return":[91,2,143,6,96,47,48,146,101,147,110,104,10,149,106,108,109,76,155,194,59,116,60,157,159,63,169,161,66,22,69,50,23,166,163,73,74,127,173,118,27,97,77,128,177,83,186,132,134,33,137,8,37,38,141],greater:[70,185,152],worker_process:9,rectangl:76,"8\u30ea\u30ea\u30fc\u30b9":156,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":180,"\u8fd4\u5024":[184,35,112,171,68],now:184,highlight_ful:163,introduct:[172,20],choic:181,term:152,name:[46,190,60,37,79,66],edit:120,revers:[45,9],grn_ctx:16,authent:55,kern:140,micro:188,token:[133,165,91,85],exampl:[42,5,94,87,57,54,111,117,16,17,114,183,25,119,121,122,168,124,64,175,80,82,84,190,39],"groonga\u958b\u767a\u8005\u5411\ u3051\u6 0c5\u5831":174,each:79,ruby_load:69,"benchmark\u5b9f\u884c\u7d50\u679c":170,grn_encod:124,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":180,domain:131,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":11,weight:[79,86],"0\u30ea\u30ea\u30fc\u30b9":[28,156,148],normalizerauto:193,proxy_cach:9,todo:[116,33],"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":125,develop:164,your:120,db_api:70,query_flag:109,"release\u306e\u5b9f\u884c":153,normalizer_nam:163,quantifi:181,correct:[172,18],red:153,nofil:140,"1\u30ea\u30ea\u30fc\u30b9":[28,156],shut:9,proxi:9,advanc:109,free:133,grn_user_data:119,substitution_t:116,standalon:98,releas:[126,7,78,28,113,81],database_path:[132,65],grn_match_escal:25,launch:132,success:136,dump_schema:159,recov:62,synopsti:190,assign:[36,185,152],oper:[189,3,152],rand:68,rang:[3,66],plugin_regist:22,groonga_log_path:9,suffix:[152,70,185,144],"7\u30ea\u30ea\u30fc\u30b9":[1,156],"\u8aac\u66 0e":[182 ,68,184,112,170,35,61,171],arrai:152,number:[140,109,192],edit_dist:112,groonga_database_auto_cr:9,modulo:152,open:140,primari:[46,144],size:175,differ:166,grn_cach:17,script:[146,152],"\u4fee\u6b63":[28,1,156,148],messag:192,expand:30,termin:175,store:[133,66],option:[47,91,23,166,50,132,134,98,190,116,76,159,63,143,65],relationship:45,travi:82,tool:[192,9,103],specifi:[46,76,3],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":11,tokenfilterstem:165,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":70,than:[185,152],tokenbigram:85,keyword:188,remot:103,"grntest\u306e\u6e96\u5099":153,grn_table_cursor:64,charact:181,column_list:96,grn_expr:[70,39,160],latitud:[13,133],favorit:188,ruby_ev:146,plugin_unregist:177,tabl:[67,96,109,3,95,46,47,60,159,188,79,65,66],"null":152,logical_table_remov:63,packag:[192,142,14],bitwis:152,drilldown_limit:109,built:[193,85,12],min:[143,97,23,166,63],"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":70,also:[2,6,95,96,69,48,4 7,91,104 ,10,146,108,109,155,194,59,116,157,160,169,66,22,165,27,123,163,186,173,175,77,177,178,36,134,33,190,136,8,193,118],builtin:[46,98],without:55,build:[167,130,14,154,102,192,90],highlight_html:48,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":180,mroonga:133,normal:[86,91,134,193,66],"\u30d0\u30fc\u30b8\u30e7\u30f30":1,"\u30d0\u30fc\u30b8\u30e7\u30f31":[156,148],object:152,oracl:24,"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":125,regular:[181,185,152],default_token:66,"class":181,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":153,groonga_log_level:9,geoindex:188,table_pat_kei:95,request:[132,36,9,120],"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":70,latest:153,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":145,"\u539f\u56e0":71,lexicon:[100,3,66],keywordn:163,text:[3,185,133,100,75,79],grn_index_cursor:121,syntax:[91,143,6,96,98,47,48,146,50,147,104,10,149,106,108,109,76,152,155,194,59,116,60,157,62,63,169,161,181,6 6,22,69, 27,23,159,166,163,73,74,127,75,173,118,97,77,128,177,185,83,8,186,134,33,137,101,110,38,141],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":153,threshold:192,xml:136,access:[103,55],explicitli:76,locat:[133,75,76,178,45],just:86,ellipsoid:76,grnslap:182,configur:[19,9,20,192,55,82],solut:168,max_bord:[143,97,23,166,63],use_html_escap:163,"benchmark\u547d\u4ee4":170,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":71,contribut:[89,15],variou:[13,75],get:[132,3],express:[181,185,152],stop:142,cannot:168,wheezi:154,report:0,geo:[133,152,45],restart:142,target:149,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":11,enabl:20,query_typ:175,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":125,patch:120,"default":[192,11],tokenfilterstopword:165,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":194,contain:70,table_cr:66,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30 c8\u3059 \u308b":180,summari:[2,12,6,91,9,10,76,5,194,16,17,19,87,22,23,25,33,8,37,38,85,41,42,147,47,48,27,54,107,59,60,62,63,64,65,66,69,50,73,74,77,80,83,84,129,94,95,96,98,101,104,106,57,108,109,110,111,86,117,116,114,119,121,122,123,163,127,128,132,36,134,136,137,140,141,143,146,149,151,155,157,159,161,124,165,166,183,169,173,118,97,177,178,181,186,187,139,193],"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":153,set:[132,9],max_map_count:140,dump:159,geo_dist:76,see:[2,6,95,96,69,48,47,91,104,10,146,108,109,155,194,59,116,157,160,169,66,22,165,27,123,163,186,173,175,77,177,178,36,134,33,190,136,8,193,118],result:[3,131],arg:70,scorer_tf_idf:123,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":180,statu:[83,175,190],databas:[3,55],column_renam:60,label:109,less_equ:70,score:109,between:97,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":153,kei:[46,109,144],numer:13,javascript:75,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u3 0f3\u8ff d\u52a0":153,style:109,"\u5bfe\u7b56\u65b9\u6cd52":71,"\u5bfe\u7b56\u65b9\u6cd51":71,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":170,homebrew:90,dump_plugin:159,addit:[193,152,100],instant:133,plugin:[41,192],geopoint:188,equal:[70,185,152],against:79,tutori:158,logic:[185,152],improv:[43,126,7,78,28,113,81],"po\u306e\u5b9f\u884c":153,point2:76,load:[59,188,3,9,86],among:79,defrag:38,point:152,overview:[13,133,5],period:43,header:[136,175],close_tagn:163,shutdown:141,linux:[154,140],grn_proc:54,tokenbigramignoreblanksplitsymbol:85,quit:161,"\u5236\u9650\u4e8b\u9805":170,target_nam:[137,128,50],invert:133,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":180,json:[59,136],basic:[3,152],tokenmecab:85,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":180,log_put:8,drilldown_calc_typ:109,resolut:45,"2\u30ea\u30ea\u30fc\u30b9":156,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":153,logical_r ange_fil t:143,i18n:120,in_valu:101,"case":136,drildown:131,multi:55,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":153,zlib:192,cast:58,"\u691c\u7d22":145,error:[136,168],anchor:181,pack:192,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":180,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":153,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":153,"\u5f15\u6570":[182,68,112,170,35,171],filter_str:186,archiv:14,cento:130,synopsi:[132,37,9,65],"version\u30d1\u30e9\u30e1\u30fc\u30bf":11,fedora:167,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":153,"\u691c\u7d22\u306e\u6319\u52d5":145,perform:[9,55],suggest:[132,155,190,49,172,51,65],make:[192,153],"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":180,binari:52,html:[110,120,20],output_column:[109,143],document:[56,15,20],messagepack:136,complet:[172,179],http:[14 2,4,103, 37,55,195],expans:92,nest:79,temporari:95,user:188,engin:133,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":135,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":153,tune:140,desctipion:190,sortbi:109,overcommit_memori:140,person:14,client:[191,98,175],command:[11,3,4,132,98,32,103,62,37,55],gzip:55,left:152,comment:188,construct:115,protocol:[52,103,175],execut:[53,98],less:[70,185,152],logical_select:166,min_bord:[143,97,23,166,63],"5\u30ea\u30ea\u30fc\u30b9":156,languag:120,approximate_typ:76,hashtag:188,point1:76,mmap:168,"twitter\u7de8":125,patricia:144,blog:188,add:120,macport:90,geo_in_circl:171,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":153,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":153,tokenunigram:85,match:[192,185,152],format:[136,109,3,59,150,178],read:[133,179],tokendelimitnul:85,nginx:9,"\u95be\u5024\u3092\u3042\u3052\u308b":71,characterist:[133,95],recurs:50,daemon:[98,175],lik e:75,spe cif:[188,79,9,21],maxfileperproc:140,manual:44,integ:152,server:[142,133,98,34,103,37,175],logical_t:[143,23,166,63],"boolean":[13,152],cascad:173,output:[136,109,3,4,120],snippet_html:33,normalizer_list:27,old:78,twitter:26,log_reopen:194,sampl:[185,152],"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":180,librari:[133,192],tokenbigramsplitsymbolalphadigit:85,confirm:120,avoid:168,per:140,tracker:0,exit:190,condit:[75,109,185],scorer_tf_at_most:187,mode:[47,91,98,70],core:55,who:188,run:[175,129,103,20],tokenizs:85,compress:55,view:3,usag:[91,143,4,12,6,96,98,47,48,146,101,147,9,104,10,149,106,108,109,76,50,86,155,194,59,116,60,157,62,63,169,161,65,66,22,69,27,23,159,166,123,163,73,151,74,127,173,118,97,77,128,177,178,181,83,186,132,139,110,134,33,137,8,140,38,141],tokenizer_list:169,tokenbigramsplitsymbol:85,"\u30d3\u30eb\u30c9\u6642\u306etip":153,tokenbigramsplitsymbolalpha:85,offset:[109,143],post:[188,9,55],subtract:152,comparison:[152,55],about:[46,100],column:[67,151, 76,3,185 ,131,86,133,163,48,61,139,72,79],memori:[140,168],page:109,truncat:128,"x\u306e\u304a\u77e5\u3089\u305b":[1,156,148],tokentrigram:85,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":180,ppa:14,match_escalation_threshold:109,grn_ii:87,"\u4f8b":[68,171,112,71,35,184],"float":152,encod:192,dataset:190,down:[75,9],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":145,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":70,storag:133,groonga_query_log_path:9,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":46,log:[150,192,65,55],transfer:103,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":170,support:93,"\u5909\u66f4":156,submit:0,custom:55,avail:[165,9],start:142,arithmet:152,"\u306e\u66f4\u65b0":153,sharabl:133,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":11,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":153,"function":[162,152],tokenbigramignoreblanksplitsymbolalphadigit:85,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u305 1\u306e\ u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":153,"\u691c\u7d22\u4f8b4":70,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":70,"\u691c\u7d22\u4f8b2":70,"\u691c\u7d22\u4f8b1":70,translat:120,drilldown_sortbi:109,line:[132,98,4],bug:0,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":153,pull:120,dump_record:159,new_nam:60,type:[13,188,46],record:[95,109,3],limit:[67,109,131,86,95,46,178],inform:[75,100],similar:[18,152,70],grn_tabl:114,"\u611f\u8b1d":[28,1,156,148],featur:93,bigram:188,creat:[3,86,188,190,79,66],trie:144,flow:120,grn_obj:80,groonga_databas:9,"homebrew\u306e\u66f4\u65b0":153,jessi:154,right:152,file:[98,190,140,178,65,55,120],check:[127,62],"\u5bfe\u5fdc":125,tokenbigramignoreblank:85,table_remov:147,extract:[152,49],grn_search:57,other:[192,181],logical_count:23,grn_geo:111,"hat\u7cfb\u306e\u5834\u5408":153,io_flush:50,scorer:[75,109,12],cooccurr:[18,179,49],drilldown:[109,131],debian:154,longitud:[13,133],groonga_base_path :9,escal :192,"\u691c\u7d22\u4f8b3":70,descript:46,pseudo:61,cpu:55,munin:192,queryexpandertsv:178,time:[13,188,152],escap:[185,181],"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":153,table_no_kei:95}}) \ No newline at end of file Modified: docs/sources/reference/commands/logical_select.txt (+287 -23) =================================================================== --- docs/sources/reference/commands/logical_select.txt 2015-07-07 00:02:39 +0900 (3a5d3d0) +++ docs/sources/reference/commands/logical_select.txt 2015-07-08 23:05:44 +0900 (2c44a62) @@ -6,7 +6,7 @@ .. database: logical_select ``logical_select`` -======================== +================== Summary ------- @@ -17,26 +17,194 @@ Summary .. versionadded:: 5.0.5 -TODO +``logical_select`` is a sharding version of +:doc:`select`. ``logical_select`` searches records from multiple +tables and outputs them. + +You need to :doc:`plugin_register` ``sharding`` plugin because +``logical_select`` is included in ``sharding`` plugin. Syntax ------ -``logical_select`` command has seven parameters. +``logical_select`` has many parameters. -The required parameters are ``logical_table`` and ``shard_key``:: +The required parameters are ``logical_table`` and ``shard_key``. Other +parameters are optional:: logical_select logical_table shard_key - [min] - [min_border] - [max] - [max_border] - [filter] + [min=null] + [min_border="include"] + [max=null] + [max_border="include"] + [filter=null] + [sortby=null] + [output_columns="_key, *"] + [offset=0] + [limit=10] + [drilldown=null] + [drilldown_sortby=null] + [drilldown_output_columns="_key, _nsubrecs"] + [drilldown_offset=0] + [drilldown_limit=10] + +``logical_select`` has the following named parameters for advanced +drilldown: + + * ``drilldown[${LABEL}].keys=null`` + * ``drilldown[${LABEL}].sortby=null`` + * ``drilldown[${LABEL}].output_columns="_key, _nsubrecs"`` + * ``drilldown[${LABEL}].offset=0`` + * ``drilldown[${LABEL}].limit=10`` + * ``drilldown[${LABEL}].calc_types=NONE`` + * ``drilldown[${LABEL}].calc_target=null`` + +You can use one or more alphabets, digits, ``_`` and ``.`` for +``${LABEL}``. For example, ``parent.sub1`` is a valid ``${LABEL}``. + +Parameters that have the same ``${LABEL}`` are grouped. + +For example, the following parameters specify one drilldown: + + * ``--drilldown[label].keys column`` + * ``--drilldown[label].sortby -_nsubrecs`` + +The following parameters specify two drilldowns: + + * ``--drilldown[label1].keys column1`` + * ``--drilldown[label1].sortby -_nsubrecs`` + * ``--drilldown[label2].keys column2`` + * ``--drilldown[label2].sortby _key`` + +Differences from ``select`` +--------------------------- + +Most of ``logical_select`` features can be used like corresponding +:doc:`select` features. For example, parameter name is same, output +format is same and so on. + +But there are some differences from :doc:`select`: + + * ``logical_table`` and ``shard_key`` parameters are required + instead of ``table`` parameter. + * The default ``output_columns`` value doesn't include + ``_id``. Because ``_id`` is meaningless when multiple shards are + used. ``_id`` may be duplicated because ``_id`` is managed in each + shard not in all shards. + * ``sortby``, ``drilldown_sortby`` and + ``drilldown[${LABEL}].sortby`` aren't supported when multiple + shards are used. (Only one shard is used, they are supported.) + * ``match_columns`` and ``query`` aren't supported yet. + * ``cache`` isn't supported yet. + * ``match_escalation_threshold`` isn't supported yet. + * ``query_flags`` isn't supported yet. + * ``query_expander`` isn't supported yet. + * ``adjuster`` isn't supported yet. + * ``drilldown_calc_types`` and ``drilldown_calc_target`` aren't + supported yet. Usage ----- +Let's learn about ``logical_select`` usage with examples. This section +shows many popular usages. + +You need to register ``sharding`` plugin because ``logical_select`` is +included in ``sharding`` plugin. + +.. groonga-command +.. include:: ../../example/reference/commands/logical_select/usage_plugin_register.log +.. plugin_register sharding + + +Here are a schema definition and sample data to show usage. + +.. groonga-command +.. include:: ../../example/reference/commands/logical_select/usage_setup.log +.. table_create Entries_20150708 TABLE_HASH_KEY ShortText +.. column_create Entries_20150708 created_at COLUMN_SCALAR Time +.. column_create Entries_20150708 content COLUMN_SCALAR Text +.. column_create Entries_20150708 n_likes COLUMN_SCALAR UInt32 +.. column_create Entries_20150708 tag COLUMN_SCALAR ShortText +.. +.. table_create Entries_20150709 TABLE_HASH_KEY ShortText +.. column_create Entries_20150709 created_at COLUMN_SCALAR Time +.. column_create Entries_20150709 content COLUMN_SCALAR Text +.. column_create Entries_20150709 n_likes COLUMN_SCALAR UInt32 +.. column_create Entries_20150709 tag COLUMN_SCALAR ShortText +.. +.. table_create Terms TABLE_PAT_KEY ShortText \ +.. --default_tokenizer TokenBigram \ +.. --normalizer NormalizerAuto +.. column_create Terms entries_key_index_20150708 \ +.. COLUMN_INDEX|WITH_POSITION Entries_20150708 _key +.. column_create Terms entries_content_index_20150708 \ +.. COLUMN_INDEX|WITH_POSITION Entries_20150708 content +.. column_create Terms entries_key_index_20150709 \ +.. COLUMN_INDEX|WITH_POSITION Entries_20150709 _key +.. column_create Terms entries_content_index_20150709 \ +.. COLUMN_INDEX|WITH_POSITION Entries_20150709 content +.. +.. load --table Entries_20150708 +.. [ +.. {"_key": "The first post!", +.. "created_at": "2015/07/08 00:00:00", +.. "content": "Welcome! This is my first post!", +.. "n_likes": 5, +.. "tag": "Hello"}, +.. {"_key": "Groonga", +.. "created_at": "2015/07/08 01:00:00", +.. "content": "I started to use Groonga. It's very fast!", +.. "n_likes": 10, +.. "tag": "Groonga"}, +.. {"_key": "Mroonga", +.. "created_at": "2015/07/08 02:00:00", +.. "content": "I also started to use Mroonga. It's also very fast! Really fast!", +.. "n_likes": 15, +.. "tag": "Groonga"} +.. ] +.. +.. load --table Entries_20150709 +.. [ +.. {"_key": "Good-bye Senna", +.. "created_at": "2015/07/09 00:00:00", +.. "content": "I migrated all Senna system!", +.. "n_likes": 3, +.. "tag": "Senna"}, +.. {"_key": "Good-bye Tritonn", +.. "created_at": "2015/07/09 01:00:00", +.. "content": "I also migrated all Tritonn system!", +.. "n_likes": 3, +.. "tag": "Senna"} +.. ] + +There are two tables, ``Entries_20150708`` and ``Entries_20150709``, +for blog entries. + +.. note:: + + You need to use ``${LOGICAL_TABLE_NAME}_${YYYYMMDD}`` naming rule + for table names. In this example, ``LOGICAL_TABLE_NAME`` is + ``Entries`` and ``YYYYMMDD`` is ``20150708`` or ``20150709``. + +An entry has title, created time, content, the number of likes for the +entry and tag. Title is key of ``Entries_YYYYMMDD``. Created time is +value of ``Entries_YYYYMMDD.created_at`` column. Content is value of +``Entries_YYYYMMDD.content`` column. The number of likes is value of +``Entries_YYYYMMDD.n_likes`` column. Tag is value of +``Entries_YYYYMMDD.tag`` column. + +``Entries_YYYYMMDD._key`` column and ``Entries_YYYYMMDD.content`` +column are indexed using ``TokenBigram`` tokenizer. So both +``Entries_YYYYMMDD._key`` and ``Entries_YYYYMMDD.content`` are +fulltext search ready. + +OK. The schema and data for examples are ready. + +Simple usage +^^^^^^^^^^^^ + TODO Parameters @@ -49,16 +217,41 @@ Required parameter There are required parameters, ``logical_table`` and ``shard_key``. +.. _logical-select-logical-table: + ``logical_table`` """"""""""""""""" -Specifies logical table name. It means table name without "_YYYYMMDD" postfix. -If you use actual table such as "Logs_20150203", "Logs_20150203" and so on, logical table name is "Logs". +Specifies logical table name. It means table name without +``_YYYYMMDD`` postfix. If you use actual table such as +``Entries_20150708``, ``Entries_20150709`` and so on, logical table +name is ``Entries``. + +You can show 10 records by specifying ``logical_table`` and +``shard_key`` parameters. They are required parameters. + +.. groonga-command +.. include:: ../../example/reference/commands/logical_select/logical_table_existent.log +.. logical_select --logical_table Entries --shard_key created_at + +If nonexistent table is specified, an error is returned. + +.. groonga-command +.. include:: ../../example/reference/commands/logical_select/logical_table_nonexistent.log +.. logical_select --logical_table Nonexistent --shard_key created_at + +.. _logical-select-shard-key: ``shard_key`` """"""""""""" -Specifies column name which is treated as shared key in each parted table. +Specifies column name which is treated as shared key. Shard key is a +column that stores data that is used for distributing records to +suitable shards. + +Shard key must be ``Time`` type for now. + +See :ref:`logical-select-logical-table` how to specify ``shard_key``. Optional parameters ^^^^^^^^^^^^^^^^^^^ @@ -68,24 +261,98 @@ There are optional parameters. ``min`` """"""" -Specifies the min value of ``shard_key`` +Specifies the minimum value of ``shard_key`` column. If shard doesn't +have any matched records, the shard isn't searched. + +For example, ``min`` is ``"2015/07/09 00:00:00"``, ``Entry_20150708`` +isn't searched. Because ``Entry_20150708`` has only records for +``""2015/07/08"``. + +The following example only uses ``Entry_20150709`` +table. ``Entry_20150708`` isn't used. + +.. groonga-command +.. include:: ../../example/reference/commands/logical_select/min.log +.. logical_select \ +.. --logical_table Entries \ +.. --shard_key created_at \ +.. --min "2015/07/09 00:00:00" ``min_border`` """""""""""""" -Specifies whether the min value of borderline must be include or not. -Specify ``include`` or ``exclude`` as the value of this parameter. +Specifies whether the minimum value is include or not. Here is +available values. + +.. list-table:: + :header-rows: 1 + + * - Value + - Description + * - ``include`` + - Includes ``min`` value. This is the default. + * - ``exclude`` + - Doesn't include ``min`` value. + +Here is an example for ``exclude``. The result doesn't include the +``"Good-bye Senna"`` record because its ``created_at`` value is +``"2015/07/09 00:00:00"``. + +.. groonga-command +.. include:: ../../example/reference/commands/logical_select/min_border.log +.. logical_select \ +.. --logical_table Entries \ +.. --shard_key created_at \ +.. --min "2015/07/09 00:00:00" \ +.. --min_border "exclude" ``max`` """"""" -Specifies the max value of ``shard_key``. +Specifies the maximum value of ``shard_key`` column. If shard doesn't +have any matched records, the shard isn't searched. + +For example, ``max`` is ``"2015/07/08 23:59:59"``, ``Entry_20150709`` +isn't searched. Because ``Entry_20150709`` has only records for +``""2015/07/09"``. + +The following example only uses ``Entry_20150708`` +table. ``Entry_20150709`` isn't used. + +.. groonga-command +.. include:: ../../example/reference/commands/logical_select/max.log +.. logical_select \ +.. --logical_table Entries \ +.. --shard_key created_at \ +.. --max "2015/07/08 23:59:59" ``max_border`` """""""""""""" -Specifies whether the max value of borderline must be include or not. -Specify ``include`` or ``exclude`` as the value of this parameter. +Specifies whether the maximum value is include or not. Here is +available values. + +.. list-table:: + :header-rows: 1 + + * - Value + - Description + * - ``include`` + - Includes ``max`` value. This is the default. + * - ``exclude`` + - Doesn't include ``max`` value. + +Here is an example for ``exclude``. The result doesn't include the +``"Good-bye Senna"`` record because its ``created_at`` value is +``"2015/07/09 00:00:00"``. + +.. groonga-command +.. include:: ../../example/reference/commands/logical_select/max_border.log +.. logical_select \ +.. --logical_table Entries \ +.. --shard_key created_at \ +.. --max "2015/07/09 00:00:00" \ +.. --max_border "exclude" ``filter`` """""""""" @@ -93,8 +360,5 @@ Specify ``include`` or ``exclude`` as the value of this parameter. Return value ------------ -TODO: add more description for RESULTS - -:: - - [HEADER, RESULTS] +The return value format of ``logical_select`` is compatible with +:doc:`select`. See :ref:`select-return-value` for details. Modified: docs/sources/reference/commands/select.txt (+182 -37) =================================================================== --- docs/sources/reference/commands/select.txt 2015-07-07 00:02:39 +0900 (5899c85) +++ docs/sources/reference/commands/select.txt 2015-07-08 23:05:44 +0900 (ff50b6d) @@ -15,13 +15,13 @@ Summary from a table and then outputs them. ``select`` is the most important command in groonga. You need to -understand ``select`` to use the full power of groonga. +understand ``select`` to use the full power of Groonga. Syntax ------ ``select`` has many parameters. The required parameter is only -``table`` and others are optional:: +``table``. Other parameters are optional:: select table [match_columns=null] @@ -126,6 +126,8 @@ using ``TokenBigram`` tokenizer. So both ``Entries._key`` and OK. The schema and data for examples are ready. +.. _select-simple-usage: + Simple usage ^^^^^^^^^^^^ @@ -840,6 +842,8 @@ number of records is ``5``. The default value is ``0``. +.. _select-limit: + ``limit`` """"""""" @@ -1642,73 +1646,214 @@ the same value. You can change increase score for each record that has the same ``"KEYWORD"``. It is useful to tune search score. See :ref:`weight-vector-column` for details. -返値 ----- +.. _select-return-value: -TODO: write in English and add example. +Return value +------------ + +``select`` returns response with the following format:: + + [ + HEADER, + [ + SEARCH_RESULT, + DRILLDOWN_RESULT_1, + DRILLDOWN_RESULT_2, + ..., + DRILLDOWN_RESULT_N + ] + ] + +If ``select`` fails, error details are in ``HEADER``. + +See :doc:`/reference/command/output_format` for ``HEADER``. + +There are zero or more ``DRILLDOWN_RESULT``. If no ``drilldown`` and +``drilldown[${LABEL}].keys`` are specified, they are omitted like the +following:: -以下のようなjson形式で値が返却されます。 + [ + HEADER, + [ + SEARCH_RESULT + ] + ] + +If ``drilldown`` has two or more keys like ``--drilldown "_key, +column1, column2"``, multiple ``DRILLDOWN_RESULT`` exist:: -:: + [ + HEADER, + [ + SEARCH_RESULT, + DRILLDOWN_RESULT_FOR_KEY, + DRILLDOWN_RESULT_FOR_COLUMN1, + DRILLDOWN_RESULT_FOR_COLUMN2 + ] + ] - [[リターンコード, 処理開始時間, 処理時間], [検索結果, ドリルダウン結果]] +If ``drilldown[${LABEL}].keys`` is used, only one ``DRILLDOWN_RESULT`` +exist:: -``リターンコード`` + [ + HEADER, + [ + SEARCH_RESULT, + DRILLDOWN_RESULT_FOR_LABELED_DRILLDOWN + ] + ] - grn_rcに対応する数値が返されます。0(GRN_SUCCESS)以外の場合は、続いてエラー内容を示す - 文字列が返されます。 +``DRILLDOWN_RESULT`` format is different between ``drilldown`` and +``drilldown[${LABEL}].keys``. It's described later. -``処理開始時間`` +``SEARCH_RESULT`` is the following format:: - 処理を開始した時間について、1970年1月1日0時0分0秒を起点とした秒数を小数で返します。 + [ + [N_HITS], + COLUMNS, + RECORDS + ] -``処理時間`` +See :ref:`select-simple-usage` for concrete example of the format. - 処理にかかった秒数を返します。 +``N_HITS`` is the number of matched records before :ref:`select-limit` +is applied. -``検索結果`` +``COLUMNS`` describes about output columns specified by +:ref:`select-output-columns`. It uses the following format:: - drilldown条件が実行される前の検索結果が以下のように出力されます。:: + [ + [COLUMN_NAME_1, COLUMN_TYPE_1], + [COLUMN_NAME_2, COLUMN_TYPE_2], + ..., + [COLUMN_NAME_N, COLUMN_TYPE_N] + ] - [[ヒット数], [[カラム名1,カラム型1],..], 検索結果1,..] +``COLUMNS`` includes one or more output column information. Each +output column information includes the followings: - ``ヒット数`` + * Column name as string + * Column type as string or ``null`` - 検索条件にヒットしたレコードの数が出力されます。 ``--limit`` オプションで出力件数を制限した場合は出力するレコード数と一致しません。 ``ヒット数`` は ``--limit`` オプションに関係なく常にヒットしたレコードの数になります。 +Column name is extracted from value specified as +:ref:`select-output-columns`. - ``カラム名n`` +Column type is Groonga's type name or ``null``. It doesn't describe +whether the column value is vector or scalar. You need to determine it +by whether real column value is array or not. - output_columnsに指定された条件に従って、対象となるカラム名が出力されます。 +See :doc:`/reference/types` for type details. - ``カラム型n`` +``null`` is used when column value type isn't determined. For example, +function call in :ref:`select-output-columns` such as +``--output_columns "snippet_html(content)"`` uses ``null``. - output_columnsに指定された条件に従って、対象となるカラム型が出力されます。 +Here is an example of ``COLUMNS``:: - ``検索結果n`` + [ + ["_id", "UInt32"], + ["_key", "ShortText"], + ["n_likes", "UInt32"], + ] - output_columns, offset, limitによって指定された条件に従って各レコードの値が出力されます。 +``RECORDS`` includes column values for each matched record. Included +records are selected by :ref:`select-offset` and +:ref:`select-limit`. It uses the following format:: -``drilldown結果`` + [ + [ + RECORD_1_COLUMN_1, + RECORD_1_COLUMN_2, + ..., + RECORD_1_COLUMN_N + ], + [ + RECORD_2_COLUMN_1, + RECORD_2_COLUMN_2, + ..., + RECORD_2_COLUMN_N + ], + ... + [ + RECORD_N_COLUMN_1, + RECORD_N_COLUMN_2, + ..., + RECORD_N_COLUMN_N + ] + ] - drilldown処理の結果が以下のように出力されます。:: +Here is an example ``RECORDS``:: - [[[件数], [[カラム名1,カラム型1],..], 検索結果1,..],..] + [ + [ + 1, + "The first post!", + 5 + ], + [ + 2, + "Groonga", + 10 + ], + [ + 3, + "Mroonga", + 15 + ] + ] - ``件数`` +``DRILLDOWN_RESULT`` format is different between ``drilldown`` and +``drilldown[${LABEL}].keys``. - drilldownに指定されたカラムの値の異なり数が出力されます。 +``drilldown`` uses the same format as ``SEARCH_RESULT``:: - ``カラム名n`` + [ + [N_HITS], + COLUMNS, + RECORDS + ] - drilldown_output_columnsに指定された条件に従って、対象となるカラム名が出力されます。 +And ``drilldown`` generates one or more ``DRILLDOWN_RESULT`` when +:ref:`select-drilldown` has one ore more keys. + +``drilldown[${LABEL}].keys`` uses the following format. Multiple +``drilldown[${LABEL}].keys`` are mapped to one object (key-value +pairs):: + + { + "LABEL_1": [ + [N_HITS], + COLUMNS, + RECORDS + ], + "LABEL_2": [ + [N_HITS], + COLUMNS, + RECORDS + ], + ..., + "LABEL_N": [ + [N_HITS], + COLUMNS, + RECORDS + ] + } - ``カラム型n`` +Each ``drilldown[${LABEL}].keys`` corresponds to the following:: - drilldown_output_columnsに指定された条件に従って、対象となるカラム型が出力されます。 + "LABEL": [ + [N_HITS], + COLUMNS, + RECORDS + ] - ``ドリルダウン結果n`` +The following value part is the same format as ``SEARCH_RESULT``:: - drilldown_output_columns, drilldown_offset, drilldown_limitによって指定された条件に従って各レコードの値が出力されます。 + [ + [N_HITS], + COLUMNS, + RECORDS + ] See also -------- Modified: docs/static/jquery.js (+2 -9404) =================================================================== --- docs/static/jquery.js 2015-07-07 00:02:39 +0900 (ea1666a) +++ docs/static/jquery.js 2015-07-08 23:05:44 +0900 (83589da) @@ -1,9404 +1,2 @@ -/*! - * jQuery JavaScript Library v1.7.2 - * http://jquery.com/ - * - * Copyright 2011, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Fri Aug 29 09:46:34 UTC 2014 - */ -(function( window, undefined ) { - -// Use the correct document accordingly with window argument (sandbox) -var document = window.document, - navigator = window.navigator, - location = window.location; -var jQuery = (function() { - -// Define a local copy of jQuery -var jQuery = function( selector, context ) { - // The jQuery object is actually just the init constructor 'enhanced' - return new jQuery.fn.init( selector, context, rootjQuery ); - }, - - // Map over jQuery in case of overwrite - _jQuery = window.jQuery, - - // Map over the $ in case of overwrite - _$ = window.$, - - // A central reference to the root jQuery(document) - rootjQuery, - - // A simple way to check for HTML strings or ID strings - // Prioritize #id over <tag> to avoid XSS via location.hash (#9521) - quickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/, - - // Check if a string has a non-whitespace character in it - rnotwhite = /\S/, - - // Used for trimming whitespace - trimLeft = /^\s+/, - trimRight = /\s+$/, - - // Match a standalone tag - rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, - - // JSON RegExp - rvalidchars = /^[\],:{}\s]*$/, - rvalidescape = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, - rvalidtokens = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, - rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, - - // Useragent RegExp - rwebkit = /(webkit)[ \/]([\w.]+)/, - ropera = /(opera)(?:.*version)?[ \/]([\w.]+)/, - rmsie = /(msie) ([\w.]+)/, - rmozilla = /(mozilla)(?:.*? rv:([\w.]+))?/, - - // Matches dashed string for camelizing - rdashAlpha = /-([a-z]|[0-9])/ig, - rmsPrefix = /^-ms-/, - - // Used by jQuery.camelCase as callback to replace() - fcamelCase = function( all, letter ) { - return ( letter + "" ).toUpperCase(); - }, - - // Keep a UserAgent string for use with jQuery.browser - userAgent = navigator.userAgent, - - // For matching the engine and version of the browser - browserMatch, - - // The deferred used on DOM ready - readyList, - - // The ready event handler - DOMContentLoaded, - - // Save a reference to some core methods - toString = Object.prototype.toString, - hasOwn = Object.prototype.hasOwnProperty, - push = Array.prototype.push, - slice = Array.prototype.slice, - trim = String.prototype.trim, - indexOf = Array.prototype.indexOf, - - // [[Class]] -> type pairs - class2type = {}; - -jQuery.fn = jQuery.prototype = { - constructor: jQuery, - init: function( selector, context, rootjQuery ) { - var match, elem, ret, doc; - - // Handle $(""), $(null), or $(undefined) - if ( !selector ) { - return this; - } - - // Handle $(DOMElement) - if ( selector.nodeType ) { - this.context = this[0] = selector; - this.length = 1; - return this; - } - - // The body element only exists once, optimize finding it - if ( selector === "body" && !context && document.body ) { - this.context = document; - this[0] = document.body; - this.selector = selector; - this.length = 1; - return this; - } - - // Handle HTML strings - if ( typeof selector === "string" ) { - // Are we dealing with HTML string or an ID? - if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = quickExpr.exec( selector ); - } - - // Verify a match, and that no context was specified for #id - if ( match && (match[1] || !context) ) { - - // HANDLE: $(html) -> $(array) - if ( match[1] ) { - context = context instanceof jQuery ? context[0] : context; - doc = ( context ? context.ownerDocument || context : document ); - - // If a single string is passed in and it's a single tag - // just do a createElement and skip the rest - ret = rsingleTag.exec( selector ); - - if ( ret ) { - if ( jQuery.isPlainObject( context ) ) { - selector = [ document.createElement( ret[1] ) ]; - jQuery.fn.attr.call( selector, context, true ); - - } else { - selector = [ doc.createElement( ret[1] ) ]; - } - - } else { - ret = jQuery.buildFragment( [ match[1] ], [ doc ] ); - selector = ( ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment ).childNodes; - } - - return jQuery.merge( this, selector ); - - // HANDLE: $("#id") - } else { - elem = document.getElementById( match[2] ); - - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id !== match[2] ) { - return rootjQuery.find( selector ); - } - - // Otherwise, we inject the element directly into the jQuery object - this.length = 1; - this[0] = elem; - } - - this.context = document; - this.selector = selector; - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || rootjQuery ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( jQuery.isFunction( selector ) ) { - return rootjQuery.ready( selector ); - } - - if ( selector.selector !== undefined ) { - this.selector = selector.selector; - this.context = selector.context; - } - - return jQuery.makeArray( selector, this ); - }, - - // Start with an empty selector - selector: "", - - // The current version of jQuery being used - jquery: "1.7.2", - - // The default length of a jQuery object is 0 - length: 0, - - // The number of elements contained in the matched element set - size: function() { - return this.length; - }, - - toArray: function() { - return slice.call( this, 0 ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - return num == null ? - - // Return a 'clean' array - this.toArray() : - - // Return just the object - ( num < 0 ? this[ this.length + num ] : this[ num ] ); - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems, name, selector ) { - // Build a new jQuery matched element set - var ret = this.constructor(); - - if ( jQuery.isArray( elems ) ) { - push.apply( ret, elems ); - - } else { - jQuery.merge( ret, elems ); - } - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - ret.context = this.context; - - if ( name === "find" ) { - ret.selector = this.selector + ( this.selector ? " " : "" ) + selector; - } else if ( name ) { - ret.selector = this.selector + "." + name + "(" + selector + ")"; - } - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - // (You can seed the arguments with an array of args, but this is - // only used internally.) - each: function( callback, args ) { - return jQuery.each( this, callback, args ); - }, - - ready: function( fn ) { - // Attach the listeners - jQuery.bindReady(); - - // Add the callback - readyList.add( fn ); - - return this; - }, - - eq: function( i ) { - i = +i; - return i === -1 ? - this.slice( i ) : - this.slice( i, i + 1 ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ), - "slice", slice.call(arguments).join(",") ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map(this, function( elem, i ) { - return callback.call( elem, i, elem ); - })); - }, - - end: function() { - return this.prevObject || this.constructor(null); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: [].sort, - splice: [].splice -}; - -// Give the init function the jQuery prototype for later instantiation -jQuery.fn.init.prototype = jQuery.fn; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[0] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - target = arguments[1] || {}; - // skip the boolean and the target - i = 2; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !jQuery.isFunction(target) ) { - target = {}; - } - - // extend jQuery itself if only one argument is passed - if ( length === i ) { - target = this; - --i; - } - - for ( ; i < length; i++ ) { - // Only deal with non-null/undefined values - if ( (options = arguments[ i ]) != null ) { - // Extend the base object - for ( name in options ) { - src = target[ name ]; - copy = options[ name ]; - - // Prevent never-ending loop - if ( target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { - if ( copyIsArray ) { - copyIsArray = false; - clone = src && jQuery.isArray(src) ? src : []; - - } else { - clone = src && jQuery.isPlainObject(src) ? src : {}; - } - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend({ - noConflict: function( deep ) { - if ( window.$ === jQuery ) { - window.$ = _$; - } - - if ( deep && window.jQuery === jQuery ) { - window.jQuery = _jQuery; - } - - return jQuery; - }, - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Hold (or release) the ready event - holdReady: function( hold ) { - if ( hold ) { - jQuery.readyWait++; - } else { - jQuery.ready( true ); - } - }, - - // Handle when the DOM is ready - ready: function( wait ) { - // Either a released hold or an DOMready/load event and not yet ready - if ( (wait === true && !--jQuery.readyWait) || (wait !== true && !jQuery.isReady) ) { - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( !document.body ) { - return setTimeout( jQuery.ready, 1 ); - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.fireWith( document, [ jQuery ] ); - - // Trigger any bound ready events - if ( jQuery.fn.trigger ) { - jQuery( document ).trigger( "ready" ).off( "ready" ); - } - } - }, - - bindReady: function() { - if ( readyList ) { - return; - } - - readyList = jQuery.Callbacks( "once memory" ); - - // Catch cases where $(document).ready() is called after the - // browser event has already occurred. - if ( document.readyState === "complete" ) { - // Handle it asynchronously to allow scripts the opportunity to delay ready - return setTimeout( jQuery.ready, 1 ); - } - - // Mozilla, Opera and webkit nightlies currently support this event - if ( document.addEventListener ) { - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", jQuery.ready, false ); - - // If IE event model is used - } else if ( document.attachEvent ) { - // ensure firing before onload, - // maybe late but safe also for iframes - document.attachEvent( "onreadystatechange", DOMContentLoaded ); - - // A fallback to window.onload, that will always work - window.attachEvent( "onload", jQuery.ready ); - - // If IE and not a frame - // continually check to see if the document is ready - var toplevel = false; - - try { - toplevel = window.frameElement == null; - } catch(e) {} - - if ( document.documentElement.doScroll && toplevel ) { - doScrollCheck(); - } - } - }, - - // See test/unit/core.js for details concerning isFunction. - // Since version 1.3, DOM methods and functions like alert - // aren't supported. They return false on IE (#2968). - isFunction: function( obj ) { - return jQuery.type(obj) === "function"; - }, - - isArray: Array.isArray || function( obj ) { - return jQuery.type(obj) === "array"; - }, - - isWindow: function( obj ) { - return obj != null && obj == obj.window; - }, - - isNumeric: function( obj ) { - return !isNaN( parseFloat(obj) ) && isFinite( obj ); - }, - - type: function( obj ) { - return obj == null ? - String( obj ) : - class2type[ toString.call(obj) ] || "object"; - }, - - isPlainObject: function( obj ) { - // Must be an Object. - // Because of IE, we also have to check the presence of the constructor property. - // Make sure that DOM nodes and window objects don't pass through, as well - if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { - return false; - } - - try { - // Not own constructor property must be Object - if ( obj.constructor && - !hasOwn.call(obj, "constructor") && - !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { - return false; - } - } catch ( e ) { - // IE8,9 Will throw exceptions on certain host objects #9897 - return false; - } - - // Own properties are enumerated firstly, so to speed up, - // if last one is own, then all properties are own. - - var key; - for ( key in obj ) {} - - return key === undefined || hasOwn.call( obj, key ); - }, - - isEmptyObject: function( obj ) { - for ( var name in obj ) { - return false; - } - return true; - }, - - error: function( msg ) { - throw new Error( msg ); - }, - - parseJSON: function( data ) { - if ( typeof data !== "string" || !data ) { - return null; - } - - // Make sure leading/trailing whitespace is removed (IE can't handle it) - data = jQuery.trim( data ); - - // Attempt to parse using the native JSON parser first - if ( window.JSON && window.JSON.parse ) { - return window.JSON.parse( data ); - } - - // Make sure the incoming data is actual JSON - // Logic borrowed from http://json.org/json2.js - if ( rvalidchars.test( data.replace( rvalidescape, "@" ) - .replace( rvalidtokens, "]" ) - .replace( rvalidbraces, "")) ) { - - return ( new Function( "return " + data ) )(); - - } - jQuery.error( "Invalid JSON: " + data ); - }, - - // Cross-browser xml parsing - parseXML: function( data ) { - if ( typeof data !== "string" || !data ) { - return null; - } - var xml, tmp; - try { - if ( window.DOMParser ) { // Standard - tmp = new DOMParser(); - xml = tmp.parseFromString( data , "text/xml" ); - } else { // IE - xml = new ActiveXObject( "Microsoft.XMLDOM" ); - xml.async = "false"; - xml.loadXML( data ); - } - } catch( e ) { - xml = undefined; - } - if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; - }, - - noop: function() {}, - - // Evaluates a script in a global context - // Workarounds based on findings by Jim Driscoll - // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context - globalEval: function( data ) { - if ( data && rnotwhite.test( data ) ) { - // We use execScript on Internet Explorer - // We use an anonymous function so that context is window - // rather than jQuery in Firefox - ( window.execScript || function( data ) { - window[ "eval" ].call( window, data ); - } )( data ); - } - }, - - // Convert dashed to camelCase; used by the css and data modules - // Microsoft forgot to hump their vendor prefix (#9572) - camelCase: function( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); - }, - - nodeName: function( elem, name ) { - return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase(); - }, - - // args is for internal usage only - each: function( object, callback, args ) { - var name, i = 0, - length = object.length, - isObj = length === undefined || jQuery.isFunction( object ); - - if ( args ) { - if ( isObj ) { - for ( name in object ) { - if ( callback.apply( object[ name ], args ) === false ) { - break; - } - } - } else { - for ( ; i < length; ) { - if ( callback.apply( object[ i++ ], args ) === false ) { - break; - } - } - } - - // A special, fast, case for the most common use of each - } else { - if ( isObj ) { - for ( name in object ) { - if ( callback.call( object[ name ], name, object[ name ] ) === false ) { - break; - } - } - } else { - for ( ; i < length; ) { - if ( callback.call( object[ i ], i, object[ i++ ] ) === false ) { - break; - } - } - } - } - - return object; - }, - - // Use native String.trim function wherever possible - trim: trim ? - function( text ) { - return text == null ? - "" : - trim.call( text ); - } : - - // Otherwise use our own trimming functionality - function( text ) { - return text == null ? - "" : - text.toString().replace( trimLeft, "" ).replace( trimRight, "" ); - }, - - // results is for internal usage only - makeArray: function( array, results ) { - var ret = results || []; - - if ( array != null ) { - // The window, strings (and functions) also have 'length' - // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 - var type = jQuery.type( array ); - - if ( array.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( array ) ) { - push.call( ret, array ); - } else { - jQuery.merge( ret, array ); - } - } - - return ret; - }, - - inArray: function( elem, array, i ) { - var len; - - if ( array ) { - if ( indexOf ) { - return indexOf.call( array, elem, i ); - } - - len = array.length; - i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; - - for ( ; i < len; i++ ) { - // Skip accessing in sparse arrays - if ( i in array && array[ i ] === elem ) { - return i; - } - } - } - - return -1; - }, - - merge: function( first, second ) { - var i = first.length, - j = 0; - - if ( typeof second.length === "number" ) { - for ( var l = second.length; j < l; j++ ) { - first[ i++ ] = second[ j ]; - } - - } else { - while ( second[j] !== undefined ) { - first[ i++ ] = second[ j++ ]; - } - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, inv ) { - var ret = [], retVal; - inv = !!inv; - - // Go through the array, only saving the items - // that pass the validator function - for ( var i = 0, length = elems.length; i < length; i++ ) { - retVal = !!callback( elems[ i ], i ); - if ( inv !== retVal ) { - ret.push( elems[ i ] ); - } - } - - return ret; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var value, key, ret = [], - i = 0, - length = elems.length, - // jquery objects are treated as arrays - isArray = elems instanceof jQuery || length !== undefined && typeof length === "number" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ; - - // Go through the array, translating each of the items to their - if ( isArray ) { - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - - // Go through every key on the object, - } else { - for ( key in elems ) { - value = callback( elems[ key ], key, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - } - - // Flatten any nested arrays - return ret.concat.apply( [], ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // Bind a function to a context, optionally partially applying any - // arguments. - proxy: function( fn, context ) { - if ( typeof context === "string" ) { - var tmp = fn[ context ]; - context = fn; - fn = tmp; - } - - // Quick check to determine if target is callable, in the spec - // this throws a TypeError, but we will just return undefined. - if ( !jQuery.isFunction( fn ) ) { - return undefined; - } - - // Simulated bind - var args = slice.call( arguments, 2 ), - proxy = function() { - return fn.apply( context, args.concat( slice.call( arguments ) ) ); - }; - - // Set the guid of unique handler to the same of original handler, so it can be removed - proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++; - - return proxy; - }, - - // Mutifunctional method to get and set values to a collection - // The value/s can optionally be executed if it's a function - access: function( elems, fn, key, value, chainable, emptyGet, pass ) { - var exec, - bulk = key == null, - i = 0, - length = elems.length; - - // Sets many values - if ( key && typeof key === "object" ) { - for ( i in key ) { - jQuery.access( elems, fn, i, key[i], 1, emptyGet, value ); - } - chainable = 1; - - // Sets one value - } else if ( value !== undefined ) { - // Optionally, function values get executed if exec is true - exec = pass === undefined && jQuery.isFunction( value ); - - if ( bulk ) { - // Bulk operations only iterate when executing function values - if ( exec ) { - exec = fn; - fn = function( elem, key, value ) { - return exec.call( jQuery( elem ), value ); - }; - - // Otherwise they run against the entire set - } else { - fn.call( elems, value ); - fn = null; - } - } - - if ( fn ) { - for (; i < length; i++ ) { - fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); - } - } - - chainable = 1; - } - - return chainable ? - elems : - - // Gets - bulk ? - fn.call( elems ) : - length ? fn( elems[0], key ) : emptyGet; - }, - - now: function() { - return ( new Date() ).getTime(); - }, - - // Use of jQuery.browser is frowned upon. - // More details: http://docs.jquery.com/Utilities/jQuery.browser - uaMatch: function( ua ) { - ua = ua.toLowerCase(); - - var match = rwebkit.exec( ua ) || - ropera.exec( ua ) || - rmsie.exec( ua ) || - ua.indexOf("compatible") < 0 && rmozilla.exec( ua ) || - []; - - return { browser: match[1] || "", version: match[2] || "0" }; - }, - - sub: function() { - function jQuerySub( selector, context ) { - return new jQuerySub.fn.init( selector, context ); - } - jQuery.extend( true, jQuerySub, this ); - jQuerySub.superclass = this; - jQuerySub.fn = jQuerySub.prototype = this(); - jQuerySub.fn.constructor = jQuerySub; - jQuerySub.sub = this.sub; - jQuerySub.fn.init = function init( selector, context ) { - if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) { - context = jQuerySub( context ); - } - - return jQuery.fn.init.call( this, selector, context, rootjQuerySub ); - }; - jQuerySub.fn.init.prototype = jQuerySub.fn; - var rootjQuerySub = jQuerySub(document); - return jQuerySub; - }, - - browser: {} -}); - -// Populate the class2type map -jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -}); - -browserMatch = jQuery.uaMatch( userAgent ); -if ( browserMatch.browser ) { - jQuery.browser[ browserMatch.browser ] = true; - jQuery.browser.version = browserMatch.version; -} - -// Deprecated, use jQuery.browser.webkit instead -if ( jQuery.browser.webkit ) { - jQuery.browser.safari = true; -} - -// IE doesn't match non-breaking spaces with \s -if ( rnotwhite.test( "\xA0" ) ) { - trimLeft = /^[\s\xA0]+/; - trimRight = /[\s\xA0]+$/; -} - -// All jQuery objects should point back to these -rootjQuery = jQuery(document); - -// Cleanup functions for the document ready method -if ( document.addEventListener ) { - DOMContentLoaded = function() { - document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); - jQuery.ready(); - }; - -} else if ( document.attachEvent ) { - DOMContentLoaded = function() { - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( document.readyState === "complete" ) { - document.detachEvent( "onreadystatechange", DOMContentLoaded ); - jQuery.ready(); - } - }; -} - -// The DOM ready check for Internet Explorer -function doScrollCheck() { - if ( jQuery.isReady ) { - return; - } - - try { - // If IE is used, use the trick by Diego Perini - // http://javascript.nwbox.com/IEContentLoaded/ - document.documentElement.doScroll("left"); - } catch(e) { - setTimeout( doScrollCheck, 1 ); - return; - } - - // and execute any waiting functions - jQuery.ready(); -} - -return jQuery; - -})(); - - -// String to Object flags format cache -var flagsCache = {}; - -// Convert String-formatted flags into Object-formatted ones and store in cache -function createFlags( flags ) { - var object = flagsCache[ flags ] = {}, - i, length; - flags = flags.split( /\s+/ ); - for ( i = 0, length = flags.length; i < length; i++ ) { - object[ flags[i] ] = true; - } - return object; -} - -/* - * Create a callback list using the following parameters: - * - * flags: an optional list of space-separated flags that will change how - * the callback list behaves - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible flags: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( flags ) { - - // Convert flags from String-formatted to Object-formatted - // (we check in cache first) - flags = flags ? ( flagsCache[ flags ] || createFlags( flags ) ) : {}; - - var // Actual callback list - list = [], - // Stack of fire calls for repeatable lists - stack = [], - // Last fire value (for non-forgettable lists) - memory, - // Flag to know if list was already fired - fired, - // Flag to know if list is currently firing - firing, - // First callback to fire (used internally by add and fireWith) - firingStart, - // End of the loop when firing - firingLength, - // Index of currently firing callback (modified by remove if needed) - firingIndex, - // Add one or several callbacks to the list - add = function( args ) { - var i, - length, - elem, - type, - actual; - for ( i = 0, length = args.length; i < length; i++ ) { - elem = args[ i ]; - type = jQuery.type( elem ); - if ( type === "array" ) { - // Inspect recursively - add( elem ); - } else if ( type === "function" ) { - // Add if not in unique mode and callback is not in - if ( !flags.unique || !self.has( elem ) ) { - list.push( elem ); - } - } - } - }, - // Fire callbacks - fire = function( context, args ) { - args = args || []; - memory = !flags.memory || [ context, args ]; - fired = true; - firing = true; - firingIndex = firingStart || 0; - firingStart = 0; - firingLength = list.length; - for ( ; list && firingIndex < firingLength; firingIndex++ ) { - if ( list[ firingIndex ].apply( context, args ) === false && flags.stopOnFalse ) { - memory = true; // Mark as halted - break; - } - } - firing = false; - if ( list ) { - if ( !flags.once ) { - if ( stack && stack.length ) { - memory = stack.shift(); - self.fireWith( memory[ 0 ], memory[ 1 ] ); - } - } else if ( memory === true ) { - self.disable(); - } else { - list = []; - } - } - }, - // Actual Callbacks object - self = { - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - var length = list.length; - add( arguments ); - // Do we need to add the callbacks to the - // current firing batch? - if ( firing ) { - firingLength = list.length; - // With memory, if we're not firing then - // we should call right away, unless previous - // firing was halted (stopOnFalse) - } else if ( memory && memory !== true ) { - firingStart = length; - fire( memory[ 0 ], memory[ 1 ] ); - } - } - return this; - }, - // Remove a callback from the list - remove: function() { - if ( list ) { - var args = arguments, - argIndex = 0, - argLength = args.length; - for ( ; argIndex < argLength ; argIndex++ ) { - for ( var i = 0; i < list.length; i++ ) { - if ( args[ argIndex ] === list[ i ] ) { - // Handle firingIndex and firingLength - if ( firing ) { - if ( i <= firingLength ) { - firingLength--; - if ( i <= firingIndex ) { - firingIndex--; - } - } - } - // Remove the element - list.splice( i--, 1 ); - // If we have some unicity property then - // we only need to do this once - if ( flags.unique ) { - break; - } - } - } - } - } - return this; - }, - // Control if a given callback is in the list - has: function( fn ) { - if ( list ) { - var i = 0, - length = list.length; - for ( ; i < length; i++ ) { - if ( fn === list[ i ] ) { - return true; - } - } - } - return false; - }, - // Remove all callbacks from the list - empty: function() { - list = []; - return this; - }, - // Have the list do nothing anymore - disable: function() { - list = stack = memory = undefined; - return this; - }, - // Is it disabled? - disabled: function() { - return !list; - }, - // Lock the list in its current state - lock: function() { - stack = undefined; - if ( !memory || memory === true ) { - self.disable(); - } - return this; - }, - // Is it locked? - locked: function() { - return !stack; - }, - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( stack ) { - if ( firing ) { - if ( !flags.once ) { - stack.push( [ context, args ] ); - } - } else if ( !( flags.once && memory ) ) { - fire( context, args ); - } - } - return this; - }, - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - - - -var // Static reference to slice - sliceDeferred = [].slice; - -jQuery.extend({ - - Deferred: function( func ) { - var doneList = jQuery.Callbacks( "once memory" ), - failList = jQuery.Callbacks( "once memory" ), - progressList = jQuery.Callbacks( "memory" ), - state = "pending", - lists = { - resolve: doneList, - reject: failList, - notify: progressList - }, - promise = { - done: doneList.add, - fail: failList.add, - progress: progressList.add, - - state: function() { - return state; - }, - - // Deprecated - isResolved: doneList.fired, - isRejected: failList.fired, - - then: function( doneCallbacks, failCallbacks, progressCallbacks ) { - deferred.done( doneCallbacks ).fail( failCallbacks ).progress( progressCallbacks ); - return this; - }, - always: function() { - deferred.done.apply( deferred, arguments ).fail.apply( deferred, arguments ); - return this; - }, - pipe: function( fnDone, fnFail, fnProgress ) { - return jQuery.Deferred(function( newDefer ) { - jQuery.each( { - done: [ fnDone, "resolve" ], - fail: [ fnFail, "reject" ], - progress: [ fnProgress, "notify" ] - }, function( handler, data ) { - var fn = data[ 0 ], - action = data[ 1 ], - returned; - if ( jQuery.isFunction( fn ) ) { - deferred[ handler ](function() { - returned = fn.apply( this, arguments ); - if ( returned && jQuery.isFunction( returned.promise ) ) { - returned.promise().then( newDefer.resolve, newDefer.reject, newDefer.notify ); - } else { - newDefer[ action + "With" ]( this === deferred ? newDefer : this, [ returned ] ); - } - }); - } else { - deferred[ handler ]( newDefer[ action ] ); - } - }); - }).promise(); - }, - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - if ( obj == null ) { - obj = promise; - } else { - for ( var key in promise ) { - obj[ key ] = promise[ key ]; - } - } - return obj; - } - }, - deferred = promise.promise({}), - key; - - for ( key in lists ) { - deferred[ key ] = lists[ key ].fire; - deferred[ key + "With" ] = lists[ key ].fireWith; - } - - // Handle state - deferred.done( function() { - state = "resolved"; - }, failList.disable, progressList.lock ).fail( function() { - state = "rejected"; - }, doneList.disable, progressList.lock ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( firstParam ) { - var args = sliceDeferred.call( arguments, 0 ), - i = 0, - length = args.length, - pValues = new Array( length ), - count = length, - pCount = length, - deferred = length <= 1 && firstParam && jQuery.isFunction( firstParam.promise ) ? - firstParam : - jQuery.Deferred(), - promise = deferred.promise(); - function resolveFunc( i ) { - return function( value ) { - args[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value; - if ( !( --count ) ) { - deferred.resolveWith( deferred, args ); - } - }; - } - function progressFunc( i ) { - return function( value ) { - pValues[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value; - deferred.notifyWith( promise, pValues ); - }; - } - if ( length > 1 ) { - for ( ; i < length; i++ ) { - if ( args[ i ] && args[ i ].promise && jQuery.isFunction( args[ i ].promise ) ) { - args[ i ].promise().then( resolveFunc(i), deferred.reject, progressFunc(i) ); - } else { - --count; - } - } - if ( !count ) { - deferred.resolveWith( deferred, args ); - } - } else if ( deferred !== firstParam ) { - deferred.resolveWith( deferred, length ? [ firstParam ] : [] ); - } - return promise; - } -}); - - - - -jQuery.support = (function() { - - var support, - all, - a, - select, - opt, - input, - fragment, - tds, - events, - eventName, - i, - isSupported, - div = document.createElement( "div" ), - documentElement = document.documentElement; - - // Preliminary tests - div.setAttribute("className", "t"); - div.innerHTML = " <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>"; - - all = div.getElementsByTagName( "*" ); - a = div.getElementsByTagName( "a" )[ 0 ]; - - // Can't get basic test support - if ( !all || !all.length || !a ) { - return {}; - } - - // First batch of supports tests - select = document.createElement( "select" ); - opt = select.appendChild( document.createElement("option") ); - input = div.getElementsByTagName( "input" )[ 0 ]; - - support = { - // IE strips leading whitespace when .innerHTML is used - leadingWhitespace: ( div.firstChild.nodeType === 3 ), - - // Make sure that tbody elements aren't automatically inserted - // IE will insert them into empty tables - tbody: !div.getElementsByTagName("tbody").length, - - // Make sure that link elements get serialized correctly by innerHTML - // This requires a wrapper element in IE - htmlSerialize: !!div.getElementsByTagName("link").length, - - // Get the style information from getAttribute - // (IE uses .cssText instead) - style: /top/.test( a.getAttribute("style") ), - - // Make sure that URLs aren't manipulated - // (IE normalizes it by default) - hrefNormalized: ( a.getAttribute("href") === "/a" ), - - // Make sure that element opacity exists - // (IE uses filter instead) - // Use a regex to work around a WebKit issue. See #5145 - opacity: /^0.55/.test( a.style.opacity ), - - // Verify style float existence - // (IE uses styleFloat instead of cssFloat) - cssFloat: !!a.style.cssFloat, - - // Make sure that if no value is specified for a checkbox - // that it defaults to "on". - // (WebKit defaults to "" instead) - checkOn: ( input.value === "on" ), - - // Make sure that a selected-by-default option has a working selected property. - // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) - optSelected: opt.selected, - - // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) - getSetAttribute: div.className !== "t", - - // Tests for enctype support on a form(#6743) - enctype: !!document.createElement("form").enctype, - - // Makes sure cloning an html5 element does not cause problems - // Where outerHTML is undefined, this still works - html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav></:nav>", - - // Will be defined later - submitBubbles: true, - changeBubbles: true, - focusinBubbles: false, - deleteExpando: true, - noCloneEvent: true, - inlineBlockNeedsLayout: false, - shrinkWrapBlocks: false, - reliableMarginRight: true, - pixelMargin: true - }; - - // jQuery.boxModel DEPRECATED in 1.3, use jQuery.support.boxModel instead - jQuery.boxModel = support.boxModel = (document.compatMode === "CSS1Compat"); - - // Make sure checked status is properly cloned - input.checked = true; - support.noCloneChecked = input.cloneNode( true ).checked; - - // Make sure that the options inside disabled selects aren't marked as disabled - // (WebKit marks them as disabled) - select.disabled = true; - support.optDisabled = !opt.disabled; - - // Test to see if it's possible to delete an expando from an element - // Fails in Internet Explorer - try { - delete div.test; - } catch( e ) { - support.deleteExpando = false; - } - - if ( !div.addEventListener && div.attachEvent && div.fireEvent ) { - div.attachEvent( "onclick", function() { - // Cloning a node shouldn't copy over any - // bound event handlers (IE does this) - support.noCloneEvent = false; - }); - div.cloneNode( true ).fireEvent( "onclick" ); - } - - // Check if a radio maintains its value - // after being appended to the DOM - input = document.createElement("input"); - input.value = "t"; - input.setAttribute("type", "radio"); - support.radioValue = input.value === "t"; - - input.setAttribute("checked", "checked"); - - // #11217 - WebKit loses check when the name is after the checked attribute - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - fragment = document.createDocumentFragment(); - fragment.appendChild( div.lastChild ); - - // WebKit doesn't clone checked state correctly in fragments - support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Check if a disconnected checkbox will retain its checked - // value of true after appended to the DOM (IE6/7) - support.appendChecked = input.checked; - - fragment.removeChild( input ); - fragment.appendChild( div ); - - // Technique from Juriy Zaytsev - // http://perfectionkills.com/detecting-event-support-without-browser-sniffing/ - // We only care about the case where non-standard event systems - // are used, namely in IE. Short-circuiting here helps us to - // avoid an eval call (in setAttribute) which can cause CSP - // to go haywire. See: https://developer.mozilla.org/en/Security/CSP - if ( div.attachEvent ) { - for ( i in { - submit: 1, - change: 1, - focusin: 1 - }) { - eventName = "on" + i; - isSupported = ( eventName in div ); - if ( !isSupported ) { - div.setAttribute( eventName, "return;" ); - isSupported = ( typeof div[ eventName ] === "function" ); - } - support[ i + "Bubbles" ] = isSupported; - } - } - - fragment.removeChild( div ); - - // Null elements to avoid leaks in IE - fragment = select = opt = div = input = null; - - // Run tests that need a body at doc ready - jQuery(function() { - var container, outer, inner, table, td, offsetSupport, - marginDiv, conMarginTop, style, html, positionTopLeftWidthHeight, - paddingMarginBorderVisibility, paddingMarginBorder, - body = document.getElementsByTagName("body")[0]; - - if ( !body ) { - // Return for frameset docs that don't have a body - return; - } - - conMarginTop = 1; - paddingMarginBorder = "padding:0;margin:0;border:"; - positionTopLeftWidthHeight = "position:absolute;top:0;left:0;width:1px;height:1px;"; - paddingMarginBorderVisibility = paddingMarginBorder + "0;visibility:hidden;"; - style = "style='" + positionTopLeftWidthHeight + paddingMarginBorder + "5px solid #000;"; - html = "<div " + style + "display:block;'><div style='" + paddingMarginBorder + "0;display:block;overflow:hidden;'></div></div>" + - "<table " + style + "' cellpadding='0' cellspacing='0'>" + - "<tr><td></td></tr></table>"; - - container = document.createElement("div"); - container.style.cssText = paddingMarginBorderVisibility + "width:0;height:0;position:static;top:0;margin-top:" + conMarginTop + "px"; - body.insertBefore( container, body.firstChild ); - - // Construct the test element - div = document.createElement("div"); - container.appendChild( div ); - - // Check if table cells still have offsetWidth/Height when they are set - // to display:none and there are still other visible table cells in a - // table row; if so, offsetWidth/Height are not reliable for use when - // determining if an element has been hidden directly using - // display:none (it is still safe to use offsets if a parent element is - // hidden; don safety goggles and see bug #4512 for more information). - // (only IE 8 fails this test) - div.innerHTML = "<table><tr><td style='" + paddingMarginBorder + "0;display:none'></td><td>t</td></tr></table>"; - tds = div.getElementsByTagName( "td" ); - isSupported = ( tds[ 0 ].offsetHeight === 0 ); - - tds[ 0 ].style.display = ""; - tds[ 1 ].style.display = "none"; - - // Check if empty table cells still have offsetWidth/Height - // (IE <= 8 fail this test) - support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); - - // Check if div with explicit width and no margin-right incorrectly - // gets computed margin-right based on width of container. For more - // info see bug #3333 - // Fails in WebKit before Feb 2011 nightlies - // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right - if ( window.getComputedStyle ) { - div.innerHTML = ""; - marginDiv = document.createElement( "div" ); - marginDiv.style.width = "0"; - marginDiv.style.marginRight = "0"; - div.style.width = "2px"; - div.appendChild( marginDiv ); - support.reliableMarginRight = - ( parseInt( ( window.getComputedStyle( marginDiv, null ) || { marginRight: 0 } ).marginRight, 10 ) || 0 ) === 0; - } - - if ( typeof div.style.zoom !== "undefined" ) { - // Check if natively block-level elements act like inline-block - // elements when setting their display to 'inline' and giving - // them layout - // (IE < 8 does this) - div.innerHTML = ""; - div.style.width = div.style.padding = "1px"; - div.style.border = 0; - div.style.overflow = "hidden"; - div.style.display = "inline"; - div.style.zoom = 1; - support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); - - // Check if elements with layout shrink-wrap their children - // (IE 6 does this) - div.style.display = "block"; - div.style.overflow = "visible"; - div.innerHTML = "<div style='width:5px;'></div>"; - support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); - } - - div.style.cssText = positionTopLeftWidthHeight + paddingMarginBorderVisibility; - div.innerHTML = html; - - outer = div.firstChild; - inner = outer.firstChild; - td = outer.nextSibling.firstChild.firstChild; - - offsetSupport = { - doesNotAddBorder: ( inner.offsetTop !== 5 ), - doesAddBorderForTableAndCells: ( td.offsetTop === 5 ) - }; - - inner.style.position = "fixed"; - inner.style.top = "20px"; - - // safari subtracts parent border width here which is 5px - offsetSupport.fixedPosition = ( inner.offsetTop === 20 || inner.offsetTop === 15 ); - inner.style.position = inner.style.top = ""; - - outer.style.overflow = "hidden"; - outer.style.position = "relative"; - - offsetSupport.subtractsBorderForOverflowNotVisible = ( inner.offsetTop === -5 ); - offsetSupport.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== conMarginTop ); - - if ( window.getComputedStyle ) { - div.style.marginTop = "1%"; - support.pixelMargin = ( window.getComputedStyle( div, null ) || { marginTop: 0 } ).marginTop !== "1%"; - } - - if ( typeof container.style.zoom !== "undefined" ) { - container.style.zoom = 1; - } - - body.removeChild( container ); - marginDiv = div = container = null; - - jQuery.extend( support, offsetSupport ); - }); - - return support; -})(); - - - - -var rbrace = /^(?:\{.*\}|\[.*\])$/, - rmultiDash = /([A-Z])/g; - -jQuery.extend({ - cache: {}, - - // Please use with caution - uuid: 0, - - // Unique for each copy of jQuery on the page - // Non-digits removed to match rinlinejQuery - expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ), - - // The following elements throw uncatchable exceptions if you - // attempt to add expando properties to them. - noData: { - "embed": true, - // Ban all objects except for Flash (which handle expandos) - "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", - "applet": true - }, - - hasData: function( elem ) { - elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; - return !!elem && !isEmptyDataObject( elem ); - }, - - data: function( elem, name, data, pvt /* Internal Use Only */ ) { - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var privateCache, thisCache, ret, - internalKey = jQuery.expando, - getByName = typeof name === "string", - - // We have to handle DOM nodes and JS objects differently because IE6-7 - // can't GC object references properly across the DOM-JS boundary - isNode = elem.nodeType, - - // Only DOM nodes need the global jQuery cache; JS object data is - // attached directly to the object so GC can occur automatically - cache = isNode ? jQuery.cache : elem, - - // Only defining an ID for JS objects if its cache already exists allows - // the code to shortcut on the same path as a DOM node with no cache - id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey, - isEvents = name === "events"; - - // Avoid doing any more work than we need to when trying to get data on an - // object that has no data at all - if ( (!id || !cache[id] || (!isEvents && !pvt && !cache[id].data)) && getByName && data === undefined ) { - return; - } - - if ( !id ) { - // Only DOM nodes need a new unique ID for each element since their data - // ends up in the global cache - if ( isNode ) { - elem[ internalKey ] = id = ++jQuery.uuid; - } else { - id = internalKey; - } - } - - if ( !cache[ id ] ) { - cache[ id ] = {}; - - // Avoids exposing jQuery metadata on plain JS objects when the object - // is serialized using JSON.stringify - if ( !isNode ) { - cache[ id ].toJSON = jQuery.noop; - } - } - - // An object can be passed to jQuery.data instead of a key/value pair; this gets - // shallow copied over onto the existing cache - if ( typeof name === "object" || typeof name === "function" ) { - if ( pvt ) { - cache[ id ] = jQuery.extend( cache[ id ], name ); - } else { - cache[ id ].data = jQuery.extend( cache[ id ].data, name ); - } - } - - privateCache = thisCache = cache[ id ]; - - // jQuery data() is stored in a separate object inside the object's internal data - // cache in order to avoid key collisions between internal data and user-defined - // data. - if ( !pvt ) { - if ( !thisCache.data ) { - thisCache.data = {}; - } - - thisCache = thisCache.data; - } - - if ( data !== undefined ) { - thisCache[ jQuery.camelCase( name ) ] = data; - } - - // Users should not attempt to inspect the internal events object using jQuery.data, - // it is undocumented and subject to change. But does anyone listen? No. - if ( isEvents && !thisCache[ name ] ) { - return privateCache.events; - } - - // Check for both converted-to-camel and non-converted data property names - // If a data property was specified - if ( getByName ) { - - // First Try to find as-is property data - ret = thisCache[ name ]; - - // Test for null|undefined property data - if ( ret == null ) { - - // Try to find the camelCased property - ret = thisCache[ jQuery.camelCase( name ) ]; - } - } else { - ret = thisCache; - } - - return ret; - }, - - removeData: function( elem, name, pvt /* Internal Use Only */ ) { - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var thisCache, i, l, - - // Reference to internal data cache key - internalKey = jQuery.expando, - - isNode = elem.nodeType, - - // See jQuery.data for more information - cache = isNode ? jQuery.cache : elem, - - // See jQuery.data for more information - id = isNode ? elem[ internalKey ] : internalKey; - - // If there is already no cache entry for this object, there is no - // purpose in continuing - if ( !cache[ id ] ) { - return; - } - - if ( name ) { - - thisCache = pvt ? cache[ id ] : cache[ id ].data; - - if ( thisCache ) { - - // Support array or space separated string names for data keys - if ( !jQuery.isArray( name ) ) { - - // try the string as a key before any manipulation - if ( name in thisCache ) { - name = [ name ]; - } else { - - // split the camel cased version by spaces unless a key with the spaces exists - name = jQuery.camelCase( name ); - if ( name in thisCache ) { - name = [ name ]; - } else { - name = name.split( " " ); - } - } - } - - for ( i = 0, l = name.length; i < l; i++ ) { - delete thisCache[ name[i] ]; - } - - // If there is no data left in the cache, we want to continue - // and let the cache object itself get destroyed - if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { - return; - } - } - } - - // See jQuery.data for more information - if ( !pvt ) { - delete cache[ id ].data; - - // Don't destroy the parent cache unless the internal data object - // had been the only thing left in it - if ( !isEmptyDataObject(cache[ id ]) ) { - return; - } - } - - // Browsers that fail expando deletion also refuse to delete expandos on - // the window, but it will allow it on all other JS objects; other browsers - // don't care - // Ensure that `cache` is not a window object #10080 - if ( jQuery.support.deleteExpando || !cache.setInterval ) { - delete cache[ id ]; - } else { - cache[ id ] = null; - } - - // We destroyed the cache and need to eliminate the expando on the node to avoid - // false lookups in the cache for entries that no longer exist - if ( isNode ) { - // IE does not allow us to delete expando properties from nodes, - // nor does it have a removeAttribute function on Document nodes; - // we must handle all of these cases - if ( jQuery.support.deleteExpando ) { - delete elem[ internalKey ]; - } else if ( elem.removeAttribute ) { - elem.removeAttribute( internalKey ); - } else { - elem[ internalKey ] = null; - } - } - }, - - // For internal use only. - _data: function( elem, name, data ) { - return jQuery.data( elem, name, data, true ); - }, - - // A method for determining if a DOM node can handle the data expando - acceptData: function( elem ) { - if ( elem.nodeName ) { - var match = jQuery.noData[ elem.nodeName.toLowerCase() ]; - - if ( match ) { - return !(match === true || elem.getAttribute("classid") !== match); - } - } - - return true; - } -}); - -jQuery.fn.extend({ - data: function( key, value ) { - var parts, part, attr, name, l, - elem = this[0], - i = 0, - data = null; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = jQuery.data( elem ); - - if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { - attr = elem.attributes; - for ( l = attr.length; i < l; i++ ) { - name = attr[i].name; - - if ( name.indexOf( "data-" ) === 0 ) { - name = jQuery.camelCase( name.substring(5) ); - - dataAttr( elem, name, data[ name ] ); - } - } - jQuery._data( elem, "parsedAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each(function() { - jQuery.data( this, key ); - }); - } - - parts = key.split( ".", 2 ); - parts[1] = parts[1] ? "." + parts[1] : ""; - part = parts[1] + "!"; - - return jQuery.access( this, function( value ) { - - if ( value === undefined ) { - data = this.triggerHandler( "getData" + part, [ parts[0] ] ); - - // Try to fetch any internally stored data first - if ( data === undefined && elem ) { - data = jQuery.data( elem, key ); - data = dataAttr( elem, key, data ); - } - - return data === undefined && parts[1] ? - this.data( parts[0] ) : - data; - } - - parts[1] = value; - this.each(function() { - var self = jQuery( this ); - - self.triggerHandler( "setData" + part, parts ); - jQuery.data( this, key, value ); - self.triggerHandler( "changeData" + part, parts ); - }); - }, null, value, arguments.length > 1, null, false ); - }, - - removeData: function( key ) { - return this.each(function() { - jQuery.removeData( this, key ); - }); - } -}); - -function dataAttr( elem, key, data ) { - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - - var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); - - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = data === "true" ? true : - data === "false" ? false : - data === "null" ? null : - jQuery.isNumeric( data ) ? +data : - rbrace.test( data ) ? jQuery.parseJSON( data ) : - data; - } catch( e ) {} - - // Make sure we set the data so it isn't changed later - jQuery.data( elem, key, data ); - - } else { - data = undefined; - } - } - - return data; -} - -// checks a cache object for emptiness -function isEmptyDataObject( obj ) { - for ( var name in obj ) { - - // if the public data object is empty, the private is still empty - if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { - continue; - } - if ( name !== "toJSON" ) { - return false; - } - } - - return true; -} - - - - -function handleQueueMarkDefer( elem, type, src ) { - var deferDataKey = type + "defer", - queueDataKey = type + "queue", - markDataKey = type + "mark", - defer = jQuery._data( elem, deferDataKey ); - if ( defer && - ( src === "queue" || !jQuery._data(elem, queueDataKey) ) && - ( src === "mark" || !jQuery._data(elem, markDataKey) ) ) { - // Give room for hard-coded callbacks to fire first - // and eventually mark/queue something else on the element - setTimeout( function() { - if ( !jQuery._data( elem, queueDataKey ) && - !jQuery._data( elem, markDataKey ) ) { - jQuery.removeData( elem, deferDataKey, true ); - defer.fire(); - } - }, 0 ); - } -} - -jQuery.extend({ - - _mark: function( elem, type ) { - if ( elem ) { - type = ( type || "fx" ) + "mark"; - jQuery._data( elem, type, (jQuery._data( elem, type ) || 0) + 1 ); - } - }, - - _unmark: function( force, elem, type ) { - if ( force !== true ) { - type = elem; - elem = force; - force = false; - } - if ( elem ) { - type = type || "fx"; - var key = type + "mark", - count = force ? 0 : ( (jQuery._data( elem, key ) || 1) - 1 ); - if ( count ) { - jQuery._data( elem, key, count ); - } else { - jQuery.removeData( elem, key, true ); - handleQueueMarkDefer( elem, type, "mark" ); - } - } - }, - - queue: function( elem, type, data ) { - var q; - if ( elem ) { - type = ( type || "fx" ) + "queue"; - q = jQuery._data( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !q || jQuery.isArray(data) ) { - q = jQuery._data( elem, type, jQuery.makeArray(data) ); - } else { - q.push( data ); - } - } - return q || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - fn = queue.shift(), - hooks = {}; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - } - - if ( fn ) { - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - jQuery._data( elem, type + ".run", hooks ); - fn.call( elem, function() { - jQuery.dequeue( elem, type ); - }, hooks ); - } - - if ( !queue.length ) { - jQuery.removeData( elem, type + "queue " + type + ".run", true ); - handleQueueMarkDefer( elem, type, "queue" ); - } - } -}); - -jQuery.fn.extend({ - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[0], type ); - } - - return data === undefined ? - this : - this.each(function() { - var queue = jQuery.queue( this, type, data ); - - if ( type === "fx" && queue[0] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - }); - }, - dequeue: function( type ) { - return this.each(function() { - jQuery.dequeue( this, type ); - }); - }, - // Based off of the plugin by Clint Helfers, with permission. - // http://blindsignals.com/index.php/2009/07/jquery-delay/ - delay: function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = setTimeout( next, time ); - hooks.stop = function() { - clearTimeout( timeout ); - }; - }); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, object ) { - if ( typeof type !== "string" ) { - object = type; - type = undefined; - } - type = type || "fx"; - var defer = jQuery.Deferred(), - elements = this, - i = elements.length, - count = 1, - deferDataKey = type + "defer", - queueDataKey = type + "queue", - markDataKey = type + "mark", - tmp; - function resolve() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - } - while( i-- ) { - if (( tmp = jQuery.data( elements[ i ], deferDataKey, undefined, true ) || - ( jQuery.data( elements[ i ], queueDataKey, undefined, true ) || - jQuery.data( elements[ i ], markDataKey, undefined, true ) ) && - jQuery.data( elements[ i ], deferDataKey, jQuery.Callbacks( "once memory" ), true ) )) { - count++; - tmp.add( resolve ); - } - } - resolve(); - return defer.promise( object ); - } -}); - - - - -var rclass = /[\n\t\r]/g, - rspace = /\s+/, - rreturn = /\r/g, - rtype = /^(?:button|input)$/i, - rfocusable = /^(?:button|input|object|select|textarea)$/i, - rclickable = /^a(?:rea)?$/i, - rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i, - getSetAttribute = jQuery.support.getSetAttribute, - nodeHook, boolHook, fixSpecified; - -jQuery.fn.extend({ - attr: function( name, value ) { - return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each(function() { - jQuery.removeAttr( this, name ); - }); - }, - - prop: function( name, value ) { - return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - name = jQuery.propFix[ name ] || name; - return this.each(function() { - // try/catch handles cases where IE balks (such as removing a property on window) - try { - this[ name ] = undefined; - delete this[ name ]; - } catch( e ) {} - }); - }, - - addClass: function( value ) { - var classNames, i, l, elem, - setClass, c, cl; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( j ) { - jQuery( this ).addClass( value.call(this, j, this.className) ); - }); - } - - if ( value && typeof value === "string" ) { - classNames = value.split( rspace ); - - for ( i = 0, l = this.length; i < l; i++ ) { - elem = this[ i ]; - - if ( elem.nodeType === 1 ) { - if ( !elem.className && classNames.length === 1 ) { - elem.className = value; - - } else { - setClass = " " + elem.className + " "; - - for ( c = 0, cl = classNames.length; c < cl; c++ ) { - if ( !~setClass.indexOf( " " + classNames[ c ] + " " ) ) { - setClass += classNames[ c ] + " "; - } - } - elem.className = jQuery.trim( setClass ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classNames, i, l, elem, className, c, cl; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( j ) { - jQuery( this ).removeClass( value.call(this, j, this.className) ); - }); - } - - if ( (value && typeof value === "string") || value === undefined ) { - classNames = ( value || "" ).split( rspace ); - - for ( i = 0, l = this.length; i < l; i++ ) { - elem = this[ i ]; - - if ( elem.nodeType === 1 && elem.className ) { - if ( value ) { - className = (" " + elem.className + " ").replace( rclass, " " ); - for ( c = 0, cl = classNames.length; c < cl; c++ ) { - className = className.replace(" " + classNames[ c ] + " ", " "); - } - elem.className = jQuery.trim( className ); - - } else { - elem.className = ""; - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isBool = typeof stateVal === "boolean"; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( i ) { - jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); - }); - } - - return this.each(function() { - if ( type === "string" ) { - // toggle individual class names - var className, - i = 0, - self = jQuery( this ), - state = stateVal, - classNames = value.split( rspace ); - - while ( (className = classNames[ i++ ]) ) { - // check each className given, space seperated list - state = isBool ? state : !self.hasClass( className ); - self[ state ? "addClass" : "removeClass" ]( className ); - } - - } else if ( type === "undefined" || type === "boolean" ) { - if ( this.className ) { - // store className if set - jQuery._data( this, "__className__", this.className ); - } - - // toggle whole className - this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; - } - }); - }, - - hasClass: function( selector ) { - var className = " " + selector + " ", - i = 0, - l = this.length; - for ( ; i < l; i++ ) { - if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) { - return true; - } - } - - return false; - }, - - val: function( value ) { - var hooks, ret, isFunction, - elem = this[0]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { - return ret; - } - - ret = elem.value; - - return typeof ret === "string" ? - // handle most common string cases - ret.replace(rreturn, "") : - // handle cases where value is null/undef or number - ret == null ? "" : ret; - } - - return; - } - - isFunction = jQuery.isFunction( value ); - - return this.each(function( i ) { - var self = jQuery(this), val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( isFunction ) { - val = value.call( this, i, self.val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - } else if ( typeof val === "number" ) { - val += ""; - } else if ( jQuery.isArray( val ) ) { - val = jQuery.map(val, function ( value ) { - return value == null ? "" : value + ""; - }); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - }); - } -}); - -jQuery.extend({ - valHooks: { - option: { - get: function( elem ) { - // attributes.value is undefined in Blackberry 4.7 but - // uses .value. See #6932 - var val = elem.attributes.value; - return !val || val.specified ? elem.value : elem.text; - } - }, - select: { - get: function( elem ) { - var value, i, max, option, - index = elem.selectedIndex, - values = [], - options = elem.options, - one = elem.type === "select-one"; - - // Nothing was selected - if ( index < 0 ) { - return null; - } - - // Loop through all the selected options - i = one ? index : 0; - max = one ? index + 1 : options.length; - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Don't return options that are disabled or in a disabled optgroup - if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) && - (!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - // Fixes Bug #2551 -- select.val() broken in IE after form.reset() - if ( one && !values.length && options.length ) { - return jQuery( options[ index ] ).val(); - } - - return values; - }, - - set: function( elem, value ) { - var values = jQuery.makeArray( value ); - - jQuery(elem).find("option").each(function() { - this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; - }); - - if ( !values.length ) { - elem.selectedIndex = -1; - } - return values; - } - } - }, - - attrFn: { - val: true, - css: true, - html: true, - text: true, - data: true, - width: true, - height: true, - offset: true - }, - - attr: function( elem, name, value, pass ) { - var ret, hooks, notxml, - nType = elem.nodeType; - - // don't get/set attributes on text, comment and attribute nodes - if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( pass && name in jQuery.attrFn ) { - return jQuery( elem )[ name ]( value ); - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); - - // All attributes are lowercase - // Grab necessary hook if one is defined - if ( notxml ) { - name = name.toLowerCase(); - hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); - } - - if ( value !== undefined ) { - - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - - } else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) { - return ret; - - } else { - elem.setAttribute( name, "" + value ); - return value; - } - - } else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) { - return ret; - - } else { - - ret = elem.getAttribute( name ); - - // Non-existent attributes return null, we normalize to undefined - return ret === null ? - undefined : - ret; - } - }, - - removeAttr: function( elem, value ) { - var propName, attrNames, name, l, isBool, - i = 0; - - if ( value && elem.nodeType === 1 ) { - attrNames = value.toLowerCase().split( rspace ); - l = attrNames.length; - - for ( ; i < l; i++ ) { - name = attrNames[ i ]; - - if ( name ) { - propName = jQuery.propFix[ name ] || name; - isBool = rboolean.test( name ); - - // See #9699 for explanation of this approach (setting first, then removal) - // Do not do this for boolean attributes (see #10870) - if ( !isBool ) { - jQuery.attr( elem, name, "" ); - } - elem.removeAttribute( getSetAttribute ? name : propName ); - - // Set corresponding property to false for boolean attributes - if ( isBool && propName in elem ) { - elem[ propName ] = false; - } - } - } - } - }, - - attrHooks: { - type: { - set: function( elem, value ) { - // We can't allow the type property to be changed (since it causes problems in IE) - if ( rtype.test( elem.nodeName ) && elem.parentNode ) { - jQuery.error( "type property can't be changed" ); - } else if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { - // Setting the type on a radio button after the value resets the value in IE6-9 - // Reset value to it's default in case type is set after value - // This is for element creation - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - }, - // Use the value property for back compat - // Use the nodeHook for button elements in IE6/7 (#1954) - value: { - get: function( elem, name ) { - if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { - return nodeHook.get( elem, name ); - } - return name in elem ? - elem.value : - null; - }, - set: function( elem, value, name ) { - if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { - return nodeHook.set( elem, value, name ); - } - // Does not return so that setAttribute is also used - elem.value = value; - } - } - }, - - propFix: { - tabindex: "tabIndex", - readonly: "readOnly", - "for": "htmlFor", - "class": "className", - maxlength: "maxLength", - cellspacing: "cellSpacing", - cellpadding: "cellPadding", - rowspan: "rowSpan", - colspan: "colSpan", - usemap: "useMap", - frameborder: "frameBorder", - contenteditable: "contentEditable" - }, - - prop: function( elem, name, value ) { - var ret, hooks, notxml, - nType = elem.nodeType; - - // don't get/set properties on text, comment and attribute nodes - if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); - - if ( notxml ) { - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { - return ret; - - } else { - return ( elem[ name ] = value ); - } - - } else { - if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { - return ret; - - } else { - return elem[ name ]; - } - } - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set - // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - var attributeNode = elem.getAttributeNode("tabindex"); - - return attributeNode && attributeNode.specified ? - parseInt( attributeNode.value, 10 ) : - rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? - 0 : - undefined; - } - } - } -}); - -// Add the tabIndex propHook to attrHooks for back-compat (different case is intentional) -jQuery.attrHooks.tabindex = jQuery.propHooks.tabIndex; - -// Hook for boolean attributes -boolHook = { - get: function( elem, name ) { - // Align boolean attributes with corresponding properties - // Fall back to attribute presence where some booleans are not supported - var attrNode, - property = jQuery.prop( elem, name ); - return property === true || typeof property !== "boolean" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ? - name.toLowerCase() : - undefined; - }, - set: function( elem, value, name ) { - var propName; - if ( value === false ) { - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - // value is true since we know at this point it's type boolean and not false - // Set boolean attributes to the same name and set the DOM property - propName = jQuery.propFix[ name ] || name; - if ( propName in elem ) { - // Only set the IDL specifically if it already exists on the element - elem[ propName ] = true; - } - - elem.setAttribute( name, name.toLowerCase() ); - } - return name; - } -}; - -// IE6/7 do not support getting/setting some attributes with get/setAttribute -if ( !getSetAttribute ) { - - fixSpecified = { - name: true, - id: true, - coords: true - }; - - // Use this for any attribute in IE6/7 - // This fixes almost every IE6/7 issue - nodeHook = jQuery.valHooks.button = { - get: function( elem, name ) { - var ret; - ret = elem.getAttributeNode( name ); - return ret && ( fixSpecified[ name ] ? ret.nodeValue !== "" : ret.specified ) ? - ret.nodeValue : - undefined; - }, - set: function( elem, value, name ) { - // Set the existing or create a new attribute node - var ret = elem.getAttributeNode( name ); - if ( !ret ) { - ret = document.createAttribute( name ); - elem.setAttributeNode( ret ); - } - return ( ret.nodeValue = value + "" ); - } - }; - - // Apply the nodeHook to tabindex - jQuery.attrHooks.tabindex.set = nodeHook.set; - - // Set width and height to auto instead of 0 on empty string( Bug #8150 ) - // This is for removals - jQuery.each([ "width", "height" ], function( i, name ) { - jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { - set: function( elem, value ) { - if ( value === "" ) { - elem.setAttribute( name, "auto" ); - return value; - } - } - }); - }); - - // Set contenteditable to false on removals(#10429) - // Setting to empty string throws an error as an invalid value - jQuery.attrHooks.contenteditable = { - get: nodeHook.get, - set: function( elem, value, name ) { - if ( value === "" ) { - value = "false"; - } - nodeHook.set( elem, value, name ); - } - }; -} - - -// Some attributes require a special call on IE -if ( !jQuery.support.hrefNormalized ) { - jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { - jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { - get: function( elem ) { - var ret = elem.getAttribute( name, 2 ); - return ret === null ? undefined : ret; - } - }); - }); -} - -if ( !jQuery.support.style ) { - jQuery.attrHooks.style = { - get: function( elem ) { - // Return undefined in the case of empty string - // Normalize to lowercase since IE uppercases css property names - return elem.style.cssText.toLowerCase() || undefined; - }, - set: function( elem, value ) { - return ( elem.style.cssText = "" + value ); - } - }; -} - -// Safari mis-reports the default selected property of an option -// Accessing the parent's selectedIndex property fixes it -if ( !jQuery.support.optSelected ) { - jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { - get: function( elem ) { - var parent = elem.parentNode; - - if ( parent ) { - parent.selectedIndex; - - // Make sure that it also works with optgroups, see #5701 - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - return null; - } - }); -} - -// IE6/7 call enctype encoding -if ( !jQuery.support.enctype ) { - jQuery.propFix.enctype = "encoding"; -} - -// Radios and checkboxes getter/setter -if ( !jQuery.support.checkOn ) { - jQuery.each([ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - get: function( elem ) { - // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified - return elem.getAttribute("value") === null ? "on" : elem.value; - } - }; - }); -} -jQuery.each([ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { - set: function( elem, value ) { - if ( jQuery.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); - } - } - }); -}); - - - - -var rformElems = /^(?:textarea|input|select)$/i, - rtypenamespace = /^([^\.]*)?(?:\.(.+))?$/, - rhoverHack = /(?:^|\s)hover(\.\S+)?\b/, - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|contextmenu)|click/, - rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - rquickIs = /^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/, - quickParse = function( selector ) { - var quick = rquickIs.exec( selector ); - if ( quick ) { - // 0 1 2 3 - // [ _, tag, id, class ] - quick[1] = ( quick[1] || "" ).toLowerCase(); - quick[3] = quick[3] && new RegExp( "(?:^|\\s)" + quick[3] + "(?:\\s|$)" ); - } - return quick; - }, - quickIs = function( elem, m ) { - var attrs = elem.attributes || {}; - return ( - (!m[1] || elem.nodeName.toLowerCase() === m[1]) && - (!m[2] || (attrs.id || {}).value === m[2]) && - (!m[3] || m[3].test( (attrs[ "class" ] || {}).value )) - ); - }, - hoverHack = function( events ) { - return jQuery.event.special.hover ? events : events.replace( rhoverHack, "mouseenter$1 mouseleave$1" ); - }; - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - add: function( elem, types, handler, data, selector ) { - - var elemData, eventHandle, events, - t, tns, type, namespaces, handleObj, - handleObjIn, quick, handlers, special; - - // Don't attach events to noData or text/comment nodes (allow plain objects tho) - if ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - events = elemData.events; - if ( !events ) { - elemData.events = events = {}; - } - eventHandle = elemData.handle; - if ( !eventHandle ) { - elemData.handle = eventHandle = function( e ) { - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && (!e || jQuery.event.triggered !== e.type) ? - jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : - undefined; - }; - // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events - eventHandle.elem = elem; - } - - // Handle multiple events separated by a space - // jQuery(...).bind("mouseover mouseout", fn); - types = jQuery.trim( hoverHack(types) ).split( " " ); - for ( t = 0; t < types.length; t++ ) { - - tns = rtypenamespace.exec( types[t] ) || []; - type = tns[1]; - namespaces = ( tns[2] || "" ).split( "." ).sort(); - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend({ - type: type, - origType: tns[1], - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - quick: selector && quickParse( selector ), - namespace: namespaces.join(".") - }, handleObjIn ); - - // Init the event handler queue if we're the first - handlers = events[ type ]; - if ( !handlers ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener/attachEvent if the special events handler returns false - if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - // Bind the global event handler to the element - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle, false ); - - } else if ( elem.attachEvent ) { - elem.attachEvent( "on" + type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - // Nullify elem to prevent memory leaks in IE - elem = null; - }, - - global: {}, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var elemData = jQuery.hasData( elem ) && jQuery._data( elem ), - t, tns, type, origType, namespaces, origCount, - j, events, special, handle, eventType, handleObj; - - if ( !elemData || !(events = elemData.events) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = jQuery.trim( hoverHack( types || "" ) ).split(" "); - for ( t = 0; t < types.length; t++ ) { - tns = rtypenamespace.exec( types[t] ) || []; - type = origType = tns[1]; - namespaces = tns[2]; - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector? special.delegateType : special.bindType ) || type; - eventType = events[ type ] || []; - origCount = eventType.length; - namespaces = namespaces ? new RegExp("(^|\\.)" + namespaces.split(".").sort().join("\\.(?:.*\\.)?") + "(\\.|$)") : null; - - // Remove matching events - for ( j = 0; j < eventType.length; j++ ) { - handleObj = eventType[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !namespaces || namespaces.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { - eventType.splice( j--, 1 ); - - if ( handleObj.selector ) { - eventType.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( eventType.length === 0 && origCount !== eventType.length ) { - if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - handle = elemData.handle; - if ( handle ) { - handle.elem = null; - } - - // removeData also checks for emptiness and clears the expando if empty - // so use it instead of delete - jQuery.removeData( elem, [ "events", "handle" ], true ); - } - }, - - // Events that are safe to short-circuit if no handlers are attached. - // Native DOM events should not be added, they may have inline handlers. - customEvent: { - "getData": true, - "setData": true, - "changeData": true - }, - - trigger: function( event, data, elem, onlyHandlers ) { - // Don't do events on text and comment nodes - if ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) { - return; - } - - // Event object or event type - var type = event.type || event, - namespaces = [], - cache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType; - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "!" ) >= 0 ) { - // Exclusive events trigger only for the exact event (no namespaces) - type = type.slice(0, -1); - exclusive = true; - } - - if ( type.indexOf( "." ) >= 0 ) { - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split("."); - type = namespaces.shift(); - namespaces.sort(); - } - - if ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) { - // No jQuery handlers for this event type, and it can't have inline handlers - return; - } - - // Caller can pass in an Event, Object, or just an event type string - event = typeof event === "object" ? - // jQuery.Event object - event[ jQuery.expando ] ? event : - // Object literal - new jQuery.Event( type, event ) : - // Just the event type (string) - new jQuery.Event( type ); - - event.type = type; - event.isTrigger = true; - event.exclusive = exclusive; - event.namespace = namespaces.join( "." ); - event.namespace_re = event.namespace? new RegExp("(^|\\.)" + namespaces.join("\\.(?:.*\\.)?") + "(\\.|$)") : null; - ontype = type.indexOf( ":" ) < 0 ? "on" + type : ""; - - // Handle a global trigger - if ( !elem ) { - - // TODO: Stop taunting the data cache; remove global events and always attach to document - cache = jQuery.cache; - for ( i in cache ) { - if ( cache[ i ].events && cache[ i ].events[ type ] ) { - jQuery.event.trigger( event, data, cache[ i ].handle.elem, true ); - } - } - return; - } - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data != null ? jQuery.makeArray( data ) : []; - data.unshift( event ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - eventPath = [[ elem, special.bindType || type ]]; - if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - cur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode; - old = null; - for ( ; cur; cur = cur.parentNode ) { - eventPath.push([ cur, bubbleType ]); - old = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( old && old === elem.ownerDocument ) { - eventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]); - } - } - - // Fire handlers on the event path - for ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) { - - cur = eventPath[i][0]; - event.type = eventPath[i][1]; - - handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - // Note that this is a bare JS function and not a jQuery handler - handle = ontype && cur[ ontype ]; - if ( handle && jQuery.acceptData( cur ) && handle.apply( cur, data ) === false ) { - event.preventDefault(); - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && - !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name name as the event. - // Can't use an .isFunction() check here because IE6/7 fails that test. - // Don't do default actions on window, that's where global variables be (#6170) - // IE<9 dies on focus/blur to hidden element (#1486) - if ( ontype && elem[ type ] && ((type !== "focus" && type !== "blur") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - old = elem[ ontype ]; - - if ( old ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - elem[ type ](); - jQuery.event.triggered = undefined; - - if ( old ) { - elem[ ontype ] = old; - } - } - } - } - - return event.result; - }, - - dispatch: function( event ) { - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( event || window.event ); - - var handlers = ( (jQuery._data( this, "events" ) || {} )[ event.type ] || []), - delegateCount = handlers.delegateCount, - args = [].slice.call( arguments, 0 ), - run_all = !event.exclusive && !event.namespace, - special = jQuery.event.special[ event.type ] || {}, - handlerQueue = [], - i, j, cur, jqcur, ret, selMatch, matched, matches, handleObj, sel, related; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[0] = event; - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers that should run if there are delegated events - // Avoid non-left-click bubbling in Firefox (#3861) - if ( delegateCount && !(event.button && event.type === "click") ) { - - // Pregenerate a single jQuery object for reuse with .is() - jqcur = jQuery(this); - jqcur.context = this.ownerDocument || this; - - for ( cur = event.target; cur != this; cur = cur.parentNode || this ) { - - // Don't process events on disabled elements (#6911, #8165) - if ( cur.disabled !== true ) { - selMatch = {}; - matches = []; - jqcur[0] = cur; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - sel = handleObj.selector; - - if ( selMatch[ sel ] === undefined ) { - selMatch[ sel ] = ( - handleObj.quick ? quickIs( cur, handleObj.quick ) : jqcur.is( sel ) - ); - } - if ( selMatch[ sel ] ) { - matches.push( handleObj ); - } - } - if ( matches.length ) { - handlerQueue.push({ elem: cur, matches: matches }); - } - } - } - } - - // Add the remaining (directly-bound) handlers - if ( handlers.length > delegateCount ) { - handlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) }); - } - - // Run delegates first; they may want to stop propagation beneath us - for ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) { - matched = handlerQueue[ i ]; - event.currentTarget = matched.elem; - - for ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) { - handleObj = matched.matches[ j ]; - - // Triggered event must either 1) be non-exclusive and have no namespace, or - // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). - if ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) { - - event.data = handleObj.data; - event.handleObj = handleObj; - - ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) - .apply( matched.elem, args ); - - if ( ret !== undefined ) { - event.result = ret; - if ( ret === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - // Includes some event props shared by KeyEvent and MouseEvent - // *** attrChange attrName relatedNode srcElement are not normalized, non-W3C, deprecated, will be removed in 1.8 *** - props: "attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), - - fixHooks: {}, - - keyHooks: { - props: "char charCode key keyCode".split(" "), - filter: function( event, original ) { - - // Add which for key events - if ( event.which == null ) { - event.which = original.charCode != null ? original.charCode : original.keyCode; - } - - return event; - } - }, - - mouseHooks: { - props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), - filter: function( event, original ) { - var eventDoc, doc, body, - button = original.button, - fromElement = original.fromElement; - - // Calculate pageX/Y if missing and clientX/Y available - if ( event.pageX == null && original.clientX != null ) { - eventDoc = event.target.ownerDocument || document; - doc = eventDoc.documentElement; - body = eventDoc.body; - - event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); - event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); - } - - // Add relatedTarget, if necessary - if ( !event.relatedTarget && fromElement ) { - event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - // Note: button is not normalized, so don't use it - if ( !event.which && button !== undefined ) { - event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); - } - - return event; - } - }, - - fix: function( event ) { - if ( event[ jQuery.expando ] ) { - return event; - } - - // Create a writable copy of the event object and normalize some properties - var i, prop, - originalEvent = event, - fixHook = jQuery.event.fixHooks[ event.type ] || {}, - copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; - - event = jQuery.Event( originalEvent ); - - for ( i = copy.length; i; ) { - prop = copy[ --i ]; - event[ prop ] = originalEvent[ prop ]; - } - - // Fix target property, if necessary (#1925, IE 6/7/8 & Safari2) - if ( !event.target ) { - event.target = originalEvent.srcElement || document; - } - - // Target should not be a text node (#504, Safari) - if ( event.target.nodeType === 3 ) { - event.target = event.target.parentNode; - } - - // For mouse/key events; add metaKey if it's not there (#3368, IE6/7/8) - if ( event.metaKey === undefined ) { - event.metaKey = event.ctrlKey; - } - - return fixHook.filter? fixHook.filter( event, originalEvent ) : event; - }, - - special: { - ready: { - // Make sure the ready event is setup - setup: jQuery.bindReady - }, - - load: { - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - - focus: { - delegateType: "focusin" - }, - blur: { - delegateType: "focusout" - }, - - beforeunload: { - setup: function( data, namespaces, eventHandle ) { - // We only want to do this special case on windows - if ( jQuery.isWindow( this ) ) { - this.onbeforeunload = eventHandle; - } - }, - - teardown: function( namespaces, eventHandle ) { - if ( this.onbeforeunload === eventHandle ) { - this.onbeforeunload = null; - } - } - } - }, - - simulate: function( type, elem, event, bubble ) { - // Piggyback on a donor event to simulate a different one. - // Fake originalEvent to avoid donor's stopPropagation, but if the - // simulated event prevents default then we do the same on the donor. - var e = jQuery.extend( - new jQuery.Event(), - event, - { type: type, - isSimulated: true, - originalEvent: {} - } - ); - if ( bubble ) { - jQuery.event.trigger( e, null, elem ); - } else { - jQuery.event.dispatch.call( elem, e ); - } - if ( e.isDefaultPrevented() ) { - event.preventDefault(); - } - } -}; - -// Some plugins are using, but it's undocumented/deprecated and will be removed. -// The 1.7 special event interface should provide all the hooks needed now. -jQuery.event.handle = jQuery.event.dispatch; - -jQuery.removeEvent = document.removeEventListener ? - function( elem, type, handle ) { - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle, false ); - } - } : - function( elem, type, handle ) { - if ( elem.detachEvent ) { - elem.detachEvent( "on" + type, handle ); - } - }; - -jQuery.Event = function( src, props ) { - // Allow instantiation without the 'new' keyword - if ( !(this instanceof jQuery.Event) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || - src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || jQuery.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -function returnFalse() { - return false; -} -function returnTrue() { - return true; -} - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - preventDefault: function() { - this.isDefaultPrevented = returnTrue; - - var e = this.originalEvent; - if ( !e ) { - return; - } - - // if preventDefault exists run it on the original event - if ( e.preventDefault ) { - e.preventDefault(); - - // otherwise set the returnValue property of the original event to false (IE) - } else { - e.returnValue = false; - } - }, - stopPropagation: function() { - this.isPropagationStopped = returnTrue; - - var e = this.originalEvent; - if ( !e ) { - return; - } - // if stopPropagation exists run it on the original event - if ( e.stopPropagation ) { - e.stopPropagation(); - } - // otherwise set the cancelBubble property of the original event to true (IE) - e.cancelBubble = true; - }, - stopImmediatePropagation: function() { - this.isImmediatePropagationStopped = returnTrue; - this.stopPropagation(); - }, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse -}; - -// Create mouseenter/leave events using mouseover/out and event-time checks -jQuery.each({ - mouseenter: "mouseover", - mouseleave: "mouseout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var target = this, - related = event.relatedTarget, - handleObj = event.handleObj, - selector = handleObj.selector, - ret; - - // For mousenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || (related !== target && !jQuery.contains( target, related )) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -}); - -// IE submit delegation -if ( !jQuery.support.submitBubbles ) { - - jQuery.event.special.submit = { - setup: function() { - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Lazy-add a submit handler when a descendant form may potentially be submitted - jQuery.event.add( this, "click._submit keypress._submit", function( e ) { - // Node name check avoids a VML-related crash in IE (#9807) - var elem = e.target, - form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; - if ( form && !form._submit_attached ) { - jQuery.event.add( form, "submit._submit", function( event ) { - event._submit_bubble = true; - }); - form._submit_attached = true; - } - }); - // return undefined since we don't need an event listener - }, - - postDispatch: function( event ) { - // If form was submitted by the user, bubble the event up the tree - if ( event._submit_bubble ) { - delete event._submit_bubble; - if ( this.parentNode && !event.isTrigger ) { - jQuery.event.simulate( "submit", this.parentNode, event, true ); - } - } - }, - - teardown: function() { - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Remove delegated handlers; cleanData eventually reaps submit handlers attached above - jQuery.event.remove( this, "._submit" ); - } - }; -} - -// IE change delegation and checkbox/radio fix -if ( !jQuery.support.changeBubbles ) { - - jQuery.event.special.change = { - - setup: function() { - - if ( rformElems.test( this.nodeName ) ) { - // IE doesn't fire change on a check/radio until blur; trigger it on click - // after a propertychange. Eat the blur-change in special.change.handle. - // This still fires onchange a second time for check/radio after blur. - if ( this.type === "checkbox" || this.type === "radio" ) { - jQuery.event.add( this, "propertychange._change", function( event ) { - if ( event.originalEvent.propertyName === "checked" ) { - this._just_changed = true; - } - }); - jQuery.event.add( this, "click._change", function( event ) { - if ( this._just_changed && !event.isTrigger ) { - this._just_changed = false; - jQuery.event.simulate( "change", this, event, true ); - } - }); - } - return false; - } - // Delegated event; lazy-add a change handler on descendant inputs - jQuery.event.add( this, "beforeactivate._change", function( e ) { - var elem = e.target; - - if ( rformElems.test( elem.nodeName ) && !elem._change_attached ) { - jQuery.event.add( elem, "change._change", function( event ) { - if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { - jQuery.event.simulate( "change", this.parentNode, event, true ); - } - }); - elem._change_attached = true; - } - }); - }, - - handle: function( event ) { - var elem = event.target; - - // Swallow native change events from checkbox/radio, we already triggered them above - if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { - return event.handleObj.handler.apply( this, arguments ); - } - }, - - teardown: function() { - jQuery.event.remove( this, "._change" ); - - return rformElems.test( this.nodeName ); - } - }; -} - -// Create "bubbling" focus and blur events -if ( !jQuery.support.focusinBubbles ) { - jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler while someone wants focusin/focusout - var attaches = 0, - handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - if ( attaches++ === 0 ) { - document.addEventListener( orig, handler, true ); - } - }, - teardown: function() { - if ( --attaches === 0 ) { - document.removeEventListener( orig, handler, true ); - } - } - }; - }); -} - -jQuery.fn.extend({ - - on: function( types, selector, data, fn, /*INTERNAL*/ one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { // && selector != null - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - this.on( type, selector, data, types[ type ], one ); - } - return this; - } - - if ( data == null && fn == null ) { - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return this; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return this.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - }); - }, - one: function( types, selector, data, fn ) { - return this.on( types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - if ( types && types.preventDefault && types.handleObj ) { - // ( event ) dispatched jQuery.Event - var handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - // ( types-object [, selector] ) - for ( var type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each(function() { - jQuery.event.remove( this, types, fn, selector ); - }); - }, - - bind: function( types, data, fn ) { - return this.on( types, null, data, fn ); - }, - unbind: function( types, fn ) { - return this.off( types, null, fn ); - }, - - live: function( types, data, fn ) { - jQuery( this.context ).on( types, this.selector, data, fn ); - return this; - }, - die: function( types, fn ) { - jQuery( this.context ).off( types, this.selector || "**", fn ); - return this; - }, - - delegate: function( selector, types, data, fn ) { - return this.on( types, selector, data, fn ); - }, - undelegate: function( selector, types, fn ) { - // ( namespace ) or ( selector, types [, fn] ) - return arguments.length == 1? this.off( selector, "**" ) : this.off( types, selector, fn ); - }, - - trigger: function( type, data ) { - return this.each(function() { - jQuery.event.trigger( type, data, this ); - }); - }, - triggerHandler: function( type, data ) { - if ( this[0] ) { - return jQuery.event.trigger( type, data, this[0], true ); - } - }, - - toggle: function( fn ) { - // Save reference to arguments for access in closure - var args = arguments, - guid = fn.guid || jQuery.guid++, - i = 0, - toggler = function( event ) { - // Figure out which function to execute - var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; - jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); - - // Make sure that clicks stop - event.preventDefault(); - - // and execute the function - return args[ lastToggle ].apply( this, arguments ) || false; - }; - - // link all the functions, so any of them can unbind this click handler - toggler.guid = guid; - while ( i < args.length ) { - args[ i++ ].guid = guid; - } - - return this.click( toggler ); - }, - - hover: function( fnOver, fnOut ) { - return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); - } -}); - -jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + - "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + - "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { - - // Handle event binding - jQuery.fn[ name ] = function( data, fn ) { - if ( fn == null ) { - fn = data; - data = null; - } - - return arguments.length > 0 ? - this.on( name, null, data, fn ) : - this.trigger( name ); - }; - - if ( jQuery.attrFn ) { - jQuery.attrFn[ name ] = true; - } - - if ( rkeyEvent.test( name ) ) { - jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks; - } - - if ( rmouseEvent.test( name ) ) { - jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks; - } -}); - - - -/*! - * Sizzle CSS Selector Engine - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * More information: http://sizzlejs.com/ - */ -(function(){ - -var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, - expando = "sizcache" + (Math.random() + '').replace('.', ''), - done = 0, - toString = Object.prototype.toString, - hasDuplicate = false, - baseHasDuplicate = true, - rBackslash = /\\/g, - rReturn = /\r\n/g, - rNonWord = /\W/; - -// Here we check if the JavaScript engine is using some sort of -// optimization where it does not always call our comparision -// function. If that is the case, discard the hasDuplicate value. -// Thus far that includes Google Chrome. -[0, 0].sort(function() { - baseHasDuplicate = false; - return 0; -}); - -var Sizzle = function( selector, context, results, seed ) { - results = results || []; - context = context || document; - - var origContext = context; - - if ( context.nodeType !== 1 && context.nodeType !== 9 ) { - return []; - } - - if ( !selector || typeof selector !== "string" ) { - return results; - } - - var m, set, checkSet, extra, ret, cur, pop, i, - prune = true, - contextXML = Sizzle.isXML( context ), - parts = [], - soFar = selector; - - // Reset the position of the chunker regexp (start from head) - do { - chunker.exec( "" ); - m = chunker.exec( soFar ); - - if ( m ) { - soFar = m[3]; - - parts.push( m[1] ); - - if ( m[2] ) { - extra = m[3]; - break; - } - } - } while ( m ); - - if ( parts.length > 1 && origPOS.exec( selector ) ) { - - if ( parts.length === 2 && Expr.relative[ parts[0] ] ) { - set = posProcess( parts[0] + parts[1], context, seed ); - - } else { - set = Expr.relative[ parts[0] ] ? - [ context ] : - Sizzle( parts.shift(), context ); - - while ( parts.length ) { - selector = parts.shift(); - - if ( Expr.relative[ selector ] ) { - selector += parts.shift(); - } - - set = posProcess( selector, set, seed ); - } - } - - } else { - // Take a shortcut and set the context if the root selector is an ID - // (but not if it'll be faster if the inner selector is an ID) - if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML && - Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) { - - ret = Sizzle.find( parts.shift(), context, contextXML ); - context = ret.expr ? - Sizzle.filter( ret.expr, ret.set )[0] : - ret.set[0]; - } - - if ( context ) { - ret = seed ? - { expr: parts.pop(), set: makeArray(seed) } : - Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML ); - - set = ret.expr ? - Sizzle.filter( ret.expr, ret.set ) : - ret.set; - - if ( parts.length > 0 ) { - checkSet = makeArray( set ); - - } else { - prune = false; - } - - while ( parts.length ) { - cur = parts.pop(); - pop = cur; - - if ( !Expr.relative[ cur ] ) { - cur = ""; - } else { - pop = parts.pop(); - } - - if ( pop == null ) { - pop = context; - } - - Expr.relative[ cur ]( checkSet, pop, contextXML ); - } - - } else { - checkSet = parts = []; - } - } - - if ( !checkSet ) { - checkSet = set; - } - - if ( !checkSet ) { - Sizzle.error( cur || selector ); - } - - if ( toString.call(checkSet) === "[object Array]" ) { - if ( !prune ) { - results.push.apply( results, checkSet ); - - } else if ( context && context.nodeType === 1 ) { - for ( i = 0; checkSet[i] != null; i++ ) { - if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) { - results.push( set[i] ); - } - } - - } else { - for ( i = 0; checkSet[i] != null; i++ ) { - if ( checkSet[i] && checkSet[i].nodeType === 1 ) { - results.push( set[i] ); - } - } - } - - } else { - makeArray( checkSet, results ); - } - - if ( extra ) { - Sizzle( extra, origContext, results, seed ); - Sizzle.uniqueSort( results ); - } - - return results; -}; - -Sizzle.uniqueSort = function( results ) { - if ( sortOrder ) { - hasDuplicate = baseHasDuplicate; - results.sort( sortOrder ); - - if ( hasDuplicate ) { - for ( var i = 1; i < results.length; i++ ) { - if ( results[i] === results[ i - 1 ] ) { - results.splice( i--, 1 ); - } - } - } - } - - return results; -}; - -Sizzle.matches = function( expr, set ) { - return Sizzle( expr, null, null, set ); -}; - -Sizzle.matchesSelector = function( node, expr ) { - return Sizzle( expr, null, null, [node] ).length > 0; -}; - -Sizzle.find = function( expr, context, isXML ) { - var set, i, len, match, type, left; - - if ( !expr ) { - return []; - } - - for ( i = 0, len = Expr.order.length; i < len; i++ ) { - type = Expr.order[i]; - - if ( (match = Expr.leftMatch[ type ].exec( expr )) ) { - left = match[1]; - match.splice( 1, 1 ); - - if ( left.substr( left.length - 1 ) !== "\\" ) { - match[1] = (match[1] || "").replace( rBackslash, "" ); - set = Expr.find[ type ]( match, context, isXML ); - - if ( set != null ) { - expr = expr.replace( Expr.match[ type ], "" ); - break; - } - } - } - } - - if ( !set ) { - set = typeof context.getElementsByTagName !== "undefined" ? - context.getElementsByTagName( "*" ) : - []; - } - - return { set: set, expr: expr }; -}; - -Sizzle.filter = function( expr, set, inplace, not ) { - var match, anyFound, - type, found, item, filter, left, - i, pass, - old = expr, - result = [], - curLoop = set, - isXMLFilter = set && set[0] && Sizzle.isXML( set[0] ); - - while ( expr && set.length ) { - for ( type in Expr.filter ) { - if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) { - filter = Expr.filter[ type ]; - left = match[1]; - - anyFound = false; - - match.splice(1,1); - - if ( left.substr( left.length - 1 ) === "\\" ) { - continue; - } - - if ( curLoop === result ) { - result = []; - } - - if ( Expr.preFilter[ type ] ) { - match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter ); - - if ( !match ) { - anyFound = found = true; - - } else if ( match === true ) { - continue; - } - } - - if ( match ) { - for ( i = 0; (item = curLoop[i]) != null; i++ ) { - if ( item ) { - found = filter( item, match, i, curLoop ); - pass = not ^ found; - - if ( inplace && found != null ) { - if ( pass ) { - anyFound = true; - - } else { - curLoop[i] = false; - } - - } else if ( pass ) { - result.push( item ); - anyFound = true; - } - } - } - } - - if ( found !== undefined ) { - if ( !inplace ) { - curLoop = result; - } - - expr = expr.replace( Expr.match[ type ], "" ); - - if ( !anyFound ) { - return []; - } - - break; - } - } - } - - // Improper expression - if ( expr === old ) { - if ( anyFound == null ) { - Sizzle.error( expr ); - - } else { - break; - } - } - - old = expr; - } - - return curLoop; -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Utility function for retreiving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -var getText = Sizzle.getText = function( elem ) { - var i, node, - nodeType = elem.nodeType, - ret = ""; - - if ( nodeType ) { - if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - // Use textContent || innerText for elements - if ( typeof elem.textContent === 'string' ) { - return elem.textContent; - } else if ( typeof elem.innerText === 'string' ) { - // Replace IE's carriage returns - return elem.innerText.replace( rReturn, '' ); - } else { - // Traverse it's children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - } else { - - // If no nodeType, this is expected to be an array - for ( i = 0; (node = elem[i]); i++ ) { - // Do not traverse comment nodes - if ( node.nodeType !== 8 ) { - ret += getText( node ); - } - } - } - return ret; -}; - -var Expr = Sizzle.selectors = { - order: [ "ID", "NAME", "TAG" ], - - match: { - ID: /#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, - CLASS: /\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, - NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/, - ATTR: /\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/, - TAG: /^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/, - CHILD: /:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/, - POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/, - PSEUDO: /:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/ - }, - - leftMatch: {}, - - attrMap: { - "class": "className", - "for": "htmlFor" - }, - - attrHandle: { - href: function( elem ) { - return elem.getAttribute( "href" ); - }, - type: function( elem ) { - return elem.getAttribute( "type" ); - } - }, - - relative: { - "+": function(checkSet, part){ - var isPartStr = typeof part === "string", - isTag = isPartStr && !rNonWord.test( part ), - isPartStrNotTag = isPartStr && !isTag; - - if ( isTag ) { - part = part.toLowerCase(); - } - - for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) { - if ( (elem = checkSet[i]) ) { - while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {} - - checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ? - elem || false : - elem === part; - } - } - - if ( isPartStrNotTag ) { - Sizzle.filter( part, checkSet, true ); - } - }, - - ">": function( checkSet, part ) { - var elem, - isPartStr = typeof part === "string", - i = 0, - l = checkSet.length; - - if ( isPartStr && !rNonWord.test( part ) ) { - part = part.toLowerCase(); - - for ( ; i < l; i++ ) { - elem = checkSet[i]; - - if ( elem ) { - var parent = elem.parentNode; - checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false; - } - } - - } else { - for ( ; i < l; i++ ) { - elem = checkSet[i]; - - if ( elem ) { - checkSet[i] = isPartStr ? - elem.parentNode : - elem.parentNode === part; - } - } - - if ( isPartStr ) { - Sizzle.filter( part, checkSet, true ); - } - } - }, - - "": function(checkSet, part, isXML){ - var nodeCheck, - doneName = done++, - checkFn = dirCheck; - - if ( typeof part === "string" && !rNonWord.test( part ) ) { - part = part.toLowerCase(); - nodeCheck = part; - checkFn = dirNodeCheck; - } - - checkFn( "parentNode", part, doneName, checkSet, nodeCheck, isXML ); - }, - - "~": function( checkSet, part, isXML ) { - var nodeCheck, - doneName = done++, - checkFn = dirCheck; - - if ( typeof part === "string" && !rNonWord.test( part ) ) { - part = part.toLowerCase(); - nodeCheck = part; - checkFn = dirNodeCheck; - } - - checkFn( "previousSibling", part, doneName, checkSet, nodeCheck, isXML ); - } - }, - - find: { - ID: function( match, context, isXML ) { - if ( typeof context.getElementById !== "undefined" && !isXML ) { - var m = context.getElementById(match[1]); - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - return m && m.parentNode ? [m] : []; - } - }, - - NAME: function( match, context ) { - if ( typeof context.getElementsByName !== "undefined" ) { - var ret = [], - results = context.getElementsByName( match[1] ); - - for ( var i = 0, l = results.length; i < l; i++ ) { - if ( results[i].getAttribute("name") === match[1] ) { - ret.push( results[i] ); - } - } - - return ret.length === 0 ? null : ret; - } - }, - - TAG: function( match, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( match[1] ); - } - } - }, - preFilter: { - CLASS: function( match, curLoop, inplace, result, not, isXML ) { - match = " " + match[1].replace( rBackslash, "" ) + " "; - - if ( isXML ) { - return match; - } - - for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) { - if ( elem ) { - if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n\r]/g, " ").indexOf(match) >= 0) ) { - if ( !inplace ) { - result.push( elem ); - } - - } else if ( inplace ) { - curLoop[i] = false; - } - } - } - - return false; - }, - - ID: function( match ) { - return match[1].replace( rBackslash, "" ); - }, - - TAG: function( match, curLoop ) { - return match[1].replace( rBackslash, "" ).toLowerCase(); - }, - - CHILD: function( match ) { - if ( match[1] === "nth" ) { - if ( !match[2] ) { - Sizzle.error( match[0] ); - } - - match[2] = match[2].replace(/^\+|\s*/g, ''); - - // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' - var test = /(-?)(\d*)(?:n([+\-]?\d*))?/.exec( - match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" || - !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]); - - // calculate the numbers (first)n+(last) including if they are negative - match[2] = (test[1] + (test[2] || 1)) - 0; - match[3] = test[3] - 0; - } - else if ( match[2] ) { - Sizzle.error( match[0] ); - } - - // TODO: Move to normal caching system - match[0] = done++; - - return match; - }, - - ATTR: function( match, curLoop, inplace, result, not, isXML ) { - var name = match[1] = match[1].replace( rBackslash, "" ); - - if ( !isXML && Expr.attrMap[name] ) { - match[1] = Expr.attrMap[name]; - } - - // Handle if an un-quoted value was used - match[4] = ( match[4] || match[5] || "" ).replace( rBackslash, "" ); - - if ( match[2] === "~=" ) { - match[4] = " " + match[4] + " "; - } - - return match; - }, - - PSEUDO: function( match, curLoop, inplace, result, not ) { - if ( match[1] === "not" ) { - // If we're dealing with a complex expression, or a simple one - if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) { - match[3] = Sizzle(match[3], null, null, curLoop); - - } else { - var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not); - - if ( !inplace ) { - result.push.apply( result, ret ); - } - - return false; - } - - } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) { - return true; - } - - return match; - }, - - POS: function( match ) { - match.unshift( true ); - - return match; - } - }, - - filters: { - enabled: function( elem ) { - return elem.disabled === false && elem.type !== "hidden"; - }, - - disabled: function( elem ) { - return elem.disabled === true; - }, - - checked: function( elem ) { - return elem.checked === true; - }, - - selected: function( elem ) { - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - parent: function( elem ) { - return !!elem.firstChild; - }, - - empty: function( elem ) { - return !elem.firstChild; - }, - - has: function( elem, i, match ) { - return !!Sizzle( match[3], elem ).length; - }, - - header: function( elem ) { - return (/h\d/i).test( elem.nodeName ); - }, - - text: function( elem ) { - var attr = elem.getAttribute( "type" ), type = elem.type; - // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) - // use getAttribute instead to test this case - return elem.nodeName.toLowerCase() === "input" && "text" === type && ( attr === type || attr === null ); - }, - - radio: function( elem ) { - return elem.nodeName.toLowerCase() === "input" && "radio" === elem.type; - }, - - checkbox: function( elem ) { - return elem.nodeName.toLowerCase() === "input" && "checkbox" === elem.type; - }, - - file: function( elem ) { - return elem.nodeName.toLowerCase() === "input" && "file" === elem.type; - }, - - password: function( elem ) { - return elem.nodeName.toLowerCase() === "input" && "password" === elem.type; - }, - - submit: function( elem ) { - var name = elem.nodeName.toLowerCase(); - return (name === "input" || name === "button") && "submit" === elem.type; - }, - - image: function( elem ) { - return elem.nodeName.toLowerCase() === "input" && "image" === elem.type; - }, - - reset: function( elem ) { - var name = elem.nodeName.toLowerCase(); - return (name === "input" || name === "button") && "reset" === elem.type; - }, - - button: function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && "button" === elem.type || name === "button"; - }, - - input: function( elem ) { - return (/input|select|textarea|button/i).test( elem.nodeName ); - }, - - focus: function( elem ) { - return elem === elem.ownerDocument.activeElement; - } - }, - setFilters: { - first: function( elem, i ) { - return i === 0; - }, - - last: function( elem, i, match, array ) { - return i === array.length - 1; - }, - - even: function( elem, i ) { - return i % 2 === 0; - }, - - odd: function( elem, i ) { - return i % 2 === 1; - }, - - lt: function( elem, i, match ) { - return i < match[3] - 0; - }, - - gt: function( elem, i, match ) { - return i > match[3] - 0; - }, - - nth: function( elem, i, match ) { - return match[3] - 0 === i; - }, - - eq: function( elem, i, match ) { - return match[3] - 0 === i; - } - }, - filter: { - PSEUDO: function( elem, match, i, array ) { - var name = match[1], - filter = Expr.filters[ name ]; - - if ( filter ) { - return filter( elem, i, match, array ); - - } else if ( name === "contains" ) { - return (elem.textContent || elem.innerText || getText([ elem ]) || "").indexOf(match[3]) >= 0; - - } else if ( name === "not" ) { - var not = match[3]; - - for ( var j = 0, l = not.length; j < l; j++ ) { - if ( not[j] === elem ) { - return false; - } - } - - return true; - - } else { - Sizzle.error( name ); - } - }, - - CHILD: function( elem, match ) { - var first, last, - doneName, parent, cache, - count, diff, - type = match[1], - node = elem; - - switch ( type ) { - case "only": - case "first": - while ( (node = node.previousSibling) ) { - if ( node.nodeType === 1 ) { - return false; - } - } - - if ( type === "first" ) { - return true; - } - - node = elem; - - /* falls through */ - case "last": - while ( (node = node.nextSibling) ) { - if ( node.nodeType === 1 ) { - return false; - } - } - - return true; - - case "nth": - first = match[2]; - last = match[3]; - - if ( first === 1 && last === 0 ) { - return true; - } - - doneName = match[0]; - parent = elem.parentNode; - - if ( parent && (parent[ expando ] !== doneName || !elem.nodeIndex) ) { - count = 0; - - for ( node = parent.firstChild; node; node = node.nextSibling ) { - if ( node.nodeType === 1 ) { - node.nodeIndex = ++count; - } - } - - parent[ expando ] = doneName; - } - - diff = elem.nodeIndex - last; - - if ( first === 0 ) { - return diff === 0; - - } else { - return ( diff % first === 0 && diff / first >= 0 ); - } - } - }, - - ID: function( elem, match ) { - return elem.nodeType === 1 && elem.getAttribute("id") === match; - }, - - TAG: function( elem, match ) { - return (match === "*" && elem.nodeType === 1) || !!elem.nodeName && elem.nodeName.toLowerCase() === match; - }, - - CLASS: function( elem, match ) { - return (" " + (elem.className || elem.getAttribute("class")) + " ") - .indexOf( match ) > -1; - }, - - ATTR: function( elem, match ) { - var name = match[1], - result = Sizzle.attr ? - Sizzle.attr( elem, name ) : - Expr.attrHandle[ name ] ? - Expr.attrHandle[ name ]( elem ) : - elem[ name ] != null ? - elem[ name ] : - elem.getAttribute( name ), - value = result + "", - type = match[2], - check = match[4]; - - return result == null ? - type === "!=" : - !type && Sizzle.attr ? - result != null : - type === "=" ? - value === check : - type === "*=" ? - value.indexOf(check) >= 0 : - type === "~=" ? - (" " + value + " ").indexOf(check) >= 0 : - !check ? - value && result !== false : - type === "!=" ? - value !== check : - type === "^=" ? - value.indexOf(check) === 0 : - type === "$=" ? - value.substr(value.length - check.length) === check : - type === "|=" ? - value === check || value.substr(0, check.length + 1) === check + "-" : - false; - }, - - POS: function( elem, match, i, array ) { - var name = match[2], - filter = Expr.setFilters[ name ]; - - if ( filter ) { - return filter( elem, i, match, array ); - } - } - } -}; - -var origPOS = Expr.match.POS, - fescape = function(all, num){ - return "\\" + (num - 0 + 1); - }; - -for ( var type in Expr.match ) { - Expr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\[]*\])(?![^\(]*\))/.source) ); - Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, fescape) ); -} -// Expose origPOS -// "global" as in regardless of relation to brackets/parens -Expr.match.globalPOS = origPOS; - -var makeArray = function( array, results ) { - array = Array.prototype.slice.call( array, 0 ); - - if ( results ) { - results.push.apply( results, array ); - return results; - } - - return array; -}; - -// Perform a simple check to determine if the browser is capable of -// converting a NodeList to an array using builtin methods. -// Also verifies that the returned array holds DOM nodes -// (which is not the case in the Blackberry browser) -try { - Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; - -// Provide a fallback method if it does not work -} catch( e ) { - makeArray = function( array, results ) { - var i = 0, - ret = results || []; - - if ( toString.call(array) === "[object Array]" ) { - Array.prototype.push.apply( ret, array ); - - } else { - if ( typeof array.length === "number" ) { - for ( var l = array.length; i < l; i++ ) { - ret.push( array[i] ); - } - - } else { - for ( ; array[i]; i++ ) { - ret.push( array[i] ); - } - } - } - - return ret; - }; -} - -var sortOrder, siblingCheck; - -if ( document.documentElement.compareDocumentPosition ) { - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) { - return a.compareDocumentPosition ? -1 : 1; - } - - return a.compareDocumentPosition(b) & 4 ? -1 : 1; - }; - -} else { - sortOrder = function( a, b ) { - // The nodes are identical, we can exit early - if ( a === b ) { - hasDuplicate = true; - return 0; - - // Fallback to using sourceIndex (in IE) if it's available on both nodes - } else if ( a.sourceIndex && b.sourceIndex ) { - return a.sourceIndex - b.sourceIndex; - } - - var al, bl, - ap = [], - bp = [], - aup = a.parentNode, - bup = b.parentNode, - cur = aup; - - // If the nodes are siblings (or identical) we can do a quick check - if ( aup === bup ) { - return siblingCheck( a, b ); - - // If no parents were found then the nodes are disconnected - } else if ( !aup ) { - return -1; - - } else if ( !bup ) { - return 1; - } - - // Otherwise they're somewhere else in the tree so we need - // to build up a full list of the parentNodes for comparison - while ( cur ) { - ap.unshift( cur ); - cur = cur.parentNode; - } - - cur = bup; - - while ( cur ) { - bp.unshift( cur ); - cur = cur.parentNode; - } - - al = ap.length; - bl = bp.length; - - // Start walking down the tree looking for a discrepancy - for ( var i = 0; i < al && i < bl; i++ ) { - if ( ap[i] !== bp[i] ) { - return siblingCheck( ap[i], bp[i] ); - } - } - - // We ended someplace up the tree so do a sibling check - return i === al ? - siblingCheck( a, bp[i], -1 ) : - siblingCheck( ap[i], b, 1 ); - }; - - siblingCheck = function( a, b, ret ) { - if ( a === b ) { - return ret; - } - - var cur = a.nextSibling; - - while ( cur ) { - if ( cur === b ) { - return -1; - } - - cur = cur.nextSibling; - } - - return 1; - }; -} - -// Check to see if the browser returns elements by name when -// querying by getElementById (and provide a workaround) -(function(){ - // We're going to inject a fake input element with a specified name - var form = document.createElement("div"), - id = "script" + (new Date()).getTime(), - root = document.documentElement; - - form.innerHTML = "<a name='" + id + "'/>"; - - // Inject it into the root element, check its status, and remove it quickly - root.insertBefore( form, root.firstChild ); - - // The workaround has to do additional checks after a getElementById - // Which slows things down for other browsers (hence the branching) - if ( document.getElementById( id ) ) { - Expr.find.ID = function( match, context, isXML ) { - if ( typeof context.getElementById !== "undefined" && !isXML ) { - var m = context.getElementById(match[1]); - - return m ? - m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? - [m] : - undefined : - []; - } - }; - - Expr.filter.ID = function( elem, match ) { - var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); - - return elem.nodeType === 1 && node && node.nodeValue === match; - }; - } - - root.removeChild( form ); - - // release memory in IE - root = form = null; -})(); - -(function(){ - // Check to see if the browser returns only elements - // when doing getElementsByTagName("*") - - // Create a fake element - var div = document.createElement("div"); - div.appendChild( document.createComment("") ); - - // Make sure no comments are found - if ( div.getElementsByTagName("*").length > 0 ) { - Expr.find.TAG = function( match, context ) { - var results = context.getElementsByTagName( match[1] ); - - // Filter out possible comments - if ( match[1] === "*" ) { - var tmp = []; - - for ( var i = 0; results[i]; i++ ) { - if ( results[i].nodeType === 1 ) { - tmp.push( results[i] ); - } - } - - results = tmp; - } - - return results; - }; - } - - // Check to see if an attribute returns normalized href attributes - div.innerHTML = "<a href='#'></a>"; - - if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && - div.firstChild.getAttribute("href") !== "#" ) { - - Expr.attrHandle.href = function( elem ) { - return elem.getAttribute( "href", 2 ); - }; - } - - // release memory in IE - div = null; -})(); - -if ( document.querySelectorAll ) { - (function(){ - var oldSizzle = Sizzle, - div = document.createElement("div"), - id = "__sizzle__"; - - div.innerHTML = "<p class='TEST'></p>"; - - // Safari can't handle uppercase or unicode characters when - // in quirks mode. - if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) { - return; - } - - Sizzle = function( query, context, extra, seed ) { - context = context || document; - - // Only use querySelectorAll on non-XML documents - // (ID selectors don't work in non-HTML documents) - if ( !seed && !Sizzle.isXML(context) ) { - // See if we find a selector to speed up - var match = /^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec( query ); - - if ( match && (context.nodeType === 1 || context.nodeType === 9) ) { - // Speed-up: Sizzle("TAG") - if ( match[1] ) { - return makeArray( context.getElementsByTagName( query ), extra ); - - // Speed-up: Sizzle(".CLASS") - } else if ( match[2] && Expr.find.CLASS && context.getElementsByClassName ) { - return makeArray( context.getElementsByClassName( match[2] ), extra ); - } - } - - if ( context.nodeType === 9 ) { - // Speed-up: Sizzle("body") - // The body element only exists once, optimize finding it - if ( query === "body" && context.body ) { - return makeArray( [ context.body ], extra ); - - // Speed-up: Sizzle("#ID") - } else if ( match && match[3] ) { - var elem = context.getElementById( match[3] ); - - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id === match[3] ) { - return makeArray( [ elem ], extra ); - } - - } else { - return makeArray( [], extra ); - } - } - - try { - return makeArray( context.querySelectorAll(query), extra ); - } catch(qsaError) {} - - // qSA works strangely on Element-rooted queries - // We can work around this by specifying an extra ID on the root - // and working up from there (Thanks to Andrew Dupont for the technique) - // IE 8 doesn't work on object elements - } else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { - var oldContext = context, - old = context.getAttribute( "id" ), - nid = old || id, - hasParent = context.parentNode, - relativeHierarchySelector = /^\s*[+~]/.test( query ); - - if ( !old ) { - context.setAttribute( "id", nid ); - } else { - nid = nid.replace( /'/g, "\\$&" ); - } - if ( relativeHierarchySelector && hasParent ) { - context = context.parentNode; - } - - try { - if ( !relativeHierarchySelector || hasParent ) { - return makeArray( context.querySelectorAll( "[id='" + nid + "'] " + query ), extra ); - } - - } catch(pseudoError) { - } finally { - if ( !old ) { - oldContext.removeAttribute( "id" ); - } - } - } - } - - return oldSizzle(query, context, extra, seed); - }; - - for ( var prop in oldSizzle ) { - Sizzle[ prop ] = oldSizzle[ prop ]; - } - - // release memory in IE - div = null; - })(); -} - -(function(){ - var html = document.documentElement, - matches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector; - - if ( matches ) { - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9 fails this) - var disconnectedMatch = !matches.call( document.createElement( "div" ), "div" ), - pseudoWorks = false; - - try { - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( document.documentElement, "[test!='']:sizzle" ); - - } catch( pseudoError ) { - pseudoWorks = true; - } - - Sizzle.matchesSelector = function( node, expr ) { - // Make sure that attribute selectors are quoted - expr = expr.replace(/\=\s*([^'"\]]*)\s*\]/g, "='$1']"); - - if ( !Sizzle.isXML( node ) ) { - try { - if ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) { - var ret = matches.call( node, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || !disconnectedMatch || - // As well, disconnected nodes are said to be in a document - // fragment in IE 9, so check for that - node.document && node.document.nodeType !== 11 ) { - return ret; - } - } - } catch(e) {} - } - - return Sizzle(expr, null, null, [node]).length > 0; - }; - } -})(); - -(function(){ - var div = document.createElement("div"); - - div.innerHTML = "<div class='test e'></div><div class='test'></div>"; - - // Opera can't find a second classname (in 9.6) - // Also, make sure that getElementsByClassName actually exists - if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) { - return; - } - - // Safari caches class attributes, doesn't catch changes (in 3.2) - div.lastChild.className = "e"; - - if ( div.getElementsByClassName("e").length === 1 ) { - return; - } - - Expr.order.splice(1, 0, "CLASS"); - Expr.find.CLASS = function( match, context, isXML ) { - if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) { - return context.getElementsByClassName(match[1]); - } - }; - - // release memory in IE - div = null; -})(); - -function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { - for ( var i = 0, l = checkSet.length; i < l; i++ ) { - var elem = checkSet[i]; - - if ( elem ) { - var match = false; - - elem = elem[dir]; - - while ( elem ) { - if ( elem[ expando ] === doneName ) { - match = checkSet[elem.sizset]; - break; - } - - if ( elem.nodeType === 1 && !isXML ){ - elem[ expando ] = doneName; - elem.sizset = i; - } - - if ( elem.nodeName.toLowerCase() === cur ) { - match = elem; - break; - } - - elem = elem[dir]; - } - - checkSet[i] = match; - } - } -} - -function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { - for ( var i = 0, l = checkSet.length; i < l; i++ ) { - var elem = checkSet[i]; - - if ( elem ) { - var match = false; - - elem = elem[dir]; - - while ( elem ) { - if ( elem[ expando ] === doneName ) { - match = checkSet[elem.sizset]; - break; - } - - if ( elem.nodeType === 1 ) { - if ( !isXML ) { - elem[ expando ] = doneName; - elem.sizset = i; - } - - if ( typeof cur !== "string" ) { - if ( elem === cur ) { - match = true; - break; - } - - } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) { - match = elem; - break; - } - } - - elem = elem[dir]; - } - - checkSet[i] = match; - } - } -} - -if ( document.documentElement.contains ) { - Sizzle.contains = function( a, b ) { - return a !== b && (a.contains ? a.contains(b) : true); - }; - -} else if ( document.documentElement.compareDocumentPosition ) { - Sizzle.contains = function( a, b ) { - return !!(a.compareDocumentPosition(b) & 16); - }; - -} else { - Sizzle.contains = function() { - return false; - }; -} - -Sizzle.isXML = function( elem ) { - // documentElement is verified for cases where it doesn't yet exist - // (such as loading iframes in IE - #4833) - var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement; - - return documentElement ? documentElement.nodeName !== "HTML" : false; -}; - -var posProcess = function( selector, context, seed ) { - var match, - tmpSet = [], - later = "", - root = context.nodeType ? [context] : context; - - // Position selectors must be done after the filter - // And so must :not(positional) so we move all PSEUDOs to the end - while ( (match = Expr.match.PSEUDO.exec( selector )) ) { - later += match[0]; - selector = selector.replace( Expr.match.PSEUDO, "" ); - } - - selector = Expr.relative[selector] ? selector + "*" : selector; - - for ( var i = 0, l = root.length; i < l; i++ ) { - Sizzle( selector, root[i], tmpSet, seed ); - } - - return Sizzle.filter( later, tmpSet ); -}; - -// EXPOSE -// Override sizzle attribute retrieval -Sizzle.attr = jQuery.attr; -Sizzle.selectors.attrMap = {}; -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; -jQuery.expr[":"] = jQuery.expr.filters; -jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; - - -})(); - - -var runtil = /Until$/, - rparentsprev = /^(?:parents|prevUntil|prevAll)/, - // Note: This RegExp should be improved, or likely pulled from Sizzle - rmultiselector = /,/, - isSimple = /^.[^:#\[\.,]*$/, - slice = Array.prototype.slice, - POS = jQuery.expr.match.globalPOS, - // methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend({ - find: function( selector ) { - var self = this, - i, l; - - if ( typeof selector !== "string" ) { - return jQuery( selector ).filter(function() { - for ( i = 0, l = self.length; i < l; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - }); - } - - var ret = this.pushStack( "", "find", selector ), - length, n, r; - - for ( i = 0, l = this.length; i < l; i++ ) { - length = ret.length; - jQuery.find( selector, this[i], ret ); - - if ( i > 0 ) { - // Make sure that the results are unique - for ( n = length; n < ret.length; n++ ) { - for ( r = 0; r < length; r++ ) { - if ( ret[r] === ret[n] ) { - ret.splice(n--, 1); - break; - } - } - } - } - } - - return ret; - }, - - has: function( target ) { - var targets = jQuery( target ); - return this.filter(function() { - for ( var i = 0, l = targets.length; i < l; i++ ) { - if ( jQuery.contains( this, targets[i] ) ) { - return true; - } - } - }); - }, - - not: function( selector ) { - return this.pushStack( winnow(this, selector, false), "not", selector); - }, - - filter: function( selector ) { - return this.pushStack( winnow(this, selector, true), "filter", selector ); - }, - - is: function( selector ) { - return !!selector && ( - typeof selector === "string" ? - // If this is a positional selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - POS.test( selector ) ? - jQuery( selector, this.context ).index( this[0] ) >= 0 : - jQuery.filter( selector, this ).length > 0 : - this.filter( selector ).length > 0 ); - }, - - closest: function( selectors, context ) { - var ret = [], i, l, cur = this[0]; - - // Array (deprecated as of jQuery 1.7) - if ( jQuery.isArray( selectors ) ) { - var level = 1; - - while ( cur && cur.ownerDocument && cur !== context ) { - for ( i = 0; i < selectors.length; i++ ) { - - if ( jQuery( cur ).is( selectors[ i ] ) ) { - ret.push({ selector: selectors[ i ], elem: cur, level: level }); - } - } - - cur = cur.parentNode; - level++; - } - - return ret; - } - - // String - var pos = POS.test( selectors ) || typeof selectors !== "string" ? - jQuery( selectors, context || this.context ) : - 0; - - for ( i = 0, l = this.length; i < l; i++ ) { - cur = this[i]; - - while ( cur ) { - if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { - ret.push( cur ); - break; - - } else { - cur = cur.parentNode; - if ( !cur || !cur.ownerDocument || cur === context || cur.nodeType === 11 ) { - break; - } - } - } - } - - ret = ret.length > 1 ? jQuery.unique( ret ) : ret; - - return this.pushStack( ret, "closest", selectors ); - }, - - // Determine the position of an element within - // the matched set of elements - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1; - } - - // index in selector - if ( typeof elem === "string" ) { - return jQuery.inArray( this[0], jQuery( elem ) ); - } - - // Locate the position of the desired element - return jQuery.inArray( - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[0] : elem, this ); - }, - - add: function( selector, context ) { - var set = typeof selector === "string" ? - jQuery( selector, context ) : - jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), - all = jQuery.merge( this.get(), set ); - - return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? - all : - jQuery.unique( all ) ); - }, - - andSelf: function() { - return this.add( this.prevObject ); - } -}); - -// A painfully simple check to see if an element is disconnected -// from a document (should be improved, where feasible). -function isDisconnected( node ) { - return !node || !node.parentNode || node.parentNode.nodeType === 11; -} - -jQuery.each({ - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return jQuery.dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, i, until ) { - return jQuery.dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return jQuery.nth( elem, 2, "nextSibling" ); - }, - prev: function( elem ) { - return jQuery.nth( elem, 2, "previousSibling" ); - }, - nextAll: function( elem ) { - return jQuery.dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return jQuery.dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, i, until ) { - return jQuery.dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, i, until ) { - return jQuery.dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return jQuery.sibling( elem.firstChild ); - }, - contents: function( elem ) { - return jQuery.nodeName( elem, "iframe" ) ? - elem.contentDocument || elem.contentWindow.document : - jQuery.makeArray( elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var ret = jQuery.map( this, fn, until ); - - if ( !runtil.test( name ) ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - ret = jQuery.filter( selector, ret ); - } - - ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; - - if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) { - ret = ret.reverse(); - } - - return this.pushStack( ret, name, slice.call( arguments ).join(",") ); - }; -}); - -jQuery.extend({ - filter: function( expr, elems, not ) { - if ( not ) { - expr = ":not(" + expr + ")"; - } - - return elems.length === 1 ? - jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : - jQuery.find.matches(expr, elems); - }, - - dir: function( elem, dir, until ) { - var matched = [], - cur = elem[ dir ]; - - while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { - if ( cur.nodeType === 1 ) { - matched.push( cur ); - } - cur = cur[dir]; - } - return matched; - }, - - nth: function( cur, result, dir, elem ) { - result = result || 1; - var num = 0; - - for ( ; cur; cur = cur[dir] ) { - if ( cur.nodeType === 1 && ++num === result ) { - break; - } - } - - return cur; - }, - - sibling: function( n, elem ) { - var r = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - r.push( n ); - } - } - - return r; - } -}); - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, keep ) { - - // Can't pass null or undefined to indexOf in Firefox 4 - // Set to 0 to skip string check - qualifier = qualifier || 0; - - if ( jQuery.isFunction( qualifier ) ) { - return jQuery.grep(elements, function( elem, i ) { - var retVal = !!qualifier.call( elem, i, elem ); - return retVal === keep; - }); - - } else if ( qualifier.nodeType ) { - return jQuery.grep(elements, function( elem, i ) { - return ( elem === qualifier ) === keep; - }); - - } else if ( typeof qualifier === "string" ) { - var filtered = jQuery.grep(elements, function( elem ) { - return elem.nodeType === 1; - }); - - if ( isSimple.test( qualifier ) ) { - return jQuery.filter(qualifier, filtered, !keep); - } else { - qualifier = jQuery.filter( qualifier, filtered ); - } - } - - return jQuery.grep(elements, function( elem, i ) { - return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; - }); -} - - - - -function createSafeFragment( document ) { - var list = nodeNames.split( "|" ), - safeFrag = document.createDocumentFragment(); - - if ( safeFrag.createElement ) { - while ( list.length ) { - safeFrag.createElement( - list.pop() - ); - } - } - return safeFrag; -} - -var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + - "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", - rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, - rleadingWhitespace = /^\s+/, - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig, - rtagName = /<([\w:]+)/, - rtbody = /<tbody/i, - rhtml = /<|&#?\w+;/, - rnoInnerhtml = /<(?:script|style)/i, - rnocache = /<(?:script|object|embed|option|style)/i, - rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), - // checked="checked" or checked - rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, - rscriptType = /\/(java|ecma)script/i, - rcleanScript = /^\s*<!(?:\[CDATA\[|\-\-)/, - wrapMap = { - option: [ 1, "<select multiple='multiple'>", "</select>" ], - legend: [ 1, "<fieldset>", "</fieldset>" ], - thead: [ 1, "<table>", "</table>" ], - tr: [ 2, "<table><tbody>", "</tbody></table>" ], - td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ], - col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ], - area: [ 1, "<map>", "</map>" ], - _default: [ 0, "", "" ] - }, - safeFragment = createSafeFragment( document ); - -wrapMap.optgroup = wrapMap.option; -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// IE can't serialize <link> and <script> tags normally -if ( !jQuery.support.htmlSerialize ) { - wrapMap._default = [ 1, "div<div>", "</div>" ]; -} - -jQuery.fn.extend({ - text: function( value ) { - return jQuery.access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); - }, null, value, arguments.length ); - }, - - wrapAll: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each(function(i) { - jQuery(this).wrapAll( html.call(this, i) ); - }); - } - - if ( this[0] ) { - // The elements to wrap the target around - var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); - - if ( this[0].parentNode ) { - wrap.insertBefore( this[0] ); - } - - wrap.map(function() { - var elem = this; - - while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { - elem = elem.firstChild; - } - - return elem; - }).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each(function(i) { - jQuery(this).wrapInner( html.call(this, i) ); - }); - } - - return this.each(function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - }); - }, - - wrap: function( html ) { - var isFunction = jQuery.isFunction( html ); - - return this.each(function(i) { - jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); - }); - }, - - unwrap: function() { - return this.parent().each(function() { - if ( !jQuery.nodeName( this, "body" ) ) { - jQuery( this ).replaceWith( this.childNodes ); - } - }).end(); - }, - - append: function() { - return this.domManip(arguments, true, function( elem ) { - if ( this.nodeType === 1 ) { - this.appendChild( elem ); - } - }); - }, - - prepend: function() { - return this.domManip(arguments, true, function( elem ) { - if ( this.nodeType === 1 ) { - this.insertBefore( elem, this.firstChild ); - } - }); - }, - - before: function() { - if ( this[0] && this[0].parentNode ) { - return this.domManip(arguments, false, function( elem ) { - this.parentNode.insertBefore( elem, this ); - }); - } else if ( arguments.length ) { - var set = jQuery.clean( arguments ); - set.push.apply( set, this.toArray() ); - return this.pushStack( set, "before", arguments ); - } - }, - - after: function() { - if ( this[0] && this[0].parentNode ) { - return this.domManip(arguments, false, function( elem ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - }); - } else if ( arguments.length ) { - var set = this.pushStack( this, "after", arguments ); - set.push.apply( set, jQuery.clean(arguments) ); - return set; - } - }, - - // keepData is for internal use only--do not document - remove: function( selector, keepData ) { - for ( var i = 0, elem; (elem = this[i]) != null; i++ ) { - if ( !selector || jQuery.filter( selector, [ elem ] ).length ) { - if ( !keepData && elem.nodeType === 1 ) { - jQuery.cleanData( elem.getElementsByTagName("*") ); - jQuery.cleanData( [ elem ] ); - } - - if ( elem.parentNode ) { - elem.parentNode.removeChild( elem ); - } - } - } - - return this; - }, - - empty: function() { - for ( var i = 0, elem; (elem = this[i]) != null; i++ ) { - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( elem.getElementsByTagName("*") ); - } - - // Remove any remaining nodes - while ( elem.firstChild ) { - elem.removeChild( elem.firstChild ); - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function () { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - }); - }, - - html: function( value ) { - return jQuery.access( this, function( value ) { - var elem = this[0] || {}, - i = 0, - l = this.length; - - if ( value === undefined ) { - return elem.nodeType === 1 ? - elem.innerHTML.replace( rinlinejQuery, "" ) : - null; - } - - - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && - !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { - - value = value.replace( rxhtmlTag, "<$1></$2>" ); - - try { - for (; i < l; i++ ) { - // Remove element nodes and prevent memory leaks - elem = this[i] || {}; - if ( elem.nodeType === 1 ) { - jQuery.cleanData( elem.getElementsByTagName( "*" ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch(e) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function( value ) { - if ( this[0] && this[0].parentNode ) { - // Make sure that the elements are removed from the DOM before they are inserted - // this can help fix replacing a parent with child elements - if ( jQuery.isFunction( value ) ) { - return this.each(function(i) { - var self = jQuery(this), old = self.html(); - self.replaceWith( value.call( this, i, old ) ); - }); - } - - if ( typeof value !== "string" ) { - value = jQuery( value ).detach(); - } - - return this.each(function() { - var next = this.nextSibling, - parent = this.parentNode; - - jQuery( this ).remove(); - - if ( next ) { - jQuery(next).before( value ); - } else { - jQuery(parent).append( value ); - } - }); - } else { - return this.length ? - this.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), "replaceWith", value ) : - this; - } - }, - - detach: function( selector ) { - return this.remove( selector, true ); - }, - - domManip: function( args, table, callback ) { - var results, first, fragment, parent, - value = args[0], - scripts = []; - - // We can't cloneNode fragments that contain checked, in WebKit - if ( !jQuery.support.checkClone && arguments.length === 3 && typeof value === "string" && rchecked.test( value ) ) { - return this.each(function() { - jQuery(this).domManip( args, table, callback, true ); - }); - } - - if ( jQuery.isFunction(value) ) { - return this.each(function(i) { - var self = jQuery(this); - args[0] = value.call(this, i, table ? self.html() : undefined); - self.domManip( args, table, callback ); - }); - } - - if ( this[0] ) { - parent = value && value.parentNode; - - // If we're in a fragment, just use that instead of building a new one - if ( jQuery.support.parentNode && parent && parent.nodeType === 11 && parent.childNodes.length === this.length ) { - results = { fragment: parent }; - - } else { - results = jQuery.buildFragment( args, this, scripts ); - } - - fragment = results.fragment; - - if ( fragment.childNodes.length === 1 ) { - first = fragment = fragment.firstChild; - } else { - first = fragment.firstChild; - } - - if ( first ) { - table = table && jQuery.nodeName( first, "tr" ); - - for ( var i = 0, l = this.length, lastIndex = l - 1; i < l; i++ ) { - callback.call( - table ? - root(this[i], first) : - this[i], - // Make sure that we do not leak memory by inadvertently discarding - // the original fragment (which might have attached data) instead of - // using it; in addition, use the original fragment object for the last - // item instead of first because it can end up being emptied incorrectly - // in certain situations (Bug #8070). - // Fragments from the fragment cache must always be cloned and never used - // in place. - results.cacheable || ( l > 1 && i < lastIndex ) ? - jQuery.clone( fragment, true, true ) : - fragment - ); - } - } - - if ( scripts.length ) { - jQuery.each( scripts, function( i, elem ) { - if ( elem.src ) { - jQuery.ajax({ - type: "GET", - global: false, - url: elem.src, - async: false, - dataType: "script" - }); - } else { - jQuery.globalEval( ( elem.text || elem.textContent || elem.innerHTML || "" ).replace( rcleanScript, "/*$0*/" ) ); - } - - if ( elem.parentNode ) { - elem.parentNode.removeChild( elem ); - } - }); - } - } - - return this; - } -}); - -function root( elem, cur ) { - return jQuery.nodeName(elem, "table") ? - (elem.getElementsByTagName("tbody")[0] || - elem.appendChild(elem.ownerDocument.createElement("tbody"))) : - elem; -} - -function cloneCopyEvent( src, dest ) { - - if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { - return; - } - - var type, i, l, - oldData = jQuery._data( src ), - curData = jQuery._data( dest, oldData ), - events = oldData.events; - - if ( events ) { - delete curData.handle; - curData.events = {}; - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - - // make the cloned public data object a copy from the original - if ( curData.data ) { - curData.data = jQuery.extend( {}, curData.data ); - } -} - -function cloneFixAttributes( src, dest ) { - var nodeName; - - // We do not need to do anything for non-Elements - if ( dest.nodeType !== 1 ) { - return; - } - - // clearAttributes removes the attributes, which we don't want, - // but also removes the attachEvent events, which we *do* want - if ( dest.clearAttributes ) { - dest.clearAttributes(); - } - - // mergeAttributes, in contrast, only merges back on the - // original attributes, not the events - if ( dest.mergeAttributes ) { - dest.mergeAttributes( src ); - } - - nodeName = dest.nodeName.toLowerCase(); - - // IE6-8 fail to clone children inside object elements that use - // the proprietary classid attribute value (rather than the type - // attribute) to identify the type of content to display - if ( nodeName === "object" ) { - dest.outerHTML = src.outerHTML; - - } else if ( nodeName === "input" && (src.type === "checkbox" || src.type === "radio") ) { - // IE6-8 fails to persist the checked state of a cloned checkbox - // or radio button. Worse, IE6-7 fail to give the cloned element - // a checked appearance if the defaultChecked value isn't also set - if ( src.checked ) { - dest.defaultChecked = dest.checked = src.checked; - } - - // IE6-7 get confused and end up setting the value of a cloned - // checkbox/radio button to an empty string instead of "on" - if ( dest.value !== src.value ) { - dest.value = src.value; - } - - // IE6-8 fails to return the selected option to the default selected - // state when cloning options - } else if ( nodeName === "option" ) { - dest.selected = src.defaultSelected; - - // IE6-8 fails to set the defaultValue to the correct value when - // cloning other types of input fields - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - - // IE blanks contents when cloning scripts - } else if ( nodeName === "script" && dest.text !== src.text ) { - dest.text = src.text; - } - - // Event data gets referenced instead of copied if the expando - // gets copied too - dest.removeAttribute( jQuery.expando ); - - // Clear flags for bubbling special change/submit events, they must - // be reattached when the newly cloned events are first activated - dest.removeAttribute( "_submit_attached" ); - dest.removeAttribute( "_change_attached" ); -} - -jQuery.buildFragment = function( args, nodes, scripts ) { - var fragment, cacheable, cacheresults, doc, - first = args[ 0 ]; - - // nodes may contain either an explicit document object, - // a jQuery collection or context object. - // If nodes[0] contains a valid object to assign to doc - if ( nodes && nodes[0] ) { - doc = nodes[0].ownerDocument || nodes[0]; - } - - // Ensure that an attr object doesn't incorrectly stand in as a document object - // Chrome and Firefox seem to allow this to occur and will throw exception - // Fixes #8950 - if ( !doc.createDocumentFragment ) { - doc = document; - } - - // Only cache "small" (1/2 KB) HTML strings that are associated with the main document - // Cloning options loses the selected state, so don't cache them - // IE 6 doesn't like it when you put <object> or <embed> elements in a fragment - // Also, WebKit does not clone 'checked' attributes on cloneNode, so don't cache - // Lastly, IE6,7,8 will not correctly reuse cached fragments that were created from unknown elems #10501 - if ( args.length === 1 && typeof first === "string" && first.length < 512 && doc === document && - first.charAt(0) === "<" && !rnocache.test( first ) && - (jQuery.support.checkClone || !rchecked.test( first )) && - (jQuery.support.html5Clone || !rnoshimcache.test( first )) ) { - - cacheable = true; - - cacheresults = jQuery.fragments[ first ]; - if ( cacheresults && cacheresults !== 1 ) { - fragment = cacheresults; - } - } - - if ( !fragment ) { - fragment = doc.createDocumentFragment(); - jQuery.clean( args, doc, fragment, scripts ); - } - - if ( cacheable ) { - jQuery.fragments[ first ] = cacheresults ? fragment : 1; - } - - return { fragment: fragment, cacheable: cacheable }; -}; - -jQuery.fragments = {}; - -jQuery.each({ - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var ret = [], - insert = jQuery( selector ), - parent = this.length === 1 && this[0].parentNode; - - if ( parent && parent.nodeType === 11 && parent.childNodes.length === 1 && insert.length === 1 ) { - insert[ original ]( this[0] ); - return this; - - } else { - for ( var i = 0, l = insert.length; i < l; i++ ) { - var elems = ( i > 0 ? this.clone(true) : this ).get(); - jQuery( insert[i] )[ original ]( elems ); - ret = ret.concat( elems ); - } - - return this.pushStack( ret, name, insert.selector ); - } - }; -}); - -function getAll( elem ) { - if ( typeof elem.getElementsByTagName !== "undefined" ) { - return elem.getElementsByTagName( "*" ); - - } else if ( typeof elem.querySelectorAll !== "undefined" ) { - return elem.querySelectorAll( "*" ); - - } else { - return []; - } -} - -// Used in clean, fixes the defaultChecked property -function fixDefaultChecked( elem ) { - if ( elem.type === "checkbox" || elem.type === "radio" ) { - elem.defaultChecked = elem.checked; - } -} -// Finds all inputs and passes them to fixDefaultChecked -function findInputs( elem ) { - var nodeName = ( elem.nodeName || "" ).toLowerCase(); - if ( nodeName === "input" ) { - fixDefaultChecked( elem ); - // Skip scripts, get other children - } else if ( nodeName !== "script" && typeof elem.getElementsByTagName !== "undefined" ) { - jQuery.grep( elem.getElementsByTagName("input"), fixDefaultChecked ); - } -} - -// Derived From: http://www.iecss.com/shimprove/javascript/shimprove.1-0-1.js -function shimCloneNode( elem ) { - var div = document.createElement( "div" ); - safeFragment.appendChild( div ); - - div.innerHTML = elem.outerHTML; - return div.firstChild; -} - -jQuery.extend({ - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var srcElements, - destElements, - i, - // IE<=8 does not properly clone detached, unknown element nodes - clone = jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ? - elem.cloneNode( true ) : - shimCloneNode( elem ); - - if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && - (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { - // IE copies events bound via attachEvent when using cloneNode. - // Calling detachEvent on the clone will also remove the events - // from the original. In order to get around this, we use some - // proprietary methods to clear the events. Thanks to MooTools - // guys for this hotness. - - cloneFixAttributes( elem, clone ); - - // Using Sizzle here is crazy slow, so we use getElementsByTagName instead - srcElements = getAll( elem ); - destElements = getAll( clone ); - - // Weird iteration because IE will replace the length property - // with an element if you are cloning the body and one of the - // elements on the page has a name or id of "length" - for ( i = 0; srcElements[i]; ++i ) { - // Ensure that the destination node is not null; Fixes #9587 - if ( destElements[i] ) { - cloneFixAttributes( srcElements[i], destElements[i] ); - } - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - cloneCopyEvent( elem, clone ); - - if ( deepDataAndEvents ) { - srcElements = getAll( elem ); - destElements = getAll( clone ); - - for ( i = 0; srcElements[i]; ++i ) { - cloneCopyEvent( srcElements[i], destElements[i] ); - } - } - } - - srcElements = destElements = null; - - // Return the cloned set - return clone; - }, - - clean: function( elems, context, fragment, scripts ) { - var checkScriptType, script, j, - ret = []; - - context = context || document; - - // !context.createElement fails in IE with an error but returns typeof 'object' - if ( typeof context.createElement === "undefined" ) { - context = context.ownerDocument || context[0] && context[0].ownerDocument || document; - } - - for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { - if ( typeof elem === "number" ) { - elem += ""; - } - - if ( !elem ) { - continue; - } - - // Convert html string into DOM nodes - if ( typeof elem === "string" ) { - if ( !rhtml.test( elem ) ) { - elem = context.createTextNode( elem ); - } else { - // Fix "XHTML"-style tags in all browsers - elem = elem.replace(rxhtmlTag, "<$1></$2>"); - - // Trim whitespace, otherwise indexOf won't work as expected - var tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(), - wrap = wrapMap[ tag ] || wrapMap._default, - depth = wrap[0], - div = context.createElement("div"), - safeChildNodes = safeFragment.childNodes, - remove; - - // Append wrapper element to unknown element safe doc fragment - if ( context === document ) { - // Use the fragment we've already created for this document - safeFragment.appendChild( div ); - } else { - // Use a fragment created with the owner document - createSafeFragment( context ).appendChild( div ); - } - - // Go to html and back, then peel off extra wrappers - div.innerHTML = wrap[1] + elem + wrap[2]; - - // Move to the right depth - while ( depth-- ) { - div = div.lastChild; - } - - // Remove IE's autoinserted <tbody> from table fragments - if ( !jQuery.support.tbody ) { - - // String was a <table>, *may* have spurious <tbody> - var hasBody = rtbody.test(elem), - tbody = tag === "table" && !hasBody ? - div.firstChild && div.firstChild.childNodes : - - // String was a bare <thead> or <tfoot> - wrap[1] === "<table>" && !hasBody ? - div.childNodes : - []; - - for ( j = tbody.length - 1; j >= 0 ; --j ) { - if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) { - tbody[ j ].parentNode.removeChild( tbody[ j ] ); - } - } - } - - // IE completely kills leading whitespace when innerHTML is used - if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { - div.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild ); - } - - elem = div.childNodes; - - // Clear elements from DocumentFragment (safeFragment or otherwise) - // to avoid hoarding elements. Fixes #11356 - if ( div ) { - div.parentNode.removeChild( div ); - - // Guard against -1 index exceptions in FF3.6 - if ( safeChildNodes.length > 0 ) { - remove = safeChildNodes[ safeChildNodes.length - 1 ]; - - if ( remove && remove.parentNode ) { - remove.parentNode.removeChild( remove ); - } - } - } - } - } - - // Resets defaultChecked for any radios and checkboxes - // about to be appended to the DOM in IE 6/7 (#8060) - var len; - if ( !jQuery.support.appendChecked ) { - if ( elem[0] && typeof (len = elem.length) === "number" ) { - for ( j = 0; j < len; j++ ) { - findInputs( elem[j] ); - } - } else { - findInputs( elem ); - } - } - - if ( elem.nodeType ) { - ret.push( elem ); - } else { - ret = jQuery.merge( ret, elem ); - } - } - - if ( fragment ) { - checkScriptType = function( elem ) { - return !elem.type || rscriptType.test( elem.type ); - }; - for ( i = 0; ret[i]; i++ ) { - script = ret[i]; - if ( scripts && jQuery.nodeName( script, "script" ) && (!script.type || rscriptType.test( script.type )) ) { - scripts.push( script.parentNode ? script.parentNode.removeChild( script ) : script ); - - } else { - if ( script.nodeType === 1 ) { - var jsTags = jQuery.grep( script.getElementsByTagName( "script" ), checkScriptType ); - - ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) ); - } - fragment.appendChild( script ); - } - } - } - - return ret; - }, - - cleanData: function( elems ) { - var data, id, - cache = jQuery.cache, - special = jQuery.event.special, - deleteExpando = jQuery.support.deleteExpando; - - for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { - if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) { - continue; - } - - id = elem[ jQuery.expando ]; - - if ( id ) { - data = cache[ id ]; - - if ( data && data.events ) { - for ( var type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - - // Null the DOM reference to avoid IE6/7/8 leak (#7054) - if ( data.handle ) { - data.handle.elem = null; - } - } - - if ( deleteExpando ) { - delete elem[ jQuery.expando ]; - - } else if ( elem.removeAttribute ) { - elem.removeAttribute( jQuery.expando ); - } - - delete cache[ id ]; - } - } - } -}); - - - - -var ralpha = /alpha\([^)]*\)/i, - ropacity = /opacity=([^)]*)/, - // fixed for IE9, see #8346 - rupper = /([A-Z]|^ms)/g, - rnum = /^[\-+]?(?:\d*\.)?\d+$/i, - rnumnonpx = /^-?(?:\d*\.)?\d+(?!px)[^\d\s]+$/i, - rrelNum = /^([\-+])=([\-+.\de]+)/, - rmargin = /^margin/, - - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - - // order is important! - cssExpand = [ "Top", "Right", "Bottom", "Left" ], - - curCSS, - - getComputedStyle, - currentStyle; - -jQuery.fn.css = function( name, value ) { - return jQuery.access( this, function( elem, name, value ) { - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); -}; - -jQuery.extend({ - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - - } else { - return elem.style.opacity; - } - } - } - }, - - // Exclude the following css properties to add px - cssNumber: { - "fillOpacity": true, - "fontWeight": true, - "lineHeight": true, - "opacity": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: { - // normalize float css property - "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" - }, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, origName = jQuery.camelCase( name ), - style = elem.style, hooks = jQuery.cssHooks[ origName ]; - - name = jQuery.cssProps[ origName ] || origName; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // convert relative number strings (+= or -=) to relative numbers. #7345 - if ( type === "string" && (ret = rrelNum.exec( value )) ) { - value = ( +( ret[1] + 1) * +ret[2] ) + parseFloat( jQuery.css( elem, name ) ); - // Fixes bug #9237 - type = "number"; - } - - // Make sure that NaN and null values aren't set. See: #7116 - if ( value == null || type === "number" && isNaN( value ) ) { - return; - } - - // If a number was passed in, add 'px' to the (except for certain CSS properties) - if ( type === "number" && !jQuery.cssNumber[ origName ] ) { - value += "px"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value )) !== undefined ) { - // Wrapped to prevent IE from throwing errors when 'invalid' values are provided - // Fixes bug #5509 - try { - style[ name ] = value; - } catch(e) {} - } - - } else { - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra ) { - var ret, hooks; - - // Make sure that we're working with the right name - name = jQuery.camelCase( name ); - hooks = jQuery.cssHooks[ name ]; - name = jQuery.cssProps[ name ] || name; - - // cssFloat needs a special treatment - if ( name === "cssFloat" ) { - name = "float"; - } - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks && (ret = hooks.get( elem, true, extra )) !== undefined ) { - return ret; - - // Otherwise, if a way to get the computed value exists, use that - } else if ( curCSS ) { - return curCSS( elem, name ); - } - }, - - // A method for quickly swapping in/out CSS properties to get correct calculations - swap: function( elem, options, callback ) { - var old = {}, - ret, name; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; - } -}); - -// DEPRECATED in 1.3, Use jQuery.css() instead -jQuery.curCSS = jQuery.css; - -if ( document.defaultView && document.defaultView.getComputedStyle ) { - getComputedStyle = function( elem, name ) { - var ret, defaultView, computedStyle, width, - style = elem.style; - - name = name.replace( rupper, "-$1" ).toLowerCase(); - - if ( (defaultView = elem.ownerDocument.defaultView) && - (computedStyle = defaultView.getComputedStyle( elem, null )) ) { - - ret = computedStyle.getPropertyValue( name ); - if ( ret === "" && !jQuery.contains( elem.ownerDocument.documentElement, elem ) ) { - ret = jQuery.style( elem, name ); - } - } - - // A tribute to the "awesome hack by Dean Edwards" - // WebKit uses "computed value (percentage if specified)" instead of "used value" for margins - // which is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values - if ( !jQuery.support.pixelMargin && computedStyle && rmargin.test( name ) && rnumnonpx.test( ret ) ) { - width = style.width; - style.width = ret; - ret = computedStyle.width; - style.width = width; - } - - return ret; - }; -} - -if ( document.documentElement.currentStyle ) { - currentStyle = function( elem, name ) { - var left, rsLeft, uncomputed, - ret = elem.currentStyle && elem.currentStyle[ name ], - style = elem.style; - - // Avoid setting ret to empty string here - // so we don't default to auto - if ( ret == null && style && (uncomputed = style[ name ]) ) { - ret = uncomputed; - } - - // From the awesome hack by Dean Edwards - // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 - - // If we're not dealing with a regular pixel number - // but a number that has a weird ending, we need to convert it to pixels - if ( rnumnonpx.test( ret ) ) { - - // Remember the original values - left = style.left; - rsLeft = elem.runtimeStyle && elem.runtimeStyle.left; - - // Put in the new values to get a computed value out - if ( rsLeft ) { - elem.runtimeStyle.left = elem.currentStyle.left; - } - style.left = name === "fontSize" ? "1em" : ret; - ret = style.pixelLeft + "px"; - - // Revert the changed values - style.left = left; - if ( rsLeft ) { - elem.runtimeStyle.left = rsLeft; - } - } - - return ret === "" ? "auto" : ret; - }; -} - -curCSS = getComputedStyle || currentStyle; - -function getWidthOrHeight( elem, name, extra ) { - - // Start with offset property - var val = name === "width" ? elem.offsetWidth : elem.offsetHeight, - i = name === "width" ? 1 : 0, - len = 4; - - if ( val > 0 ) { - if ( extra !== "border" ) { - for ( ; i < len; i += 2 ) { - if ( !extra ) { - val -= parseFloat( jQuery.css( elem, "padding" + cssExpand[ i ] ) ) || 0; - } - if ( extra === "margin" ) { - val += parseFloat( jQuery.css( elem, extra + cssExpand[ i ] ) ) || 0; - } else { - val -= parseFloat( jQuery.css( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0; - } - } - } - - return val + "px"; - } - - // Fall back to computed then uncomputed css if necessary - val = curCSS( elem, name ); - if ( val < 0 || val == null ) { - val = elem.style[ name ]; - } - - // Computed unit is not pixels. Stop here and return. - if ( rnumnonpx.test(val) ) { - return val; - } - - // Normalize "", auto, and prepare for extra - val = parseFloat( val ) || 0; - - // Add padding, border, margin - if ( extra ) { - for ( ; i < len; i += 2 ) { - val += parseFloat( jQuery.css( elem, "padding" + cssExpand[ i ] ) ) || 0; - if ( extra !== "padding" ) { - val += parseFloat( jQuery.css( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0; - } - if ( extra === "margin" ) { - val += parseFloat( jQuery.css( elem, extra + cssExpand[ i ]) ) || 0; - } - } - } - - return val + "px"; -} - -jQuery.each([ "height", "width" ], function( i, name ) { - jQuery.cssHooks[ name ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - if ( elem.offsetWidth !== 0 ) { - return getWidthOrHeight( elem, name, extra ); - } else { - return jQuery.swap( elem, cssShow, function() { - return getWidthOrHeight( elem, name, extra ); - }); - } - } - }, - - set: function( elem, value ) { - return rnum.test( value ) ? - value + "px" : - value; - } - }; -}); - -if ( !jQuery.support.opacity ) { - jQuery.cssHooks.opacity = { - get: function( elem, computed ) { - // IE uses filters for opacity - return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ? - ( parseFloat( RegExp.$1 ) / 100 ) + "" : - computed ? "1" : ""; - }, - - set: function( elem, value ) { - var style = elem.style, - currentStyle = elem.currentStyle, - opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "", - filter = currentStyle && currentStyle.filter || style.filter || ""; - - // IE has trouble with opacity if it does not have layout - // Force it by setting the zoom level - style.zoom = 1; - - // if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652 - if ( value >= 1 && jQuery.trim( filter.replace( ralpha, "" ) ) === "" ) { - - // Setting style.filter to null, "" & " " still leave "filter:" in the cssText - // if "filter:" is present at all, clearType is disabled, we want to avoid this - // style.removeAttribute is IE Only, but so apparently is this code path... - style.removeAttribute( "filter" ); - - // if there there is no filter style applied in a css rule, we are done - if ( currentStyle && !currentStyle.filter ) { - return; - } - } - - // otherwise, set new filter values - style.filter = ralpha.test( filter ) ? - filter.replace( ralpha, opacity ) : - filter + " " + opacity; - } - }; -} - -jQuery(function() { - // This hook cannot be added until DOM ready because the support test - // for it is not run until after DOM ready - if ( !jQuery.support.reliableMarginRight ) { - jQuery.cssHooks.marginRight = { - get: function( elem, computed ) { - // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right - // Work around by temporarily setting element display to inline-block - return jQuery.swap( elem, { "display": "inline-block" }, function() { - if ( computed ) { - return curCSS( elem, "margin-right" ); - } else { - return elem.style.marginRight; - } - }); - } - }; - } -}); - -if ( jQuery.expr && jQuery.expr.filters ) { - jQuery.expr.filters.hidden = function( elem ) { - var width = elem.offsetWidth, - height = elem.offsetHeight; - - return ( width === 0 && height === 0 ) || (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || jQuery.css( elem, "display" )) === "none"); - }; - - jQuery.expr.filters.visible = function( elem ) { - return !jQuery.expr.filters.hidden( elem ); - }; -} - -// These hooks are used by animate to expand properties -jQuery.each({ - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i, - - // assumes a single number if not a string - parts = typeof value === "string" ? value.split(" ") : [ value ], - expanded = {}; - - for ( i = 0; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; -}); - - - - -var r20 = /%20/g, - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rhash = /#.*$/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL - rinput = /^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i, - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - rquery = /\?/, - rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, - rselectTextarea = /^(?:select|textarea)/i, - rspacesAjax = /\s+/, - rts = /([?&])_=[^&]*/, - rurl = /^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/, - - // Keep a copy of the old load method - _load = jQuery.fn.load, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Document location - ajaxLocation, - - // Document location segments - ajaxLocParts, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = ["*/"] + ["*"]; - -// #8138, IE may throw an exception when accessing -// a field from window.location if document.domain has been set -try { - ajaxLocation = location.href; -} catch( e ) { - // Use the href attribute of an A element - // since IE will modify it given document.location - ajaxLocation = document.createElement( "a" ); - ajaxLocation.href = ""; - ajaxLocation = ajaxLocation.href; -} - -// Segment location into parts -ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || []; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - if ( jQuery.isFunction( func ) ) { - var dataTypes = dataTypeExpression.toLowerCase().split( rspacesAjax ), - i = 0, - length = dataTypes.length, - dataType, - list, - placeBefore; - - // For each dataType in the dataTypeExpression - for ( ; i < length; i++ ) { - dataType = dataTypes[ i ]; - // We control if we're asked to add before - // any existing element - placeBefore = /^\+/.test( dataType ); - if ( placeBefore ) { - dataType = dataType.substr( 1 ) || "*"; - } - list = structure[ dataType ] = structure[ dataType ] || []; - // then we add to the structure accordingly - list[ placeBefore ? "unshift" : "push" ]( func ); - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR, - dataType /* internal */, inspected /* internal */ ) { - - dataType = dataType || options.dataTypes[ 0 ]; - inspected = inspected || {}; - - inspected[ dataType ] = true; - - var list = structure[ dataType ], - i = 0, - length = list ? list.length : 0, - executeOnly = ( structure === prefilters ), - selection; - - for ( ; i < length && ( executeOnly || !selection ); i++ ) { - selection = list[ i ]( options, originalOptions, jqXHR ); - // If we got redirected to another dataType - // we try there if executing only and not done already - if ( typeof selection === "string" ) { - if ( !executeOnly || inspected[ selection ] ) { - selection = undefined; - } else { - options.dataTypes.unshift( selection ); - selection = inspectPrefiltersOrTransports( - structure, options, originalOptions, jqXHR, selection, inspected ); - } - } - } - // If we're only executing or nothing was selected - // we try the catchall dataType if not done already - if ( ( executeOnly || !selection ) && !inspected[ "*" ] ) { - selection = inspectPrefiltersOrTransports( - structure, options, originalOptions, jqXHR, "*", inspected ); - } - // unnecessary when only executing (prefilters) - // but it'll be ignored by the caller in that case - return selection; -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } -} - -jQuery.fn.extend({ - load: function( url, params, callback ) { - if ( typeof url !== "string" && _load ) { - return _load.apply( this, arguments ); - - // Don't do a request if no elements are being requested - } else if ( !this.length ) { - return this; - } - - var off = url.indexOf( " " ); - if ( off >= 0 ) { - var selector = url.slice( off, url.length ); - url = url.slice( 0, off ); - } - - // Default to a GET request - var type = "GET"; - - // If the second parameter was provided - if ( params ) { - // If it's a function - if ( jQuery.isFunction( params ) ) { - // We assume that it's the callback - callback = params; - params = undefined; - - // Otherwise, build a param string - } else if ( typeof params === "object" ) { - params = jQuery.param( params, jQuery.ajaxSettings.traditional ); - type = "POST"; - } - } - - var self = this; - - // Request the remote document - jQuery.ajax({ - url: url, - type: type, - dataType: "html", - data: params, - // Complete callback (responseText is used internally) - complete: function( jqXHR, status, responseText ) { - // Store the response as specified by the jqXHR object - responseText = jqXHR.responseText; - // If successful, inject the HTML into all the matched elements - if ( jqXHR.isResolved() ) { - // #4825: Get the actual response in case - // a dataFilter is present in ajaxSettings - jqXHR.done(function( r ) { - responseText = r; - }); - // See if a selector was specified - self.html( selector ? - // Create a dummy div to hold the results - jQuery("<div>") - // inject the contents of the document in, removing the scripts - // to avoid any 'Permission Denied' errors in IE - .append(responseText.replace(rscript, "")) - - // Locate the specified elements - .find(selector) : - - // If not, just inject the full result - responseText ); - } - - if ( callback ) { - self.each( callback, [ responseText, status, jqXHR ] ); - } - } - }); - - return this; - }, - - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - - serializeArray: function() { - return this.map(function(){ - return this.elements ? jQuery.makeArray( this.elements ) : this; - }) - .filter(function(){ - return this.name && !this.disabled && - ( this.checked || rselectTextarea.test( this.nodeName ) || - rinput.test( this.type ) ); - }) - .map(function( i, elem ){ - var val = jQuery( this ).val(); - - return val == null ? - null : - jQuery.isArray( val ) ? - jQuery.map( val, function( val, i ){ - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - }) : - { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - }).get(); - } -}); - -// Attach a bunch of functions for handling common AJAX events -jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split( " " ), function( i, o ){ - jQuery.fn[ o ] = function( f ){ - return this.on( o, f ); - }; -}); - -jQuery.each( [ "get", "post" ], function( i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - // shift arguments if data argument was omitted - if ( jQuery.isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - return jQuery.ajax({ - type: method, - url: url, - data: data, - success: callback, - dataType: type - }); - }; -}); - -jQuery.extend({ - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - if ( settings ) { - // Building a settings object - ajaxExtend( target, jQuery.ajaxSettings ); - } else { - // Extending ajaxSettings - settings = target; - target = jQuery.ajaxSettings; - } - ajaxExtend( target, settings ); - return target; - }, - - ajaxSettings: { - url: ajaxLocation, - isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ), - global: true, - type: "GET", - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - processData: true, - async: true, - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - traditional: false, - headers: {}, - */ - - accepts: { - xml: "application/xml, text/xml", - html: "text/html", - text: "text/plain", - json: "application/json, text/javascript", - "*": allTypes - }, - - contents: { - xml: /xml/, - html: /html/, - json: /json/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText" - }, - - // List of data converters - // 1) key format is "source_type destination_type" (a single space in-between) - // 2) the catchall symbol "*" can be used for source_type - converters: { - - // Convert anything to text - "* text": window.String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": jQuery.parseJSON, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - context: true, - url: true - } - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - // Callbacks context - callbackContext = s.context || s, - // Context for global events - // It's the callbackContext if one was provided in the options - // and if it's a DOM node or a jQuery collection - globalEventContext = callbackContext !== s && - ( callbackContext.nodeType || callbackContext instanceof jQuery ) ? - jQuery( callbackContext ) : jQuery.event, - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - // Status-dependent callbacks - statusCode = s.statusCode || {}, - // ifModified key - ifModifiedKey, - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - // Response headers - responseHeadersString, - responseHeaders, - // transport - transport, - // timeout handle - timeoutTimer, - // Cross-domain detection vars - parts, - // The jqXHR state - state = 0, - // To know if global events are to be dispatched - fireGlobals, - // Loop variable - i, - // Fake xhr - jqXHR = { - - readyState: 0, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( !state ) { - var lname = name.toLowerCase(); - name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Raw string - getAllResponseHeaders: function() { - return state === 2 ? responseHeadersString : null; - }, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( state === 2 ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[1].toLowerCase() ] = match[ 2 ]; - } - } - match = responseHeaders[ key.toLowerCase() ]; - } - return match === undefined ? null : match; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( !state ) { - s.mimeType = type; - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - statusText = statusText || "abort"; - if ( transport ) { - transport.abort( statusText ); - } - done( 0, statusText ); - return this; - } - }; - - // Callback for when everything is done - // It is defined here because jslint complains if it is declared - // at the end of the function (which would be more logical and readable) - function done( status, nativeStatusText, responses, headers ) { - - // Called once - if ( state === 2 ) { - return; - } - - // State is "done" now - state = 2; - - // Clear timeout if it exists - if ( timeoutTimer ) { - clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - var isSuccess, - success, - error, - statusText = nativeStatusText, - response = responses ? ajaxHandleResponses( s, jqXHR, responses ) : undefined, - lastModified, - etag; - - // If successful, handle type chaining - if ( status >= 200 && status < 300 || status === 304 ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - - if ( ( lastModified = jqXHR.getResponseHeader( "Last-Modified" ) ) ) { - jQuery.lastModified[ ifModifiedKey ] = lastModified; - } - if ( ( etag = jqXHR.getResponseHeader( "Etag" ) ) ) { - jQuery.etag[ ifModifiedKey ] = etag; - } - } - - // If not modified - if ( status === 304 ) { - - statusText = "notmodified"; - isSuccess = true; - - // If we have data - } else { - - try { - success = ajaxConvert( s, response ); - statusText = "success"; - isSuccess = true; - } catch(e) { - // We have a parsererror - statusText = "parsererror"; - error = e; - } - } - } else { - // We extract error from statusText - // then normalize statusText and status for non-aborts - error = statusText; - if ( !statusText || status ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = "" + ( nativeStatusText || statusText ); - - // Success/Error - if ( isSuccess ) { ... truncated to 1.0MB