rroonga 1.2.7-x86-mingw32 → 1.3.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +1 -0
- data/Rakefile +1 -0
- data/bin/grntest-log-analyze +123 -0
- data/bin/groonga-query-log-extract +117 -0
- data/ext/groonga/rb-grn-accessor.c +7 -5
- data/ext/groonga/rb-grn-array-cursor.c +1 -1
- data/ext/groonga/rb-grn-array.c +34 -44
- data/ext/groonga/rb-grn-column.c +74 -38
- data/ext/groonga/rb-grn-context.c +41 -16
- data/ext/groonga/rb-grn-database.c +50 -43
- data/ext/groonga/rb-grn-double-array-trie-cursor.c +40 -0
- data/ext/groonga/rb-grn-double-array-trie.c +530 -0
- data/ext/groonga/rb-grn-encoding-support.c +1 -1
- data/ext/groonga/rb-grn-encoding.c +1 -1
- data/ext/groonga/rb-grn-exception.c +1 -1
- data/ext/groonga/rb-grn-expression-builder.c +1 -1
- data/ext/groonga/rb-grn-expression.c +63 -51
- data/ext/groonga/rb-grn-fix-size-column.c +7 -7
- data/ext/groonga/rb-grn-hash-cursor.c +1 -1
- data/ext/groonga/rb-grn-hash.c +42 -39
- data/ext/groonga/rb-grn-index-column.c +35 -31
- data/ext/groonga/rb-grn-index-cursor.c +1 -1
- data/ext/groonga/rb-grn-logger.c +23 -18
- data/ext/groonga/rb-grn-object.c +69 -40
- data/ext/groonga/rb-grn-operator.c +1 -1
- data/ext/groonga/rb-grn-patricia-trie-cursor.c +1 -1
- data/ext/groonga/rb-grn-patricia-trie.c +122 -90
- data/ext/groonga/rb-grn-plugin.c +8 -7
- data/ext/groonga/rb-grn-posting.c +1 -1
- data/ext/groonga/rb-grn-procedure.c +1 -1
- data/ext/groonga/rb-grn-query.c +12 -12
- data/ext/groonga/rb-grn-record.c +1 -1
- data/ext/groonga/rb-grn-snippet.c +26 -19
- data/ext/groonga/rb-grn-table-cursor-key-support.c +1 -1
- data/ext/groonga/rb-grn-table-cursor.c +4 -3
- data/ext/groonga/rb-grn-table-key-support.c +23 -23
- data/ext/groonga/rb-grn-table.c +280 -149
- data/ext/groonga/rb-grn-type.c +11 -7
- data/ext/groonga/rb-grn-utils.c +81 -9
- data/ext/groonga/rb-grn-variable-size-column.c +1 -1
- data/ext/groonga/rb-grn-variable.c +2 -2
- data/ext/groonga/rb-grn-view-accessor.c +1 -1
- data/ext/groonga/rb-grn-view-cursor.c +1 -1
- data/ext/groonga/rb-grn-view-record.c +1 -1
- data/ext/groonga/rb-grn-view.c +43 -34
- data/ext/groonga/rb-grn.h +10 -2
- data/ext/groonga/rb-groonga.c +1 -1
- data/lib/1.8/groonga.so +0 -0
- data/lib/1.9/groonga.so +0 -0
- data/lib/groonga/context.rb +16 -41
- data/lib/groonga/dumper.rb +41 -10
- data/lib/groonga/expression-builder-19.rb +40 -0
- data/lib/groonga/expression-builder.rb +56 -26
- data/lib/groonga/grntest-log.rb +206 -0
- data/lib/groonga/pagination.rb +21 -19
- data/lib/groonga/patricia-trie.rb +7 -10
- data/lib/groonga/posting.rb +1 -1
- data/lib/groonga/query-log.rb +348 -0
- data/lib/groonga/record.rb +47 -143
- data/lib/groonga/schema.rb +679 -406
- data/lib/groonga/view-record.rb +4 -10
- data/lib/groonga.rb +4 -2
- data/rroonga-build.rb +1 -1
- data/test/groonga-test-utils.rb +8 -0
- data/test/test-array.rb +25 -4
- data/test/test-column.rb +8 -8
- data/test/test-database.rb +2 -3
- data/test/test-double-array-trie.rb +164 -0
- data/test/test-expression-builder.rb +2 -2
- data/test/test-expression.rb +10 -9
- data/test/test-gqtp.rb +2 -2
- data/test/test-hash.rb +32 -8
- data/test/test-patricia-trie.rb +34 -10
- data/test/test-query-log.rb +258 -0
- data/test/test-record.rb +6 -5
- data/test/test-schema-create-table.rb +8 -0
- data/test/test-schema-dumper.rb +6 -0
- data/test/test-schema.rb +491 -234
- data/test/test-table-select.rb +9 -0
- data/test/test-table.rb +17 -24
- data/vendor/local/bin/grntest.exe +0 -0
- data/vendor/local/bin/groonga-query-log-analyzer +22 -17
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/mecab-config +2 -2
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/include/groonga/groonga.h +251 -5
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +1 -1
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +1 -1
- data/vendor/local/lib/pkgconfig/groonga.pc +3 -2
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_images/geo-points.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt +32 -31
- data/vendor/local/share/doc/groonga/en/html/_sources/commands/select.txt +7 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt +6 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/executables/grntest.txt +6 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/geolocation_search.txt +52 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/index.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install.txt +31 -40
- data/vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt +109 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +118 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources/tutorial/tutorial03.txt → en/html/_sources/tutorial/data.txt} +5 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/{tutorial05.txt → drilldown.txt} +8 -7
- data/vendor/local/share/doc/groonga/{source/tutorial/tutorial06.txt → en/html/_sources/tutorial/index.txt} +8 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt +297 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/{tutorial09.txt → lexicon.txt} +0 -0
- data/vendor/local/share/doc/groonga/{source/tutorial/tutorial07.txt → en/html/_sources/tutorial/match_columns.txt} +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/{tutorial10.txt → micro_blog.txt} +17 -17
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +103 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/{tutorial08.txt → patricia_trie.txt} +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt +57 -0
- data/vendor/local/share/doc/groonga/{source/tutorial/tutorial04.txt → en/html/_sources/tutorial/search.txt} +17 -12
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial.txt +11 -2
- data/vendor/local/share/doc/groonga/en/html/_static/groonga.css +9 -0
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/command_version.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/commands/cache_limit.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/check.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/clearlock.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/column_create.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/column_list.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/column_remove.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/define_selector.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/defrag.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/dump.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/commands/load.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/log_level.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/log_put.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/log_reopen.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/commands/quit.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/commands/select.html +44 -39
- data/vendor/local/share/doc/groonga/en/html/commands/shutdown.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/commands/status.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/suggest.html +47 -47
- data/vendor/local/share/doc/groonga/en/html/commands/table_create.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/table_list.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/table_remove.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/view_add.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +13 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/contribution.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/executables/grnslap.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/executables/grntest.html +55 -55
- data/vendor/local/share/doc/groonga/en/html/executables/groonga-http.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/executables/groonga-suggest-create-dataset.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/executables/groonga.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/executables.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/expr.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/functions/edit_distance.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions/geo_distance.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions/geo_in_circle.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions/geo_in_rectangle.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions/now.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/functions/rand.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/genindex.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +176 -0
- data/vendor/local/share/doc/groonga/en/html/index.html +149 -138
- data/vendor/local/share/doc/groonga/en/html/install.html +57 -65
- data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/log.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +281 -0
- data/vendor/local/share/doc/groonga/en/html/news.html +219 -65
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/pseudo_column.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/reference.html +69 -69
- data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/spec.html +15 -15
- data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial03.html → data.html} +32 -32
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial05.html → drilldown.html} +31 -31
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial06.html → index.html} +44 -44
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +438 -0
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial09.html → lexicon.html} +16 -16
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial07.html → match_columns.html} +39 -39
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial10.html → micro_blog.html} +43 -43
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +236 -0
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial08.html → patricia_trie.html} +27 -27
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +197 -0
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial04.html → search.html} +41 -35
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +60 -55
- data/vendor/local/share/doc/groonga/en/html/type.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_images/geo-points.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt +32 -31
- data/vendor/local/share/doc/groonga/ja/html/_sources/commands/select.txt +7 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt +6 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/executables/grntest.txt +6 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/geolocation_search.txt +52 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/index.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install.txt +31 -40
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt +109 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +118 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources/tutorial/tutorial03.txt → ja/html/_sources/tutorial/data.txt} +5 -5
- data/vendor/local/share/doc/groonga/{source/tutorial/tutorial05.txt → ja/html/_sources/tutorial/drilldown.txt} +8 -7
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/{tutorial06.txt → index.txt} +8 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt +297 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/{tutorial09.txt → lexicon.txt} +0 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources/tutorial/tutorial07.txt → ja/html/_sources/tutorial/match_columns.txt} +4 -4
- data/vendor/local/share/doc/groonga/{source/tutorial/tutorial10.txt → ja/html/_sources/tutorial/micro_blog.txt} +17 -17
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +103 -0
- data/vendor/local/share/doc/groonga/{source/tutorial/tutorial08.txt → ja/html/_sources/tutorial/patricia_trie.txt} +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt +57 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources/tutorial/tutorial04.txt → ja/html/_sources/tutorial/search.txt} +17 -12
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial.txt +11 -2
- data/vendor/local/share/doc/groonga/ja/html/_static/groonga.css +9 -0
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/command_version.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/commands/cache_limit.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/check.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/clearlock.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/column_create.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/column_list.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/column_remove.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/define_selector.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/defrag.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/dump.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/commands/load.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/log_level.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/log_put.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/log_reopen.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/commands/quit.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/commands/select.html +44 -39
- data/vendor/local/share/doc/groonga/ja/html/commands/shutdown.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/commands/status.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/suggest.html +47 -47
- data/vendor/local/share/doc/groonga/ja/html/commands/table_create.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/table_list.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/table_remove.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/view_add.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands.html +41 -41
- data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +13 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/executables/grnslap.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/executables/grntest.html +55 -55
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga-http.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga-suggest-create-dataset.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/executables.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/expr.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/functions/edit_distance.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_distance.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_in_circle.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_in_rectangle.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions/now.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/functions/rand.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +165 -0
- data/vendor/local/share/doc/groonga/ja/html/index.html +144 -133
- data/vendor/local/share/doc/groonga/ja/html/install.html +52 -65
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/log.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +282 -0
- data/vendor/local/share/doc/groonga/ja/html/news.html +203 -63
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/pseudo_column.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/reference.html +69 -69
- data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/spec.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial03.html → data.html} +31 -31
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial05.html → drilldown.html} +31 -31
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial06.html → index.html} +44 -44
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial01.html → introduction.html} +140 -129
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial09.html → lexicon.html} +16 -16
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial07.html → match_columns.html} +39 -39
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial10.html → micro_blog.html} +43 -43
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial02.html → network.html} +56 -58
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial08.html → patricia_trie.html} +27 -27
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +198 -0
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial04.html → search.html} +41 -35
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +59 -54
- data/vendor/local/share/doc/groonga/ja/html/type.html +30 -30
- data/vendor/local/share/doc/groonga/source/characteristic.txt +32 -31
- data/vendor/local/share/doc/groonga/source/commands/select.txt +7 -1
- data/vendor/local/share/doc/groonga/source/commands/suggest-completion.log +5 -0
- data/vendor/local/share/doc/groonga/source/commands/suggest-correction.log +5 -0
- data/vendor/local/share/doc/groonga/source/commands/suggest-learn-completion.log +13 -0
- data/vendor/local/share/doc/groonga/source/commands/suggest-learn-correction.log +15 -0
- data/vendor/local/share/doc/groonga/source/commands/suggest-learn-suggestion.log +9 -0
- data/vendor/local/share/doc/groonga/source/commands/suggest-mixed.log +5 -0
- data/vendor/local/share/doc/groonga/source/commands/suggest-suggestion.log +5 -0
- data/vendor/local/share/doc/groonga/source/conf.py +1 -1
- data/vendor/local/share/doc/groonga/source/contribution/documentation/i18n.txt +6 -0
- data/vendor/local/share/doc/groonga/source/example/completion-1.log +2 -2
- data/vendor/local/share/doc/groonga/source/example/correction-1.log +2 -2
- data/vendor/local/share/doc/groonga/source/example/suggestion-1.log +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial03-1.log → tutorial/data-1.log} +0 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial03-2.log → tutorial/data-2.log} +0 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial03-3.log → tutorial/data-3.log} +0 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial05-1.log → tutorial/drilldown-1.log} +6 -6
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-2.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial05-3.log → tutorial/drilldown-3.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-4.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial05-5.log → tutorial/drilldown-5.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial05-6.log → tutorial/drilldown-6.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-1.log +25 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial06-2.log → tutorial/index-2.log} +4 -4
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-3.log +21 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial06-4.log → tutorial/index-4.log} +3 -3
- data/vendor/local/share/doc/groonga/source/example/{tutorial06-5.log → tutorial/index-5.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial06-6.log → tutorial/index-6.log} +5 -5
- data/vendor/local/share/doc/groonga/source/example/{tutorial06-7.log → tutorial/index-7.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-1.log +18 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-10.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-11.log → tutorial/introduction-11.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-12.log → tutorial/introduction-12.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-13.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-14.log +9 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-15.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-16.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-17.log → tutorial/introduction-17.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-2.log +10 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-3.log +10 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-4.log +7 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-5.log → tutorial/introduction-5.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-6.log → tutorial/introduction-6.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-7.log → tutorial/introduction-7.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-8.log → tutorial/introduction-8.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-9.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial07-1.log → tutorial/match_columns-1.log} +8 -8
- data/vendor/local/share/doc/groonga/source/example/{tutorial07-2.log → tutorial/match_columns-2.log} +4 -4
- data/vendor/local/share/doc/groonga/source/example/{tutorial07-3.log → tutorial/match_columns-3.log} +7 -7
- data/vendor/local/share/doc/groonga/source/example/{tutorial07-4.log → tutorial/match_columns-4.log} +4 -4
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-1.log → tutorial/micro_blog-1.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-10.log → tutorial/micro_blog-10.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-2.log → tutorial/micro_blog-2.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-3.log → tutorial/micro_blog-3.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-4.log → tutorial/micro_blog-4.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-5.log → tutorial/micro_blog-5.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-6.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-7.log → tutorial/micro_blog-7.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-8.log → tutorial/micro_blog-8.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-9.log → tutorial/micro_blog-9.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/network-1.log +8 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial02-2.log → tutorial/network-2.log} +1 -1
- data/vendor/local/share/doc/groonga/source/example/{tutorial02-3.log → tutorial/network-3.log} +3 -3
- data/vendor/local/share/doc/groonga/source/example/{tutorial08-1.log → tutorial/patricia_trie-1.log} +4 -4
- data/vendor/local/share/doc/groonga/source/example/{tutorial08-2.log → tutorial/patricia_trie-2.log} +6 -6
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-1.log +27 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-2.log +7 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-3.log +7 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial04-1.log → tutorial/search-1.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-2.log +7 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-3.log +7 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial04-4.log → tutorial/search-4.log} +4 -4
- data/vendor/local/share/doc/groonga/source/example/{tutorial04-5.log → tutorial/search-5.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-6.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial04-7.log → tutorial/search-7.log} +2 -2
- data/vendor/local/share/doc/groonga/source/executables/grntest.txt +6 -6
- data/vendor/local/share/doc/groonga/source/geolocation_search.txt +52 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.svg +188 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.svg +501 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.svg +275 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.svg +899 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.svg +249 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.svg +275 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.svg +743 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.svg +261 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record.svg +228 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.svg +241 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.svg +879 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.svg +879 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.svg +879 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.svg +602 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.svg +917 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.svg +561 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.svg +389 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.svg +469 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.svg +514 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.svg +595 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.svg +424 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.svg +549 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.svg +241 -0
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-2bit.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-2bit.svg +203 -0
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.svg +264 -0
- data/vendor/local/share/doc/groonga/source/images/geo-in-rectangle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-distance.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-distance.svg +317 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-circle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-circle.svg +306 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.svg +304 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-sort.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-sort.svg +383 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points.svg +296 -0
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-circle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-circle.svg +287 -0
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.svg +174 -0
- data/vendor/local/share/doc/groonga/source/index.txt +1 -0
- data/vendor/local/share/doc/groonga/source/install.txt +31 -40
- data/vendor/local/share/doc/groonga/source/news/senna.txt +109 -0
- data/vendor/local/share/doc/groonga/source/news.txt +118 -0
- data/vendor/local/share/doc/groonga/source/tutorial/{tutorial03.txt → data.txt} +5 -5
- data/vendor/local/share/doc/groonga/{ja/html/_sources/tutorial/tutorial05.txt → source/tutorial/drilldown.txt} +8 -7
- data/vendor/local/share/doc/groonga/{en/html/_sources/tutorial/tutorial06.txt → source/tutorial/index.txt} +8 -8
- data/vendor/local/share/doc/groonga/source/tutorial/introduction.txt +297 -0
- data/vendor/local/share/doc/groonga/source/tutorial/{tutorial09.txt → lexicon.txt} +0 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources/tutorial/tutorial07.txt → source/tutorial/match_columns.txt} +4 -4
- data/vendor/local/share/doc/groonga/{ja/html/_sources/tutorial/tutorial10.txt → source/tutorial/micro_blog.txt} +17 -17
- data/vendor/local/share/doc/groonga/source/tutorial/network.txt +103 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources/tutorial/tutorial08.txt → source/tutorial/patricia_trie.txt} +4 -4
- data/vendor/local/share/doc/groonga/source/tutorial/query_expansion.txt +57 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources/tutorial/tutorial04.txt → source/tutorial/search.txt} +17 -12
- data/vendor/local/share/doc/groonga/source/tutorial.txt +11 -2
- data/vendor/local/share/man/ja/man1/groonga.1 +449 -772
- data/vendor/local/share/man/man1/groonga.1 +591 -875
- metadata +232 -124
- data/vendor/local/etc/groonga/init.d/redhat/groonga +0 -160
- data/vendor/local/etc/groonga/init.d/redhat/sysconfig/groonga +0 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/tutorial01.txt +0 -296
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/tutorial02.txt +0 -102
- data/vendor/local/share/doc/groonga/en/html/tutorial/tutorial01.html +0 -409
- data/vendor/local/share/doc/groonga/en/html/tutorial/tutorial02.html +0 -235
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/tutorial01.txt +0 -296
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/tutorial02.txt +0 -102
- data/vendor/local/share/doc/groonga/source/example/tutorial01-1.log +0 -6
- data/vendor/local/share/doc/groonga/source/example/tutorial01-10.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial01-13.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial01-14.log +0 -9
- data/vendor/local/share/doc/groonga/source/example/tutorial01-15.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial01-16.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial01-2.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial01-3.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial01-4.log +0 -7
- data/vendor/local/share/doc/groonga/source/example/tutorial01-9.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial02-1.log +0 -8
- data/vendor/local/share/doc/groonga/source/example/tutorial04-2.log +0 -7
- data/vendor/local/share/doc/groonga/source/example/tutorial04-3.log +0 -7
- data/vendor/local/share/doc/groonga/source/example/tutorial04-6.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial05-2.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial05-4.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial06-1.log +0 -25
- data/vendor/local/share/doc/groonga/source/example/tutorial06-3.log +0 -21
- data/vendor/local/share/doc/groonga/source/example/tutorial10-6.log +0 -5
- data/vendor/local/share/doc/groonga/source/tutorial/tutorial01.txt +0 -296
- data/vendor/local/share/doc/groonga/source/tutorial/tutorial02.txt +0 -102
- data/vendor/local/share/groonga/munin/plugins/groonga_cpu_load +0 -47
- data/vendor/local/share/groonga/munin/plugins/groonga_cpu_time +0 -57
- data/vendor/local/share/groonga/munin/plugins/groonga_disk +0 -162
- data/vendor/local/share/groonga/munin/plugins/groonga_memory +0 -51
- data/vendor/local/share/groonga/munin/plugins/groonga_n_records +0 -110
- data/vendor/local/share/groonga/munin/plugins/groonga_query_performance +0 -133
- data/vendor/local/share/groonga/munin/plugins/groonga_status +0 -84
@@ -1 +1 @@
|
|
1
|
-
Search.setIndex({objects:{"":{"--dir":[45,0,1],"--document-root":[49,0,1],"--cache-limit":[49,0,1],"-P":[52,0,1],"--pid-path":[49,0,1],"--log-output-dir":[45,0,1],"-d":[49,0,1],"-a":[49,0,1],"-c":[49,0,1],"-m":[52,0,1],"-l":[49,0,1],"-n":[49,0,1],"-i":[49,0,1],"-h":[49,0,1],"-t":[49,0,1],"-p":[49,0,1],"-s":[49,0,1],"--log-path":[49,0,1],"--default-match-escalation-threshold":[49,0,1],"-e":[49,0,1],"--config-path":[49,0,1],"--query-log-path":[49,0,1],"--protocol":[49,0,1],"--bind-address":[49,0,1],"--noftp":[45,0,1],"--groonga":[45,0,1]}},terms:{"\u305a\u308c":[12,49,61,8,10,29,82,73,42],"\u8a73\u7d30":[23,79,64,45,81],"\u3002groonga":[4,55,26,30,32,82,35,15,80],"\u51fa\u6765":[29,30,31,34,35],localstatedir:[70,77],"\u3082\u3089\u3063":29,",\"suggest":68,prefix:[60,77,12,68,64],"\u3002scan":64,"\u30c7\u30fc\u30bf":[2,5,6,61,15,16,17,20,29,31,75,34,36,39,12,48,23,60,68,55,70,73,74,78],"\u6e1b\u3089":48,"\u3070\u308c\u308b":70,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[49,79],"\u811a\u6ce8":[44,73,7,29,37,39,18],"\u6539\u826f":[20,2,55,70,72,60]," scan":64," thread":[22,45],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[49,6,81],"\u79d2\u60c5":60,"_column":[20,45,46,28,5],"\"ab":16,"\u30df\u30ea":[60,39,75]," Lynx":[20,77],spec:70," GitHub":81," use":[50,81],editrc:60," stamp":22,"\u30d0\u30c3\u30d5\u30a1ID":50,"\u6b63\u5e38":45,"\u3066\u307f\u307e\u3057\u3087":75,"\u300cOffGao":74,"/plugins":70,"\u30b9\u30ab\u30e9":41,"\u30df\u30b9":15,"\u3065\u3051":82,"\u3059\u3067\u306b":9,"\u5408\u8a08":[23,50,45],"\u6761\u4ef6\u5f0f":10,"\u6700\u9577":[26,45],starttime:4,"\u5730\u7cfb":[55,39],"\u7c21\u5358":[23,29]," threads":22,"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":68,"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":70,"-repository":77,"/Fedora":70,"\u3044\u304f\u3064\u304b":[12,64,26,56,28]," column":[29,31,75,68],"\u79d2x":[75,39],"\u89e3\u9664":[49,2,69,67],"\u4f5c\u3089\u308c":45," install":[59,77,52,64,45],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":60,"\u4e00\u8a9e":23,"\"cache":[29,30]," CUTTER":64,"[2":49," domain":[24,33],"\u65e5\u672c\u6e2c":[55,39],"\u30ec\u30a4\u30e4":12,"\u6210\u529f":[19,54,71,26,8,11,30,67,32,37,14,42],"\u4e8b\u524d":[23,16]," lcov":64,"\u5f15\u304d":55,Visual:60,"\u30b7\u30f3\u30dc\u30eb":[26,32],"\u691c\u7d22":[2,46,10,13,15,17,20,26,28,29,75,33,34,35,36,63,23,40,12,48,49,68,55,70,71,72,73,74,77,78],net:33,"\u683c\u7d0d":[12,49,46,27,28,29,31,32,33,34,74,60,39,41],"\u4e8c\u3064":[46,82,45],args:49,"\u3042\u306a\u305f":56,"\u7fbd\u7530":74,"\u578b\u3068\u3057\u3066":39,"\u306f\u3044\u3051":11," has":[22,58],"\u5fdc\u3058":[73,45],"& ":[23,46,75,77,12],"\u9069\u7528":10,"\u3002output":6,"\u30af\u30a8\u30ea\u30ed\u30b0":[15,60,78,48],china:33,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":25,GRN:[60,12,70,10],path:[49,27,41],"\u300cComments":74,"\u4e0e\u3048":[12,49,61,29,33,23],".ddl":45,"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":60," option":22,"\u305a\u306b":26,"_key":[2,68,74,28,29,30,31,75,10,34,35,36,33],"\u79cb\u8449":75,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":45,"\u4e2d\u8eab":[29,45],"\u5f62\u614b":[55,26,77],"_output":[71,33,10],":port":[49,79],serch:[68,48],"\u7ffb\u8a33":[80,81],"\u63a8\u79fb":82,"\u300c\"":[49,29],"\u300c#":[70,74],"\"sound":48,"\u300c.":31,"\u8fd4\u5374":[29,41,27,10],"\u901a\u4fe1":[20,55,51,52,45,30,57,79,80,17],"-YYY":81,"\u3068\u307f":79,total:[50,45]," Blog":35,"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[80,12],"\u592a\u90ce":34,noarch:77,"\u9023\u7d9a":[23,46,48],"\u30d7\u30ed\u30c8\u30b3\u30eb\u30e2\u30fc\u30c9":30,typo:60,ip:45,TABLE:[36,29,26,27,70],type:[68,48,78,74,75,45,29,31,32,33,34,35,36,15,41],"\"n":[29,30],"\u30d6\u30ed\u30b0":[74,35],"_LIBRARY":77,"\u6709\u529b":68," opened":22,"\u73fe\u5728\u5730":74,autogen:81,"\u52d5\u753b":34,"\u901a\u5e38grntest":45,"\u4e0b\u304c\u308a":23,it:22,"_register":[72,34],"(pos":[44,7,18],EMERG:[8,42],"-bind":[49,60],"_command":[29,30],"\u3064\u3065\u3044":74,"\u7518\u6817":74,"\u4ed5\u69d8":[20,68,65,70,79,82,40],"\u6709\u52b9":[49,26,61,10,29,30,31,45],"\u62bc\u3057":29,"\u4ee5\u4e0b":[6,46,8,75,45,15,16,29,26,27,49,32,33,34,59,39,41,81,43,12,48,23,50,79,10,61,64,68,73,74,77,78,42],"\u4ee5\u4e0a":[12,68,49,46,45,29,64,81],mm:22,Text:39,"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":45,"\u62bc\u3059":[29,81],"\u30a2\u30fc\u30ab\u30a4\u30d6":81,mv:19,".name":[50,74],"_EXPR":12,"\u300c_":29,"\u306b\u95a2\u3057":[12,45],"-macports":77,"\u5316\u6642":60,"\u304c\u3063":35,"-> ":70,JavaScript:[79,20,30,75,17],updated:23,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[2,69],"\u660e\u793a":[49,15,45,55],"\u6b21\u90ce":34,"2Gbyte":39," pdf":59,LF:52,end:52,LC:81,eng:[15,68],"\u540d\u524d":[26,4,5,6,7,8,9,10,11,18,19,20,21,25,69,27,28,29,67,32,37,38,39,41,42,44,47,75,49,50,52,54,79,45,60,61,14,68,73,70,71,72,74,76,81,82]," chunk":50,travel:74,"3\u3064":64,"\u30d7\u30ed\u30bb\u30b9":[20,4,49,25,52,45,55,29,30,82,50],"\nworks":22,config:[2,82],"-lines":60,"\u30b4\u30df":[50,70],"\u7d42\u4e86":[49,25,70,45,30,82]," title":[29,30,31,34,35],description:[46,74],less:12,"_plugins":60,"\u30b9\u30fc\u30d7":46,"\ndebug":[8,42],lat:45," hobby":22,"_title":[29,45,35],types:[15,78,68,48],"/IP":55,"\u305d\u306e\u5f8c":66,".tar":81,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[20,31,17,74],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":70,"\u5c0f\u3055\u3044":[12,72],"\u56fa\u5b9a\u9577":70,">#{":22,"\u901a\u5e38":[29,31,39,28],"\uff08TokenMecab":23,"\u5272\u308a\u5f53\u3066":70,"\u500b\u5b9a":51,"\u30e6\u30fc\u30b6":[12,48,73,26,45,32,78,15,39,16],"\u3069\u3053":60,"\u4e88\u5b9a":[24,55,82],"\u3042\u305f\u308a":70,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[20,24,70,45,57,60,59,80,62,81],"\u7acb\u3061\u4e0a\u3052":45," smaller":22,"\u5358\u4e00":32," url":6,"\u305f\u304f":[16,81],"\u305f\u304b":[60,48],"\u30d1\u30c8\u30ea\u30b7\u30a2":[36,29,26,46],japan:33,"\u305f\u3044":[77,29,24,78,45,49,30,33,34,35,15,39],gqtp:[49,55,51,52,45,80],"\u6d6e\u52d5":[31,39],"\u9ad8\u5ea6":73,LongText:39,"\u8fd4\u3057":[44,12,68,48,4,7,10,29,47,76,78,15,38,16,18],"\u8fd4\u3055":[68,50,61,9,10,82],"\u305f\u3073":[75,82,45],"\u6574\u6570":[31,39,9,28,76],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[20,49,55,70,52,45,79,77,59,80,64]," message":[42,35],"\u3002grntest":45," speed":16,"\u30d7\u30ed\u30c8\u30b3\u30eb":[20,55,52,45,30,17],similar:12,"\u81ea\u52d5\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":[20,55],"\u30c6\u30b9\u30c8\u30c4\u30fc\u30eb":45,"\u3082\u3063\u3068\u3082":64,"\u300coutput":79,"/Functions":64,"\u8a8d\u8a3c":30,"\u8fd4\u5024":[26,6,7,8,9,10,11,18,19,21,25,69,67,47,32,37,38,41,42,44,4,50,54,79,61,68,71,76,14,27],echo:77,"\u5168\u3066":[39,10,35],"\u3072\u3089":15,"_select":[73,80,12],"\ncustomized":22,"\u7d44\u307f\u8fbc\u3093":26,"\u691c\u8a3c":52,"(point":[44,7,18],"\u6771\u4eac":[23,46,75,74],"2\u3064":[0,38,74,78,35],API:[60,12,70,72,73],each:[15,78,68,48],PROGRESS:22,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[20,2,50,29,41,34,35,17],"_$":68,"_\"":60,"\u30ec\u30d9\u30eb":[49,8,42],serach:48,development:80,"\u30d1\u30b9":[49,70,52,72,79,45,60],"\u3002\uff08":[70,48,50,46,78,15,60,81],"\u3002\uff09":[2,48,70,78,60,81],"_DAT":60," clang":64,"\" ":[23,75,45],"\u3050\u308b\u3093\u3057\u304d":73,"\u3068\u3068":[24,81],TokenBigramSplitSymbolAlphaDigit:[23,48],"\u30ed\u30b0\u30d1\u30b9":70," Tracking":0,realtime:78,"\u304a\u3088\u3073":[49,26],"\u30da\u30a2":[15,78,16,48],rd:[23,46],moritapo:34,rc:22,"\u90e8\u5206":[23,46,64,12],"\".":33,Zenigata:34,"\u6570\u3048\u308b":55,"\u77ed\u3044":[70,74],SYNOPSTIS:58,"/\uff09":70,"_tp":52,"\uff01\uff08":81,free:70,DLL:60," html":[59,81]," editor":81,"\u305f\u308a":[73,80,26,9],"\u305f\u3089":[15,70,81],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":41,"\u305f\u3081":[6,46,10,15,26,23,31,75,34,36,63,81,45,12,48,49,50,52,56,64,55,73,74,78,80],"\u30eb\u30fc\u30eb":70,"\u307e\u308d\u3086\u304d":36,"\u30eb\u30fc\u30d7":70,libedit:[60,2,70],"++":60,"\u63a5\u8fd1":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":70,filter:[46,23,70,71,10,74,75,34],COLUMN:[29,31,32,41],"\"ni":15,"\u8fd4\u308a":75,"\u8fd4\u308b":70,TIME:22,"\u30eb\u30fc\u30c8":60,ifexists:61,"|COMPRESS":41,"\u304a\u304b\u3057":70,"\u53ef\u5909":[60,69],Notification:22,"\u3002Time":74,"2\u5104":43,"\u304a\u3055\u307e\u308b":75,"_next":70," processed":22,"> ":[72,29,30,31,75,33,34,35,36]," brew":77,"\u6607\u964d":[26,10],"1\u884c":45,"\u30b5\u30dd\u30fc\u30c8":[2,70,45,82,60,39],"\u540c\u4e00":[45,46,26,28,29,32,10,35,82],"\u3002:":[6,46,61,10,11,15,16,26,27,23,32,59,41,81,45,48,49,50,79,82,64,68,71,77,78],top:[44,60],"_obj":[60,12,34],"\u4f7f\u308f":[55,15,60],"\u533a\u5207\u308a":[68,49,61,6,52,10,29,31,33,78],"\u533a\u5207\u308b":70,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[49,79],"(Windows":45,"\u3002id\u30d1\u30e9\u30e1\u30fc\u30bf":11,"\u5358\u4f4d":[70,7,46,18],"_clear":60,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":50,"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[49,71,10],".com":[29,31,75,33,77,81],"\u5358\u4f53":45,"\u3069\u3061\u3089\u304b":30,nsubrecs:33,"\u5408\u5bbf":74,"\u30b9\u30bf\u30a4\u30eb":49,"\u30d8\u30eb\u30d7":64,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":64,"\u30bd\u30b1\u30c3\u30c8":[69,6,8,9,10,11,19,21,25,54,27,67,32,37,41,42,4,50,61,71,26,14]," sphinx":59,"\u30a8\u30e9\u30fc":[19,2,54,71,82,26,8,10,11,67,32,45,60,37,14,42],Animation:34,"\u5834\u5408":[2,26,4,6,46,8,9,10,11,16,18,19,23,54,69,67,29,30,31,32,33,34,35,37,39,42,43,12,48,49,50,52,79,45,60,61,14,68,55,70,71,74,75,76,77,81,82],"\u3002grn":[73,12],"\u5f93\u3063":[26,79,10]," followee":74,"\u304b\u3069\u3046":[23,10],latency:45,"\n>":[68,29,30,31,75,33,34,35,36],"\u7279\u6b8a":[79,45],"\u4e00\u89a7":[20,53,5,49,50,23,31,34,74]," and":[80,22],",\\\"":61,"\u30fb\u5168":[71,10],"/run":49,"\n-":[67,11],OLAP:55,"\n(":22,"-port":[49,45],They:22,"_distance":[20,2,5,7,53,75,34,38],"\n%":[49,6,29,30,77,64,81],"\n ":[23,50,71,27,45,4,74,10,41],"\u5f93\u3046":70,"\n\"":45,"\n#":[49,59,45],"\n]":[15,6,78,61,48]," index":[34,35],"\u30d9\u30af\u30c8\u30eb":39,"\u69d8\u3005":[12,73,29,75,80,64],"/share":[49,60],"\n[":[26,6,8,9,45,15,54,69,67,29,30,31,32,33,34,35,36,75,23,42,48,49,50,61,68,71,74,78],"\u30b1\u30fc\u30b9":23,"\u7d22\u7528":[20,17,29],"\u3044\u307e\u305b":[65,68,73],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":81,"\u3084\u3059\u3044":2,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":50,"\u7701\u7565":[49,61,45,30,76,15],contain:12,"\u4f7f\u3063":[0,12,48,23,50,46,29,75,34,80,16,81],"\u3072\u3068\u3064":38,"\u30b5\u30b8\u30a7\u30b9\u30c8":[20,68,65,70,58,60,16],"\n}":12,"> /":77,"\u540c\u68b1":[70,81],"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":64,radious:18,"\n{":[4,61,45],doc:[24,58,81],Float:[31,7,39],".GitHub":81,"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[15,78,72,48],"\u767a\u751f":[23,2],"\u56fa\u5b9a":26,"\u4f7f\u3048":[60,10],"\u4f7f\u3046":[2,12,68,48,24,73,6,78,45,70,29,31,35,15,60,23,16],"\u30ed\u30fc\u30c9":[20,49,70,61,29,74,60,17],"\n`":[19,26,71,50,69,8,9,54,11,67,32,37,14,42],"\na":22,"\u66f8\u304d\u8fbc\u307f":74,"\u66f8\u304d\u8fbc\u307e":19,Fedora:[20,70,77],"\u30ec\u30b3\u30fc\u30c9":[61,10,11,29,26,27,28,49,75,33,34,36,39,43,12,23,60,68,55,70,71,74,73],"\u306a\u304a\u3053\u306e":45,"\u6210\u308a\u7acb\u3063":12,"\u307f\u306a\u3055":12,"\u65e5\u672c\u8a9e":[0,15,23,81],"\u8ffd\u52a0":[2,26,61,16,17,20,54,28,29,32,33,34,35,36,63,23,81,12,49,60,70,71,72,80]," X":[20,70,77],"\u5ea6\u8868":70,"\"\u308d\u3086\u304d":36,"\u300ccommand":79,"\u5c0f\u6570":[60,31,39,10]," \u3057\u3044":[23,46],"\u8868\u578b":26,grnslap:[1,20,52,5],"\u72ec\u81ea":[55,30,52],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[80,81],specify:81,"\u3002dump":6,"/null":2,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf":12,nanoseconds:22,"-frequency":60,"do":45," candidate":68,"-enable":70,"(location":[74,75,34]," Ventry":54,"\u3055\u3089\u306b":[55,74,16,34,82],de:81,db:[45,69,67,34],"_limit":[20,2,5,66,71,9,10,33],"\u5019\u88dc":[15,16,68,48],"\u8ab0\u304b":80,"\u91cd\u307f":[23,20,17,10,35],"\u8ab0\u304c":74,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[20,66,5,70,79,82],"\u3064\u304b":72,"\u5171\u8d77":[15,78,48],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[20,70,48,23,46,72,13,78,60],"\u91cd\u304f":23,"_index":74,"\u7d50\u679c":[6,46,45,13,15,20,28,29,75,33,35,12,48,23,78,79,10,64,73,70,74,55],"\u30ec\u30b3\u30fc\u30c9ID":11,Pentium:45,"`${":81," five":29,"-per":60,noftp:45," IndexBlog":35,"\u90e8\u54c1":55,"\nload":6,",\"location":[75,34],"\u69cb\u9020":[73,12,34],"\u5e83\u304f":[55,74],"_ctx":60,"\u591a\u3044":23," this":29,"< t1":12,result:12,":mm":22,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":46,"\u4e88\u7d04":[26,32],"<port":[49,45],"\u67d4\u8edf":73,"\u6a5f\u80fd":[2,12,68,48,49,65,70,45,73,30,74,78,15,16],"(Cutter":64,"\u7d99\u304e":55,"\u4e8c\u3064\u76ee":12,"\u3002status":29,score:[12,68,23,10,29,74,75,34],"\u30d7\u30ed\u30b0\u30e9\u30e0":[80,70],"\u5bbf\u99c5":74,"\u7bc4\u56f2":[44,20,23,55,82,26,10,29,74,28,17,18],".grn":6,"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":12,"_CHECK":64," information":81,"\u611f\u3058":74,"\u3044\u305a\u308c":[39,82,28],"\u3092\u901a\u3057":[49,29],"_get":60,"\u30b5\u30fc\u30d0\u30fc":60,"\u59cb\u307e\u308b":[15,45,32,16,28],"_NORMALIZE":[23,26,27,29,74,35],"\u534a\u5f84":18,"\u5373\u6642":55,"\u539f\u99c5":75,packages:[77,81],"\u3092\u901a\u3058":[55,75],"_level":[19,20,66,22,5,49,8,42],"\u69cb\u3044":[15,81],"\u3068\u3057\u307e\u3057\u3087":[29,35],country:33,ill:46,"\u30e9\u30f3\u30c0\u30e0":75,"\u30a8\u30f3\u30b3\u30fc\u30c9":[70,79],"\u66f8\u304d\u8fbc\u3093":74,"\u30ab\u30bf\u30ab\u30ca":[15,68],"|PERSISTENT":[27,41],"\u30e9\u30a4\u30d6\u30e9\u30eaSenna":[20,55],"\u4e00\u4ef6":11,"0e":45,"\u975e\u308f\u304b\u3061":[23,46],com:[51,33]," with":[50,22],"\u540c\u69d8":[12,55,45,75,10,34]," https":[77,81],"\u8a9e\u5f59":[43,20,46,26,29,63,17],"\u7f6e\u304d\u63db\u3048":[49,81],"\u5931\u6557":[60,70],"\u5f8c\u304b\u3089":6,"\u7d4c\u7def":[31,75],"/ja":81,"\u4fdd\u5b58":[20,49,55,31,75,34,74,39,17],"\u64a4\u5ec3":70,"\u95a2\u6570":[19,44,2,7,47,5,20,73,26,53,12,75,76,70,38,64,18]," formats":22,diff:45," following":22,"\uff13\u3064":39,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":45," Gothic":59,"\u7b49\u3057\u3044":[73,12],"\u3068\u3044\u3051":15," four":[29,22],"\u7b49\u3057\u304f":12,"\u672a\u63d0":77," some":22," {\"":68,"\u3068\u3044\u3046":[46,45,15,29,30,75,33,34,59,39,81,48,23,50,51,79,82,60,64,68,73,74,55],JSON:[60,70,61,68],"\u95b2\u89a7":30,")\u300d":[49,29],"\u3082\u3059\u3079":73,"_blog":35," array":50,")\u3002":11,DD:22,"\u7528\u3044":[19,20,2,23,55,79,10,29,30,74,75,64,34,35,59,60,17],"\u95a2\u4fc2\u5f0f":[80,12],"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[49,50,6,74,68],DB:[20,12,49,27,45,29,17],"\u30ab\u30f3\u30de":[29,6,61,33,10],worker:51,"\u65b0\u305f":12,"\u9ad8\u67d4":55,"\u554f\u984c":[2,50,70,45,72,60,81],NAME:58,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[20,56],Process:[20,22,5],"\u3069\u3093":[27,41],zlib:70,"_message":35,"\u305a\u3064":[49,74,45,35],near:12,"\u5165\u529b":[2,26,4,6,8,9,10,11,15,16,19,21,25,69,27,29,30,31,32,37,41,42,75,48,49,50,52,54,45,60,61,67,68,73,71,78,14],tasukuchan:74,".friends":34,TokenMecab:[23,26,46],"\u6700\u3082":50,"\u30d0\u30c3\u30d5\u30a1":50,"\u79d2\u6570":[4,74,39,10],"\u6709\u9650":10,is:[22,81]," execute":77,"\u5f62\u5f0f":[2,26,4,5,6,7,8,10,11,18,19,20,54,69,27,29,67,32,35,37,38,39,41,42,44,12,47,75,49,50,52,79,45,60,61,68,73,71,76,14]," can":[22,81],il:[23,46],"\u53d6\u5f97":[77,48,9,33,34,78,15],ia:[23,46],"\"}":[68,48,78,61,75,33,34,35,36,15],id:[68,48,49,6,78,27,10,11,29,30,31,75,28,34,35,36,15,23,41,33],"if":12,"\"@":74,TokenBigramIgnoreBlank:23," remained":22,"1\u4ef6":[23,74,11],"_rectangle":[44,2,5,20,70,53,75,60],suggest:[20,66,68,5,48,70,78,15,60,16],make:[52,77,64,81],"\u4f8b\u3048":[68,48,49,46,45,23,33,34,35,36,15,63,16,78],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":12,"-dataset":[1,20,68,5,48,58,72],"\u7121\u8996":[49,6,70,11,23,60],"\"]":[68,48,49,6,78,74,27,10,29,30,31,75,33,34,35,36,15,23,41],"\"_":[68,48,23,6,78,61,10,29,30,31,75,33,34,35,36,15,74],"\u3002rst":59,"\u3069\u3046":[19,2,54,23,71,26,8,11,67,32,37,14,42],"\"'":[23,46],"\u30e2\u30fc\u30c9":[29,30,12,79,45],"\"\"":29,"\"#":60,"\",":[6,61,45,15,27,29,30,31,75,33,34,35,36,23,41,48,49,50,10,68,74,78],"|:":22,"\u306b\u3088\u3063\u3066":[23,73,64,82,28],"\"/":[49,75],"\"(":34,"\")":[44,7,73,26,75,34,38],"_or":18,"\u5f15\u7528":49,"\u7591\u4f3c":[20,5,26,61,28,76]," Masahiro":70,"\":":[68,48,4,50,78,61,45,29,30,31,75,33,34,35,36,15,74],"\";":45," hash":74,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[23,46,48],"\u72b6\u614b":[4,49,50,70,52,10,29,23],"\u3055\u307e\u3056\u307e\u306a":[20,31,75,17,74],"\"\n":[36,74,77,45],options:[49,52,45,58],MATSUU:70,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[32,28],"\u3084\u3059\u304f":70,"\u58ca\u308c\u308b":[60,2,70],"\u30c4\u30fc\u30eb":[49,52,30,79,59,81],the:24,"IP\u30a2\u30c9\u30ec\u30b9":30,protocol:[49,30,79],"_score":[68,48,28,29,74,75,34,78,15,60],"||":[12,35],"_tags":[74,34],"\u3002\u30bf\u30b0":34,"\u5206\u5c90":64,"\u3002load":29,yes:[68,64],Maverick:60,"\u9577\u65b9":7,"\u5f8c\u65b9":[20,46,26,12,36,17],"\u30bd\u30fc\u30b9":60,"\u89e3\u50cf":70,keyserver:77,candidate:68,"\u9806\u6b21":[49,29,30,52,10],defrag:[20,2,69,66,5],".scr":45,Elapsed:22,"\u6e80\u8db3":10,"_selector":[49,20,66,71,5],easy:59,"\u30de\u30c3\u30c1":[23,60,2,12,10],"\u6790\u5668":26,"\"grn":34,"5f":45,"\u7528\u3044\u308b":[55,29,75,34,63],"\u300c,":6,"_close":[60,12],"\u7d4c\u5ea6":[20,74,39,75,55],"\u8ad6\u7406\u7a4d":10,"\u30af\u30ea\u30a2":60,"|>":22,"\u9001\u308b":81,"\u30d0\u30a4\u30ca\u30ea":77,"|'":10,"| ":[23,77,75,22,10],"\nrep":45,"\u6539\u540d":60,"\u30ed\u30c3\u30af":[2,49,55,69,67,60]," means":22,"\u691c\u7d22\u4f8b":[80,12],"/Linux":[20,77,60],"\u30d4\u30ea\u30aa\u30c9":[26,32],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[2,69,73,49,50,6,26,61,10,11,55,29,30,67,32,28,12,60,15,39,45],"_expr":[44,12,5,20,71,7,61,10,47,76,73,80,38,18]," report":80,"\"engine":[15,78,48],"\u307e\u3068\u3081\u308b":10,"\u7d20\u89e3":26," request":81,"\u30c6\u30b9\u30c8\u30c6\u30b9\u30c8":74,"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[49,29],"\u307e\u3068\u3081\u3066":[26,10],"_BUT":12,"_body":[23,32],"_str":74,"\u3080\u3044\u3061\u3083\u3044":74,"\u5358\u8a9e":[29,63,74,16,35],"\u4f7f\u7528":[2,7,61,10,11,12,29,26,49,30,32,23,46,4,50,79,45,73,70,74,77,82],"\u3002prefix":77,".zip":81,"\u9001\u3063":[24,80,81],"_table":[12,73,70,45,60,80],bottom:[44,60],"_right":[44,60]," firefox":81,point2:7,equal:12," result":35,select:[20,2,70,22,5,49,72,46,66,10,29,30,31,75,82,34,35,36,60,23],".sourceforge":56,"-command":[70,82],localhost:[30,52,45],"-threads":49,"\u6b63\u3057\u304f":15,"\u53c2\u8003":[29,68,81]," since":22,"\u3001\u300c":[2,49,46,29,30,74,34,15,23],"\u5b8c\u5168":[23,32,26,46,12],"\u304c\u308f\u304b\u308a":74,"\u6b63\u78ba":4,"\u30b5\u30fc\u30d3\u30b9":[1,20,79,5,55],IndexBlog:35," Table":49," body":[23,37,14,32],"\u3067\u3082\u3046":0," username":34,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[82,45],obj:50,"\u30c1\u30a7\u30c3\u30af":[50,70,52,45,60],"\u6b63\u3057\u3044":[16,48],"\"text":60,"\u5224\u5b9a":75,"(GET":52,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":49,"_columns":[20,22,74,23,70,71,10,29,31,75,33,34,35,17,68],"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":29,"\u7d44\u307f\u7acb\u3066\u308b":73,"\"starttime":[29,30],Use:[49,80]," last":74,"[[":[68,48,49,78,74,27,10,29,30,31,75,33,34,35,36,15,23,41],"float":31,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":45,"\u306a\u3055\u3093":80,"\nlevel":22,Critical:22,"\n``":[4,50],"\u6700\u521d":[29,10,60]," RAND":76,"\u89e3\u91c8":[70,6,12]," correction":48," number":[49,31,45],"&query":30,"_open":[60,70],"\u30d0\u30fc\u30b8\u30e7\u30f3":[2,55,70,72,29,82,60],editor:81,Ubuntu:[20,70,77,64,60],cdbs:60,"\u6291\u3048":23,"_db":[70,72],fork:[49,81],CORE:45,head:52,"(id\u30d1\u30e9\u30e1\u30fc\u30bf":11,TokenUnigram:26," make":[59,77,64],TokenBigramSplitSymbol:[23,70],"[\n":35,"true":[2,26,61,11,37,18,19,31,54,29,67,75,33,34,35,36,32,42,44,8,71,14],dump:[20,2,5,6,70,66],"\nLucid":70,"\u8981\u7d20":[12,49,54,61,45,29],"\u9032\u6570":50,"\u5165\u308b":[27,41],"\u5165\u308a":[27,29,30,74,33,41],grroonga:16," \uff08":[15,78,48],GeoPoint:[44,2,70,7,74,75,33,34,39,18],"<gqtp":45," friends":34,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":[26,46],"\u53ef\u5909\u9577":26,"\u30e1\u30c3\u30bb\u30fc\u30b8":[74,82],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[48,23,46,29,77,78,60],"\u5185\u8a33":23,"delete":[20,2,5,70,66,11],"\u6587\u5b57":[2,7,61,10,12,15,18,26,29,31,75,33,34,35,38,39,42,44,46,48,49,60,73,74],"\u30c6\u30ad\u30b9\u30c8":[70,45,81],"\u3002sortby":10,"\u306e\u304b":[29,31,46,74],"\u8abf\u3079\u308b":[44,18],"\u6c7a\u3081\u308b":12,Variety:34,Introduction:80," flags":32,"\u306e\u3044":[12,49,61,8,10,82,73,42],"\u5165\u3063":[15,35,64,34,29],score1:12,"\u53d7\u3051":[29,30,51,73],"' ":[22,23,26,74,75,34],"'/":29,"\u3002\u3044\u308f\u3086\u308b":55,"'-":49,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[20,55,10,74,33,34,17],"'*":10,ongaeshi:70,"'(":[49,29,61],"\u30a8\u30c7\u30a3\u30bf":81,"\u305f\u304b\u3063":48,"\u306e\u306b":[23,20,13,55]," Takahiro":70,no:[68,10],"\u306e\u3061":[29,31,10],"\u306e\u3067":[23,46,45,79,60,81],"_CODE":22,"\u914d\u5217":[12,50,46,27,29,31,32,34,74,60,70,41],Microsecond:22,"\u3002\u307e\u305f":[12,48,49,55,26,52,45,29,75,82,73,36,79,39],"\u306e\u307f":[19,46,68,23,55,6,26,61,9,10,29,12,79,28,77,35,36,15,81,64,33],test:[27,45,29,31,41,64],saerch:[68,48],TokenMeCab:46,"'\n":[23,75,34],"\u5c5e\u6027":[72,26,32,27,41],"\u305f\u3081\u3057":75,"'s":[22,81],truncate:60," seven":29,Windows:[20,77,45,60],"'|":10,"\u3089\u308c\u308b":[46,12],"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":45,"\u547d\u4ee4":[49,45],"\u964d\u9806":[29,33,10,68],scorer:[20,71,10,75,34,17],"\uff09 ":[60,70],"\u305b\u308b":[12,73,29,30,31,79,64],"'n":49,"'Site":29,"\u6bb5\u843d":32,"_count":[4,29,30]," complete":[15,68],"'_":[29,61,10]," TABLE":[23,6,26,74,29,31,33,34,35,36],"\u6765\u307e\u3057":74,pseudo:[20,28,5],"\u6539\u5584":[60,2],"_offset":[71,33,10],Second:22," json":61,"\u5165\u529b\u30df\u30b9":48,time:[15,31,68,78,48],"\u9069\u5207":[70,45],":/":[77,49,6,52,29,30,31,75,33,34,79,81],"\u53cd\u6620":12,"\u81ea\u52d5\u7684":45,"\u7b26\u53f7":39,": ":[43,20,2,12,48,49,61,70,52,27,29,79,13,34,78,15,60,23,41,82],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":60,"\u7279\u6027":55,"/debian":77,":<":10,trigram:26,":>":10,"\u30d2\u30c3\u30c8":[12,23,46,10,74,36,15]," load":[29,68],"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[20,30,17]," all":22,"<threshold":49,"\u795e\u5948\u5ddd":74," sudo":[77,64],"_left":[44,60],"\u4e00\u822c":[29,55],"_builtin":60,"(ptr":70," #":[70,74,72,81],"-host":45,"\u524a\u9664":[2,49,70,28,11,37,60,14]," installer":77,Day:22,"\u3002JSON":61,"/LZO":70,string:[38,31,12],groonga:[0,1,2,69,4,5,6,7,8,9,10,11,12,14,15,16,17,18,19,20,21,22,23,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,49,50,51,52,54,56,57,58,59,60,61,63,64,65,67,68,55,70,71,72,74,75,76,77,78,79,80,81,82],"\u5341\u4e00":46,"\nrequests":22,"\u304a\u6c17":74,"-root":[49,70,79],"\u306b\u3088\u3063":[26,4,6,7,8,9,10,11,12,19,21,25,69,67,29,31,32,33,34,37,41,42,46,49,50,51,52,54,79,82,61,73,71,14,27],"\u30ad\u30fc\u30ef\u30fc\u30c9":[20,2,23,46,72,74,13,16]," character":22,enqueue:51,"\u4e0a\u91ce":70,VERSION:45,"\u30b5\u30f3\u30d7\u30eb":[70,52,72,45],"\u691c\u8a0e":23,exact:12,".body":[69,67,41]," \u3002":23,"\u52d5\u4f5c":[20,48,65,82,70,45,30,10,78,15,60,80,64,81],"\u30b9\u30af\u30ea\u30d7\u30c8":[70,72,45],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":48,"\u6e08\u307f":[48,26,61,32,15,39,16],level:[8,42],"\u3068\u3057\u3066":[7,61,45,12,15,16,29,26,28,49,31,75,34,63,38,39,81,46,48,23,82,60,62,64,68,55,70,77],"\u51fa\u6765\u308b":74,":@":[10,29,30,31,34,74,36],"-escalation":[49,23,70,10],"\"\u3086\u304d":36,"\u52a0\u3048\u308b":[60,26,32],item:[15,78,68,48],"\u4e0d\u6574\u5408":2,Tag:34,":[":45,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":50,"\u8ad6\u7406\u548c":[12,10],HTTP:[20,55,70,30,60,17],"\u7d50\u3073\u3064\u3044":51,"\u305f\u3055\u3093":[60,2],"\u3002ifexists":61,",\n>":[68,75,33,34,35,36],"\u7d50\u3073\u3064\u304f":51,"\u8907\u6570":[2,46,10,17,20,26,27,29,31,32,33,34,35,63,41,12,23,79,45,60,68,55,70,74],"\u6f14\u7b97\u5b50":[70,12,10,73],"=)\n":12," Baseball":34,"-dev":[64,56],"\u5bfe\u8c61":[26,6,46,61,10,17,20,69,29,30,67,32,34,35,37,41,81,12,23,51,52,82,64,68,73,71,74,77,14]," commit":81," PatPrefix":36,"\u79d2\u8868":23,port:45,"\u5024\u6bce":10,"\u7d4c\u904e":[4,60,39,82],"_truncate":60,"\u4ecb\u6587":74,"\u30c8\u30e2":34,"\u5411\u3051":[20,80,12,57],"'='":49," ')":61,xml:79,"\u751f\u3058":[19,54,71,26,8,11,67,32,37,14,42]," two":22,"\u30bf\u30b0":[20,55,70,74,34,17],"\u540d\u4e00\u89a7":41," \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d1\u30b9":29,baseball:35,"\u9ad8\u6a5f":12,WGS:[44,7,75,33,34,39,18],address:60,"\u96c6\u5408":26,"\u5024\u3088\u308a":12,MBytes:45,"-MM":22,"\u89e3\u6790":[60,80,26,64]," string":[38,31],"-mode":81,"\u3002Tag":34,"\u4e26\u5217":45,MM:22,"\u63d0\u4f9b":[1,12,70,82,77,60,16],"\u4e3b\u30ad\u30fc":[20,70,26,61,27,28,11,29,33,34,36,39,17],"_version":[29,30,79,82],example:[29,30,31,75,33,34],queue:51,"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":23,User:34,"\u8a2d\u5b9a":[72,2,49,61,70,8,9,10,28,64,42]," threasd":49,"\u8b66\u544a":[70,82],"\u9006\u306b":34,"\u3002offset":10,".db":[49,29,30,27,41],"_DB\u30d5\u30e9\u30b0":60,"/Branches":64,cache:[20,2,5,66,10,9]," level":[49,8,22,42],"\u305d\u306e\u307e\u307e":29,"\u30af\u30a8\u30ea":[20,12,68,48,23,55,46,52,75,10,73,29,70,57,78,15,80,16],"\u3002table":26,"-leak":70,"\u521d\u671f":[60,70],"\u30ea\u30f3\u30af":31," \u3044b":[23,46],"'haystack":12,"\u96c6\u8a08":[20,55],"\u6587\u5b57\u5217":[73,26,61,10,29,31,75,33,74,38,39],Emacs:81,"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[49,12],"\u307f\u307e\u3057\u3087":[35,29,31,75,34,74]," entry":[71,32],"\u4e88\u3081":[49,39],"\uff08Romaji":15,"\u4ee5\u5916":[12,4,70,45,10,60],"\u4e21\u8005":75,"-check":[60,70]," sequence":22,"\u5916\u90e8":51,"-src":77,"\u672c\u5bb6":77," ERROR":42,"\u30d5\u30a9\u30ed\u30fc":74,https:81,msg:51,"\u60c5\u5831":[20,2,64,75,23,55,70,74,27,56,29,31,32,41,34,60,57,80,63,17,68],"_ADJUST":12,"\u3060\u3063":[23,82],"``":[19,54,2,69,71,4,50,26,8,9,45,11,67,32,37,14,70,42],"\u5b9f\u73fe":[20,80,12,57,55],Default:68,"\u8ee2\u7f6e":[20,26,32,34,55],"_concurrency":52,"-each":60,"\u6e80\u305f":[73,46,75,12,74],Time:[47,23,31,74,60,39],"\"mori":6,"\u3002Tritonn":55,"\u30bb\u30c3\u30c8":[69,46,67,12],"po\u30d5\u30a1\u30a4\u30eb":81,"_plugin":[60,72],"\u5bfe\u591a":31,"\u3001'":[49,29,75,10],DATABASE:58,":\\":[29,61],"\u30b8\u30aa\u30b5\u30fc\u30c1":[20,34,17,60],"_PREFIX":70,"\u63a8\u5968":82,cat:77,",\"test":[29,31],"\u542b\u307e\u308c":46,"\u3060\u3051":[23,12,81],values:61,"\u8fd1\u3044":52,JSONP:60,",\"http":31,"\nnotice":[8,42]," on":81,"\u5f85\u3061\u53d7\u3051":30,"\u30fb\u30b5\u30fc\u30d0":29,"\u884c\u3063":[29,75,33,64]," of":[50,22,68,81]," Lucid":[20,77],",\n":[68,50,6,27,45,74,41],define:[49,20,66,71,5],"_AND":12,sample:31,"\uff11\u3064":51,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":52,"\u5897\u3084\u3059":64,Issue:0,YOUR:81," }\n":74,"\u6a19\u6e96":[2,26,6,8,9,10,11,19,21,29,25,69,27,49,30,67,32,37,41,42,4,50,52,54,79,82,61,71,14],"\u884c\u3046":[46,55,26,52,10,29,70,75,33,34,35,36,64],"\u884c\u3044":[45,12,49,55,46,52,10,29,74,33,34,35,23],":true":36,Terms:[23,29,50],"\u30b9\u30c8\u30ec\u30fc\u30b8\u30d5\u30a1\u30a4\u30eb":55,", ":[0,7,61,10,15,18,22,27,23,75,34,38,39,41,44,45,12,48,49,50,79,82,68,70,78,80],"_INDEX":[23,70,29,74,32,34,35],"\u884c\u3048":[29,64],"\u30d2\u30e5\u30d9\u30cb":7," extract":[22,77],query:[12,22,74,48,23,71,46,68,10,73,29,30,31,75,72,34,35,36,15,78],"\u30d0\u30a4\u30c8":70,"\u76f8\u5f53":75,"\u5b9f\u51e6":12,"\u8fd1\u508d":73,"\u8a9e\u53e5":34,Tomita:70,"\u518d\u8aad":19,max:[50,52,9,45,29,30,76],clone:[80,81],date:45,",_":[68,29,74,75,33,34],"\u3069\u3061\u3089":[0,16,10,35],"\u5207\u308a":25,"<groonga":45,".ubuntu":77,"\u3001:":45,"/dictionary":70,"\u8fd4\u3059\u304b":68,ss:22,Format:22,"/javascript":60,"\u3002limit":10,"\u7d22\u5f15":[20,2,46,23,26,12,77,70],"\u30b0\u30eb\u30fc\u30d7":[55,28,10,33],sa:[68,48],EXACT:12,",{":[68,48,45,29,30,78,15],se:15,"= ":[75,10],"\u304b\u308f\u308a":23,"\u5f8c\u8ff0":12,"\u540c\u3058\u6570":49,"_init":[60,22],"\u82f1\u8a9e":[0,60,81],"\u9ad8\u901f":[20,2,12,49,55,26,34],"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":2,"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":6,"\u30d1\u30fc\u30b9":73,"\u542b\u307e\u308c\u308b":[49,29,12,23],"=/":[49,77,64],"\u30a2\u30c9\u30ec\u30b9":[49,30,45],"/fedora":77,"_VIEW":26," just":[77,22,58],"\u56f2\u307f":[49,29],"-libedit":70,"\u7e70\u308a\u8fd4\u3057":[45,81],"\u3002gdb":64," at":22,"\u78ba\u5b9a":[65,68],"\u56de\u7e70\u308a":45,"\u7d44\u307f\u5408\u308f":[73,12]," ${":81,RK:15,"_PUSH":12,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":27,"-alloc":4," sjis":49,"\u542b\u3081\u308b":60," aptitude":[59,77,64]," Japanese":56,records:22,"\"version":[29,30],not:[73,12],now:[20,53,47,5],"\u3086\u304d":36," description":[46,74],"\u53d6\u3063":29,name:[75,49,50,26,71,27,29,31,32,33,34,35,36,37,41,74],"\u500b\u3005":[23,12,82],"\u7570\u5e38":[50,45],"_dataset":72," Bool":36,"\u8aad\u307f\u8fbc\u3081\u308b":6,domain:[49,27,41,33],en:[15,68]," Terms":[23,29,50],"\u306f\u3058\u3081":[20,68,65,82,16,81],"\u53d6\u308b":73,ea:22,"\u6700\u5f8c":[23,70,45],"\u3002query":10,"\u5b9f\u4f8b":[20,80,12,57],"\u624b\u6bb5":12,"_size":12," Entries":6,"\u70b9\u6570":39,"\uff1f\u3000":45,"\u6642\u9593":[70,45,29,31,10,74,60],"\u7a7a\u304d":50,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":37,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[43,20,23,50,70,74,10,55,29,67,32,41,34,35,37,60,14,17],"\nerror":[8,42],".status":45,"\"search":[15,78,48],"\"type":68,"-default":49," warning":8,correct:[68,48],"\u5230\u9054":43," segments":50,"8\u3064":45," Term":[26,32],"_string":64,org:33,"byte":45,Tritonn:55,".index":34,"\u4ed5\u65b9":[80,81],"\u62ec\u5f27":61,"\u30b3\u30fc\u30c9":81,"\u4e8b\u9805":[43,20,39,45,5],Money:34,Karmic:64,"\u4e92\u63db":[79,82],"\u30db\u30b9\u30c8":[49,30,52,45],Installer:[20,77],"] [":45,".gz\u30d5\u30a1\u30a4\u30eb":77,"\u66f8\u304d\u8fbc\u3080":45,"\u7a2e\u5225":41," country":33,"\u30dd\u30fc\u30c8":[49,30,52,45],"-version":[70,82],"\u8a71\u3057":80,"\u4e00\u610f":[49,29,26,32,28],"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":74,"1C":77,"\u305f\u3069\u308b":34,submit:[15,78,68,48],"\u81ea\u5df1\u7d39":74,"\u9078\u3073":16,message:[42,35]," TokenMecab":23,size:50,SET:45,"\u7d5e\u8fbc":[20,75,17,55],"IP\u307e\u305f":30," text":6,"\u5bfe\u7b56":[23,20,13],"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[73,7],"\u5411\u3044":55,SEE:58,"\uff08-":29,".git":[77,81],"\u30bd\u30fc\u30c8\u30ad\u30fc":[2,68,10],Debian:[20,77,64,60],"_preparer":[15,78,68,48],HASH:29,"\u3044\u308b":[2,26,46,61,75,10,11,15,16,19,21,65,69,27,29,30,31,32,34,35,37,23,41,81,12,48,49,50,79,45,60,64,67,55,70,72,74,73,14]," engine":[78,16,68,48],"#'":49," logged":22,"\u300ctitle":29,"\u30d1\u30a4\u30d7":[26,32],github:[77,81]," backup":6,"\u8fd4\u4fe1\u5143":74,"\uff08@":[60,70],"\u8fd4\u4fe1\u5148":74,"\u30d5\u30a9\u30fc\u30e0":73,"\u306b\u5bfe\u8c61":60,"11":23,"10":[29,45],translate:81,"\u540c\u6642":[51,75,82,45],"-httpd":[60,16,58],"16":75,"\"\u4e8c":15,"\u3002ID":26,"/gat":[29,75,33],"\n..":6,".description":74,"\u5404\u547d":45,"\u63a5\u7d9a\u5148":52,browser:81,and:73,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":43," name":[6,26,71,74,37,34,32],"\u3044\u304b":55,"_local":[6,45]," TokenBigram":[23,29,26,74,35],"\u3044\u3044":55,"\u4e16\u754c":[44,55,7,75,39,18],Sites:6,sae:[68,48],"\"application":60,"/ubuntu":77,"_circle":[20,53,5,74,75,34,18],"\u53b3\u5bc6":15,"\u30ea\u30b9\u30c8":[49,61,27,10,29,34,41,81],Web:2,".username":34,engin:[15,68],"\u914d\u5e03":77," dump":6,"\u5ea6\u5408\u3044":23,"\u3044\u3064":15,"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":[0,20,80]," inv":45," the":[22,81],"\u30d5\u30e9\u30b0":[19,2,54,71,50,26,8,67,11,31,32,63,36,37,14,42],"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":64," objname":[69,67],"\nBigram":45,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[49,10],"[[\"":50,"|suggest":68," LC":81,"_suggest":72,buffer:50,debhelper:60,"\u5c0e\u5165":[59,82,64]," Comments":[6,74],"\u306b\u3064\u3044\u3066":[1,26,4,6,7,8,9,10,11,12,15,18,19,21,25,69,67,29,31,32,37,38,39,41,42,44,46,47,48,49,50,54,82,63,61,66,68,55,71,74,76,78,80,14,27]," moritars":35,pair:[15,78,68,48]," main":77,"_STAMP":22,"\uff09:":46,Bigram:[23,46,74],"\u79fb\u52d5":[19,24],"\u4e2d\u65ad":60,"\u7ba1\u7406":[2,46,49,50,26,30,79,60],MeCab:[60,2,70,77],"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[20,3,65,29,31,75,33,34,60,17],"\u4e00\u81f4":[20,46,68,23,26,10,29,12,72,74,36,15,17],"\u4fdd\u8a3c":[50,82],"**":42,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[49,70,45,60,64,81],"\u30b5\u30fc\u30d0":[26,6,8,9,10,11,19,20,21,29,25,69,27,49,30,67,32,37,41,42,4,50,54,79,45,60,61,55,71,14],"\u539f\u56e0":[23,20,13,45],"\u9589\u3058":60,"\u5217\u8981":26,show:2,"\u76f4\u4e0b":60,"\u65b0\u5bbf\u99c5":75,"\u3057\u304b":[81,35],Comments:74,"\u4ef6\u6570":[23,46,61,9,10,29,28],"#SET":45,"\u5217\u6307\u5411":49,"\"#\"":45,threshold:[15,60,78,68,48],"\u88dc\u5b8c":[20,68,65,70,78,15,16]," requests":81," contact":81,help:[60,64],"\u30d1\u30c3\u30b1\u30fc\u30b8":[1,60,70,82,77],"\u3057\u3066":[0,23,70,29,74,34,59,64,81],"\u6982\u5ff5":82,"\u6700\u5927":[43,2,49,70,9,45,76,60],"\u30bf\u30a4\u30c8\u30eb":[34,35],title:[29,30,31,33,34,35]," LocalNames":6,"\u306a\u3093":82,"\u306a\u308c":82,"\u305f\u3057":34,"\u306a\u3089":[12,48,49,25,45,4,82,55,15,64],"\u306a\u308a":[26,61,75,45,15,29,69,28,49,30,67,32,34,35,36,59,39,48,23,79,10,68,55,74,82],"\u306a\u308b":[44,2,7,54,23,49,69,6,26,10,29,67,32,45,12,78,70,81,39,72,18],"\u4e00\u6642":26,"-server":[49,60],wheezy:77,get:60,"\u5f53\u8a72":82,"-setuptools":59,clang:64," ALSO":58,"=\u5024":30,"\u751f\u304b\u3057":55,"\u751f\u304b\u3059":55,"1\u6708":[39,10]," saerch":[68,48],geo:[44,2,70,5,20,7,53,74,75,34,60,18],For:56," that":22,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":10,summary:45,":')":[26,32]," groonga":[22,49,6,29,30,77,35,81],"\u300c\u697d\u3057\u3044":46,"\"string":31,"\u76f4\u63a5":[73,6,74],"\u5426\u5b9a":12,".conf":77," lenny":60,"\u8907\u96d1":[55,12],Sending:81,sear:15,"# ":[49,81],"\u884c\u756a":60,"*'":10,"\u7a7a\u767d":[49,26,61,29,78,23],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[2,74],"\u8b58\u5225\u5b50":73,"\u4e21\u65b9":[36,15,74,10],"(scan":64,"\u8a18\u6cd5":35," download":77,"[\"":[68,48,50,74,27,29,31,75,33,34,78,15,41],"\u77ed\u7e2e":[61,10],"-threashold":[23,70],"\u8fd4\u3063":74,"\"BLT":6," are":[22,81],"\u30bf\u30a4\u30d7":[60,45],"\n\uff08":70,"\u3053\u3053":[68,23,29,31,75,74],"\u4f9d\u5b58":73,jobs:45," ShortText":[23,6,26,74,45,29,31,32,33,34,35,36],"\u518d\u691c":73,"\u3057\u3088":[60,12,61,11],"#{":22,"\u904e\u53bb":60,"\u3088\u3063\u3066":[55,29,39,75,63],"\u306a\u3069":[19,20,12,73,48,23,50,46,74,45,55,29,30,31,82,77,78,15,60,63,81],Each:22,"\u306a\u3067":15,ja:81,"\u306a\u3063":[46,23,50,26,74,55,30,70,82,35,60,64]," be":22,"\u5206\u5272":[60,26,46],autoconf:60,"\u306a\u3059":44,"\u306a\u3055":[26,79,76,10],"\u8fd4\u3059":[2,54,8,9,45,11,37,19,29,69,67,49,47,75,32,42,4,60,68,70,71,26,14],"\u30b3\u30ed\u30f3":[26,32],"\u3082\u306e":[12,48,49,82,26,52,10,29,74,45,77,35,76,81,18],"-document":49,"\u3002gqtp":52,"\u306a\u304f":[2,70,46,45,10,60,80],"_otoj":64,"[-":34,"#]":37,"\u306a\u3044":[2,6,46,10,15,16,29,26,23,39,43,12,48,4,50,51,52,79,45,49,60,64,68,55,70,72,77,82],"\u306a\u3046":74," by":22,"\u6b21\u56de":82,"\u78ba\u7387":68,"-groonga":45,"\u306a\u306b":15,"/WGS":75,"\u3055\u3089":[20,55],"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":46,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":64,"\u76f8\u5bfe":60,"} ":[22,81],"\u30b9\u30ad\u30fc\u30de":6,"_res":45,"},":[36,29,74,45,34],"}/":81," command":[82,58],"\u3002http":30,".select":45,"\u8868\u8a18":60,"\u542b\u3080\u5024":[49,29],"\u524d\u5f8c":49,"\u5f8c\u4e8c":82,"\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb":49," []":41,"\u5468\u4e0a":18,"<encoding":49," follower":74,"\u5f15\u6570":[2,26,4,6,7,8,9,10,11,18,19,21,25,69,27,29,67,32,37,38,41,42,44,12,49,50,52,54,79,45,61,73,71,76,14,82],"\u4ee3\u308f\u308a":[49,11],Bug:80,"'ja":81,engine:[15,68,78],"\u306a\u305c":[15,48],enable:[4,70],"/vdw":[29,75,33],"_tokenizer":[23,26,45,29,74,35]," res":45," [\"":[68,23,50,27,74,41],"\u6607\u9806":[29,75,10],"\u5b9f\u884c":[1,26,4,5,6,8,9,10,11,15,19,20,21,22,25,69,27,28,29,30,67,32,37,41,42,12,48,49,50,54,79,45,60,61,64,14,68,55,71,72,75,77,78,80,81,82],UInt:[23,70,27,10,29,30,31,75,33,34,35,36,39,41],"}`":81,"\u8fbc\u307f":19,"\u6240\u5b9a":[23,46],"=yes":64,Mitsuhiro:70,sound:48," fork":81,"\u30bb\u30df\u30b3\u30ed\u30f3":45,"\u304a\u3051\u308b":[43,55,34]," configure":23,"}]":[68,48,61,45,29,30,31,78,15],"\u4e0d\u5b8c\u5168":60,"\u7570\u306a\u308b":[20,49,45,23,75,13],"\u30b7\u30b0\u30ca\u30eb":60,"\u7406\u89e3":29," coverage":64,QUERY:22,"?table":30," Shimada":70,"'\"":29,"\u306a\u3057":[48,26,11,82,77,39,18],score2:12,"\u3002DB":12," many":58,"\u4e0d\u5909":28,"\u8af8\u6761":43,"\u5fc5\u8981":[79,2,12,48,23,55,26,61,45,70,29,30,31,75,59,78,15,16,64,81],"@lists":56,"\"This":29,"|')":[26,32],"\u6a5f\u69cb":[20,55],"'.":81,saerc:[68,48],"\u3002squeeze":64,Month:[22,34],"\u633f\u5165":[49,29],"\nSUFFIX":12,"\u8f9e\u66f8":[23,2,70],develop:82,"\u559c\u3073":[24,81],"\u91cf\u8a08":2,XXX:49,"\u3054\u89a7\u304f":64,html:[59,80,64,81],"<path":49,"')":[49,52,10],"-dir":45,".org":[77,6,45,29,30,31,75,33,34,81],document:[49,70,79],"\u3002\u3044":12,favorited:74,"_at":[23,70],UTF:70,"\u306a\u304a":46,"0\u30d9\u30fc\u30b9":10,IP:[30,45],".po\u30d5\u30a1\u30a4\u30eb":[80,81],IT:34," Int":31,PATH:45,"\u4e26\u3073\u66ff\u3048":[20,17,29],"\u306b\u5bfe\u3059\u308b":[20,12,68,70,74,33,34,35,60,63,17],"\u4e00\u884c":[49,70,45],favorites:74,"\u7d4c\u7531":[69,6,8,9,10,11,19,21,25,54,27,30,67,32,37,41,42,4,50,61,70,71,26,14],"-noftp":45,taro:34,"\u5b9f\u88c5":[55,20,79,81],"\u53c2\u7167\u7cfb":55,ID:[70,22,49,50,26,27,29,41],"\u305d\u3057\u3066":[15,74],"\u653e\u68c4":[61,10],It:22,"\u5217\u8868":39,"\u3059\u3079\u3066":[60,66,70,82,45],"\u53d6\u308a\u51fa\u3057":26," LOCALE":81,"\u53d6\u308a\u51fa\u3059":[70,12,73],If:22,"/unit":64,"(x":39,"\u6771\u4eac\u90fd":[23,46,74],"\u4f5c\u6210\u6e08":49,"(v":12,"\u3002\u3059\u3079\u3066":[64,81],"\u30af\u30a8\u30ea\u30da\u30a2":16,gdb:64,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[49,70,79],BOM:70,"\u3072\u308d":36,"\u5171\u6709":[20,56,34,55],".dll":45,"\u30ab\u30e9\u30e0":[2,26,5,61,75,10,15,16,17,20,29,31,69,28,49,67,32,33,34,35,36,37,39,41,48,23,68,55,70,71,73,74,78,14],speed:16,"\u3046\u3061\u3044":[49,29],"\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af":4,"\u3002none":49,"(_":[15,78,68,48],"/false":2,"\u3002\u307e\u305a":23,"(R":45,"\u30d1\u30e9\u30e1\u30fc\u30bf":[20,73,46,52,10,11,29,30,74,75,33,77,35,60,17,82],"\u4f4e\u3044":[23,10]," indicates":22,"\u5ea7\u6a19":[44,7,39,74,18],blog:29," sample":45,"\u63a2\u3057":45,Uint:[29,38],"_HASH":[6,26,74,27,29,31,33,34,35],"\u30ad\u30fc":[26,49,70,28,10,39],"\u5f37\u5236":2,TokenTrigram:26,"\u6c4e\u7528":[49,55,45],"\u542b\u3080":[46,68,73,51,26,52,12,32,35,74],"(>":12,"(<":12,"(=":[26,12],"DB\u30d1\u30b9":[29,30],"\u8a00\u3048":23,"\u697d\u3057":[23,46],"\u542b\u3093":[12,16,10,48],"((":39,"()":[44,2,12,73,7,72,47,75,76,60,80,38,70,18],"\u8d8a\u3048":[23,10],"(,":29," music":22,"(\"":[49,29],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":[49,55],"( ":49,"(!":12,TODO:[3,58],"('":[49,26,61,28,29,32,10],"\u3068\u304a\u308a":[43,45],tvsec:4," format":[22,81],Kenichi:70,"\u95a2\u308f\u3089":45,"\u5f62\u8fd1":7,"\u4f4e\u901f":33,"\u9650\u308a":[12,23,61,26,46,45,28],output:[22,23,70,71,10,29,31,75,34,74,79,68]," DATASET":58,"\u5c5e\u3059\u308b":[39,27]," datasets":58,LocalNames:6,conditional:68,"_SUCCESS":[22,10],"\u30b7\u30b9\u30c6\u30e0":[0,20,74,17],"_VECTOR":[31,32,34,74],"\u30ec\u30b9\u30dd\u30f3\u30b9":60,"\u30d5\u30a9\u30f3\u30c8":59,Ludia:55,"\u985e\u7d39":23,"-history":60,"_touch":70,confirm:81,": n":52,"\u65b0\u5bbf":75," cd":81,automake:70,"\u30de\u30b7\u30f3":49,"& _":75,mooz:60,"\u542b\u307e":[12,46,61,27,29,78,41]," check":64," binary":55,"\u5206\u3051":[55,20,46,29],Term:[26,32,27],"\u5168\u6587\u691c\u7d22":[55,10]," Float":31,"-suggest":[1,20,68,5,48,70,58,72,60,16],"\u540d\u4e00":27,"\n{\"":[15,78,48],SiteDomain:33,"\u597d\u304d":81,"; ":[49,77,45],"\u306f\u305a":45,",\"correct":68,"CPU\u30b3\u30a2":49," schema":58,"\"s":15,"_OP":12,"_OR":12,"\u5ec3\u6b62":82,"_escalation":[70,10],"\u30e6\u30fc\u30b6\u30fc":[74,34],"\u306f\u307f":80,"\u304b\u3048\u308b":33,";\n":45,Katakana:15,CUTTER:64,"\u30d7\u30e9\u30ac\u30d6\u30eb\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":55,"\u3002callback":12,"\u3082\u3061\u308d\u3093":45,"/admin":[49,60],searc:15,"\u884c\u76ee":45,"\u30aa\u30d5\u30bb\u30c3\u30c8":68,"\u8abf\u6574":23,"\u53f3\u4e0b":[44,2],"\u53f3\u4e0a":2,"\u30c1\u30e3\u30f3\u30af":50,"=title":30,".tags":34,"\u30a8\u30ed":74," comment":74,"\u8a55\u4fa1":12,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":64,log:[19,20,66,22,5,49,8,42],NO:2,"(title":38,"\u591a\u5be1":73,"\u53d7\u3051\u53d6\u308a":12,"\u6b21\u671f":55,"\u77e5\u8b58":45," mode":12,"\u63d0\u6848":[20,68,65,70,78,60,16],"d\u30ad\u30fc":29,"/modules":70,",\"This":[29,30,31],"\u3082\u3046":[38,7,35],"\nCRIT":[8,42],"\u30aa\u30fc\u30d7\u30f3":60,complete:[15,16,68],"\u901a\u308a":[23,68,27,41,78],"/configure":77,"\u3082\u3057":45,Error:22,PostgreSQL:55,hsiomaneki:74,",\"links":31,"\"Items":6,pull:81,"\u304b\u304e\u308a":45,IDENTIFIER:73,"\u3082\u3063":[20,31,17,74],"default":[23,26,45,29,30,74,82,35],"\u69cb\u7bc9":[80,46,64],"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":50,HDD:45,EXIT:58,"\u4f5c\u3063":[23,74],"\u3088\u3073":12,"\u305d\u308c\u3089":[55,52],"}\n":[36,74,22,34],"_WEIGHT":32," posted":74,"\u30d5\u30a1\u30a4\u30eb":[1,2,26,4,5,6,8,9,10,11,19,20,21,22,25,69,27,29,67,32,37,41,42,12,49,50,54,79,45,60,61,14,71,77,80,81,82],"_CREATE":12,"\u3002drilldown":[33,10],"/hostname":[49,45],"\u30de\u30fc\u30b8":81,HashTags:74,mode:12,Blog:35,"/macports":77,ar:[23,46],"\u901a\u3058":[20,30,17],"\u3002TLD":33,file:[2,70],"+ y":39," universe":77,"\u30ea\u30af\u30a8\u30b9\u30c8":[69,6,8,9,10,11,19,21,25,54,27,67,32,37,41,42,4,50,52,79,61,71,26,14],"\u4f5c\u308a":[15,48,35],"\u4f5c\u308b":[48,51,29,74,34,81],Cutter:64,GByte:43,"\u53d6\u308c\u308b":61,"\u5bfe\u5fdc":[20,2,12,68,48,49,55,51,26,61,72,70,47,78,15,60,16,64],"\u95a2\u4fc2":[20,66,12,31,34,74,17],"5km":74,"\u4e0e\u3048\u308b":[49,52,61,29,75,82],"/IPAexGothic":59,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[20,30,17],"}|":22,"\u8aad\u307f\u53d6\u308a":[49,61],"\u8a18\u8ff0":[49,73,12,45,74]," rpm":77,string2:38,string1:38,"_type":[45,6,26,61,28,29,31,79,33,34,35,36,74],"\u9001\u308a\u65b9":[0,20,80,81],"\u4e0a\u9650":[43,20,51],"\u30c7\u30d0\u30c3\u30b0":50,"\n% ":81,"4Kbyte":39,coverage:64,Entry:[71,26,61,27,10,11,32,41],"]\n\n":74,"_value":[60,70,28],"\u5b9a\u7fa9":[12,49,54,26,71,27,28,29,32,73,37,14,39,41],"\u65b9\u5f0f":[49,29,35]," wheezy":[20,77,60],"\u30ab\u30d0\u30ec\u30c3\u30b8":[80,64],"\u6c17\u306b":81,"/select":30,"\u3002TokenDelimit":78,Year:22," location":[74,75,34],"-threshold":[49,23,10],original:36,"\u518d\u5e30":[67,12,14],"\u6587\u6cd5":[20,75,17],SHIMODA:70,"\u4ed8\u968f":[14,37],"\u30c7\u30fc\u30bf\u30d9\u30fc":60," default":22,"\u5343\u4e07":43,"\u3002Debian":64,"\u308f\u304b\u3061":46,"\u3002name":26,"-P":52,"\u6761\u4ef6":[20,12,68,49,73,70,71,10,29,74,75,36,23,17],"-]":10,"\u7d30\u304b\u304f":73,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":60,"-e":49,"-d":[49,29,30]," haystack":12,"-a":49,"-c":[49,30],"-m":52,"-l":[49,22],"-n":[49,29,60],"-i":[49,45],"_rc":10,"-t":49,"\u304a\u5f85\u3061":56,"-p":[49,45],"-s":49,Entries:6,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[20,70,13,45],homepage:45,"_SIS":[36,26,46],"\u5f0f\u4e2d":73,"-conditional":60,"\u95a2\u9023":[19,20,71,61,8,10,11,67,78,60,80,62,16,42],"\u5dee\u5206":45,"\u6d41\u308c":[80,81]," as":81,"\u3002column":12,"***":42,"\u8aad\u3093":80,",\"tags":34," type":32,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":60,"\uff1f ":45,"\u6b8a\u547d":45,unigram:26,GROONGA:31,"--":[2,49,72,70,79,10,11,23,67,75,45,34,74,60]," Please":81,"\u3057\u307e\u3057\u3087":29,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d1\u30b9":29,"\u4f4e\u6e1b":70,"\u5909\u308f\u308b":23,"\u5909\u308f\u308a":[50,46,75],"<protocol":49,"\u89aa\u5207":70,"\u4f55\u3089\u304b":39,"\u30a2\u30b9\u30bf\u30ea\u30b9\u30af":10,VIEW:49,"\u300c\u6771\u4eac\u90fd":23,Log:[20,22,5,60],"\ngronga":16,"\u30d6\u30e9\u30a6\u30b6":[30,81],TokyoGeoPoint:[44,7,39,75,18],"\u884c\u3048\u308b":34,None:58,"x\u5ea6y":39,"\n> ":[68,29,30,75,33,34,35,36],ECMAScript:73," {":[29,74,33,34,35,36],SSSSSS:22,"\u518d\u73fe":23,"/centos":77,"\u6c42\u3081":[38,7]," point":7,"\uff1a\n":30,"\u7d22\u6642":70,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":64,"\u3067\u306b":23,"\u30ea\u30c6\u30e9\u30eb":[60,2],"\u4ee5\u524d":[23,74,9],"@s":70,"_append":12,"_NO":[23,70,6,26],"\u6e2c\u5730":[44,55,7,75,39,18],"_modified":74,"\u8aad\u307f":[15,2],memcached:[55,64],"\u793a\u3059":[44,7,26,61,27,10,36,41,18],Pull:81,"\u307e\u3057\u3087":34,hash:74,"\u305e\u308c":[12,78],tags:34,"\"Table":49,"\u30c6\u30b9\u30c8":[20,23,70,74,57,80,64],"\u3002filter":75,"\u30ce\u30a4\u30ba":[23,48],"\u88dc\u5b8c\u8a9e":15,"\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8":49,"\u6e96\u5099":[23,26,81],"\u304b\u304b\u3063":10,"\u306b\u95a2\u3059\u308b":[20,5,56,74,10,60,15,39],"'needle":12,search:[15,78,16,68,48],TokenDelimit:[26,78]," clone":[77,81],"\u30ec\u30b3\u30fc\u30c9r":12,"\u540c\u3058":[19,20,2,68,48,49,70,27,45,29,79,13,35,60,23,41,82],"\u308f\u304b\u308a":70,SIGUSR:60,"\ninfo":[8,42],"\u3068\u305d\u306e":82," I":81,"\u30b3\u30e1\u30f3\u30c8ID":74,followee:74,"\u8ad6\u7406":[43,50,12],hoge:[73,38],"\u30ce\u30fc\u30c8":[65,68,77,81],"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":46,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[20,80,62],follower:74,"\u3067\u3059":[0,6,46,61,45,15,16,24,26,27,28,29,31,75,33,35,63,23,41,81,43,12,48,49,50,52,79,10,64,68,55,73,74,77,78,80,82],"\u307e\u308f\u308a":80,ICHII:60,"\u5358\u7d14":[36,12],"\u300c\u697d\u3057":46,"/atv":[29,75,33],"\u69cb\u6587":[73,72]," HTTP":[1,20,79,5]," apt":77,ctrl:[29,30],mecab:26,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":[4,21]," disabled":22,"\u7a4d\u7b97":[12,10],Baseball:34,"\u3002\u300d":23,"\u6c7a\u307e\u308a":29,"\u5ea6\u7d4c":39,"_PATH":[79,77],LTS:[20,77],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":34,Intel:45,ivh:77,"\u518d\u5229":[28,10],"_gqtp":45,"\u578bn":10,"\u3053\u3068":[2,26,4,6,7,8,9,10,11,14,15,16,18,19,21,23,25,69,27,28,29,30,31,32,33,34,35,36,37,38,39,41,42,44,12,47,48,49,50,51,52,54,79,45,59,61,63,64,67,55,70,71,74,75,76,77,73,80,81,82],"\u3053\u306e":[46,45,11,15,65,26,29,31,75,33,34,35,63,23,81,12,48,49,10,55,74,78,80],git:81,"\u30bb\u30c3\u30b7\u30e7\u30f3":[49,25],"\"already":34," http":[49,79,30,52,77],none:35," return":22,"\u3053\u305d":74,Int:[68,48,23,70,74,29,31,75,33,34,78,15,39,76],"\u7e70\u308a\u8fd4\u3057\u6570":45,abandon:[61,10],"\u305f\u3068\u3048":23,deb:77,"\u3002KEY":46,"\u6bd4\u8f03":[70,45,10],"\u79fb\u884c":[60,82],Codes:81,"\u4e2d\u5fc3":18,scan:64,pthread:60," ":[69,8,9,10,11,19,54,67,32,34,37,42,45,12,75,4,50,52,82,68,71,26,74,14],accept:70,"\u9001\u4fe1":[69,6,8,9,10,11,19,21,25,54,27,67,32,37,41,42,4,50,45,61,71,26,14],"_OBJ":60,"\u9664\u53bb":70,"\u958b\u767a":[20,55,74,57,82,80]," '":[22,48,49,46,68,23,74,75,34,78,15,81]," dataset":58,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":60,"\u6307\u5411":55," original":[36,6],"-address":[49,60],"\u3053\u308c":[12,48,24,46,78,29,74,75,33,35,15,23,16,81],opt:77,"\u52d5\u7684":[70,46],"\u3042\u3089\u304b\u3058\u3081":39," threshold":69,"\u591a\u3059\u304e":70,"\u8a9e\u5f59\u8868":[29,26]," three":[29,31]," /":[68,49,46,52,29,30,23],"\u901f\u304f":[55,34],disable:60,"\u304a\u9858\u3044":45,"_text":64,"\u91cd\u8981":[63,64],"\u30cf\u30a4\u30d5\u30f3":29,"\u30ea\u30dd\u30b8\u30c8\u30ea":[80,81],"\u5185\u90e8":4,"-max":[49,60]," files":22,callback:12," segment":50,Linux:45," path":22,"\u3002.":81,":\u79d2":74,"\u3066\u304f":64,replied:74,"\u5909\u63db":[60,39],hostname:[49,79],"_MESSAGES":81,"\u592b\u5fc5":36,rand:[20,53,75,76,5],"\u3002ftp":45,"\u3002(":[12,49,26,61,45,46],"`hostname":49,"\u5217\u578b":33," id":50,grntest:[1,20,5,70,45,60],"\u975e\u308f":46,"\nlog":22," OR":10," OS":[20,70,77]," creates":[22,58],".rpm":77,"\u308c\u308b":[46,45,15,19,65,54,28,29,30,75,23,81,12,48,49,50,51,10,60,64,68,55,73,78,82],GHz:45,"sort\u30ad\u30fc":2,"\u30ab\u30fc\u30bd\u30eb":[60,70],"\u63a5\u7d9a":[21,49,25,51,45,29,30],"\u57fa\u672c":[23,20,46,17,29]," feature":81,"\u72b6\u6cc1":23,URL:[60,30,79],"2]":29,"\u3002GeoPoint":7,URI:79,"_to":74,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":19,"\u6271\u3044":[15,46,82],"\u6271\u3046":[23,56],"\u3088\u304b\u3063":23,"\u8a71\u984c":56," \u30d0\u30c3\u30d5\u30a1":50,"\u5316\u95a2":70,"\u3002\u3057\u304b\u3057":[55,31,39,48],"-test":64," outputs":22,"=Site":30," python":59,"\u9664\u3044":45,"-encoding":[49,60],"\u6271\u3063":[2,74],"\u30ad\u30e3\u30b9\u30c8":[70,74],"'title":29,".posted":74,Defines:58,"\u767b\u9332":[12,48,50,26,61,72,29,70,74,15,16],"-create":[1,20,68,5,48,58,72],"\u5b58\u5728":[44,2,70,33,55,6,46,10,29,45,31,75,28,35,18],"\ndeb":77,"\u30b5\u30a4\u30ba":[50,9],korea:33," doc":81,Sports:34," sh":77,"\u5b89\u5b9a":[50,82],"\"sequence":[15,78,48]," nine":29,"\u547c\u3076":[73,64],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[20,5],">\"":34,"\u6271\u308f":[23,45],"\u524d\u8005":75,ftp:45,"<ip":[49,45],"/usr":[49,77],"\u7def\u5ea6":[20,74,39,75,55],"\u6e2c\u7528":2,"_QUERY":12,"/locale":81,"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":64,"\u8ddd\u96e2":[38,2,7,75,55]," table":[68,49,71,54,61,10,11,29,31,32,33,34,35,36,37,14,41]," our":81," log":[20,22,5],"/etc":77,"\u9ad8\u304f":23,Hour:22,"_new":51,"(WGS":75," en":[15,68],"\u9ad8\u3044":[55,29,68,50],"\u30dc\u30c8\u30eb\u30cd\u30c3\u30af":55,"_hit":[29,30],"\u5ea6\u5ea7":39,"\u3057\u307e\u3059":[26,46,16,74,33],"\u3053\u3053\u3067":29,"_MAX":76,recv:77,"\u30a6\u30a7\u30a4\u30c8":32,"\n\u30b9":60,"\u81ea\u8eab":[49,60],"\u547c\u3093":46,thread:[51,45]," processing":22,script:[44,5,20,73,7,61,10,47,45,76,38,18],"\u8a18\u3057":29,v2:12,"\u306b\u3088\u308b":[36,20,30,17],"|correct":68,"\u30b5\u30a4\u30c8":[31,34],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":64,"\u308c\u305a":82,"-gram":[23,29,46]," not":22,"\u306b\u3082":46,".SSSSSS":22,",[[":[74,34],"\u306f\u3044\u304f\u3064\u304b":43,"@tomotaka":60,SiteCountry:33,number:[50,31],"\u3059\u3079\u304d":12," term":50,"\u30bb\u30af\u30b7\u30e7\u30f3":[48,65,77,78,15,80,81],"\n\u308b":70,"\u30b3\u30d4\u30fc":6,"\u4ed8\u4e0e":[26,28,29,75,45,34,35,36],".blog":23,koi:49,"\u5024\u304c":29,"\u306b\u5bfe\u5fdc\u4ed8\u3051":15," process":22,"\u30c9\u30e1\u30a4\u30f3":33,"\u4fee\u6b63":[2,48,70,72,30,60,16],"\u547c\u3073":[49,73,12,33,45],"\u3002\u3059":45,"\u60c5\u5831\u540d":[27,41],Homebrew:[20,77,60]," unmanaged":50," local":6,"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":45,"\u3002make":45,"\u300cUsers":74,"/.":60,Munin:2,"\u547c\u3070":29,selector:71," Tag":34,"\u4fbf\u5229":15,"\u89e3\u6c7a":50,center:18,"\u4e71\u6570":[75,76],"\u5b66\u7fd2":[20,68,48,65,70,78,15,16],"\u56de\u547c":70,"\u898b\u308b":75,"_probability":[60,68]," user":45," uses":22,KEY:[36,26,46],"\u5927\u91cf":[29,12,34],"\u30c6\u30fc\u30d6\u30eb":[2,26,6,61,10,11,17,20,29,54,69,27,28,49,31,32,33,34,35,36,37,39,41,12,23,50,63,60,67,68,70,71,74,14],",[\"":[68,48,23,78,74,10,29,30,31,75,33,34,35,36,15],"\u60f3\u5b9a":[4,50,6,34,73],"7e":45,"\u5b9f\u969b":[43,23,27,10,74,34,35,41],"\u307e\u307e":82,"\nGRN":12,"\u540dn":[41,27,10],"\u52d5\u74b0":52,"1\u30c8\u30fc\u30af\u30f3":26,"\u8aad\u307f\u98db\u3070":29,gted:81,"\u3002Functions":64,tables:6," abandon":11,"\u307e\u3060":[4,60,82,68,65],qps:[52,45]," arg":12,"\ngroonga":[60,16,72,82],"\u307e\u3059":[0,1,69,4,6,7,8,9,10,11,12,14,15,16,18,19,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,46,47,48,49,50,52,54,56,79,45,59,61,62,63,64,65,66,67,68,55,71,73,74,75,76,77,78,80,81,82],"\u307e\u305a":[66,23,46,45,29,74,81],"\u307e\u305b":[4,46,61,10,11,15,16,19,21,29,25,26,27,28,49,30,32,35,39,41,81,48,23,45,68,55],Users:74,"_list":[20,2,5,49,66,70,27,29,60,41],"\u307e\u305f":[26,6,8,9,10,11,19,21,25,69,67,4,30,31,32,35,37,39,41,42,75,49,50,54,45,61,64,71,74,14,27],check:[20,2,5,50,66,60],"\uff09\u3002":[23,74],self:45,"_lock":60,"\u79d2\u5358":39," : ":58,"\u307e\u3057":[48,23,55,29,31,75,34,74,81],"-limit":[49,2],"\u7279\u5b9a":[55,6,26,73,33,35,64],"\u307e\u3068\u3081":10,build:4," your":81,"\u8a18\u53f7":[49,29,46,23,70],"$PREFIX":60,Fork:81,"\u306a\u3051\u308c":[49,61,26,32,45],"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":12," realtime":[68,78],"\u30e1\u30fc\u30eb":81,"\u30e1\u30fc\u30c8\u30eb":[7,18],"\u4f7f\u3048\u308b":[49,60],"\u89e3\u653e":4,"\u3060\u3055\u3044":[29,80,64,81],"\u306b\u3059":23,DragonFly:70,"'hay":12,exe:77,"_put":[19,20,66,5,49,8,42],"\u30e6\u30fc\u30b6\u30fcID":74,"\u307e\u307e\u3067":23,"\u306b\u3069":12,"\u3002Sphinx":59,"\u9577\u3055":45,"\u4ecb\u3057":29," UInt":34,"\u7528\u8a9e\u96c6":50," testdb":45," rst":59,"\u4e0a\u66f8\u304d":75,"\u3057\u304b\u3057":[23,46,81],mlock:70,"\u308c\u307e\u305b":[49,50,82],"_by":[74,72],".rb":70,SEGV:2,"\u304a\u3051":10,"_users":74," item":[15,78,68,48],"(drilldown":28,"\u30d1\u30c3\u30c1":[24,70,81],"\u304a\u304f":77,nterms:50,"\n]\n":6,MySQL:55,"\u304a\u3044":[55,26,28,29,75,73,60,64,81],"\u59cb\u70b9":29,"\u77e9\u5f62":[44,75,55],"\u59cb\u3081":[55,81]," WGS":[74,75,34],"\u4ed8\u52a0":10,"\u6bd4\u3079":33,"\u304a\u3070":[60,2],"\u6642\u306b":60,"\u51e6\u7406":[2,12,55,46,28,30,70,75,10,45,81],"\u4f4e\u6a5f":12,"\u5225\u9014":[26,39,33],columns:[70,61],"]]]":[68,23,71,10,29,30,31,75,34,74],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[15,78,48],"\nency":45,"\u629c\u3051\u308b":29,"\u30c7\u30d5\u30a9\u30eb\u30c8":[19,2,46,71,68,49,61,26,52,10,23,45,12,33,70,82]," used":[22,34],"_html":[49,60],"\u4eca\u5f8c":19,"\u601d\u3044":81,"\u9069\u5408":23,OBATA:70,"\u304a\u3070\u305f":60,"\u5fc5\u305a":82,"\u305d\u308c":[12,4,23,46,74,29,70,78,81],"\u3068\u3044\u305a\u308c\u304b":10," localhost":49," STATUS":58,"\u53c2\u52a0":[80,56],Help:81,"\u306b\u304a\u3044":[31,82],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[20,51,57,80],"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[49,30],"\u89e6\u308c":[29,31],"\u7d44\u307f\u8fbc\u3080":12,"\u3002Redmine":0," finished":22,"\u52a0\u7b97":28,"\u6570\u5024":[2,46,49,26,10,29,31,32,12,70,18],"\u68ee\u7530":34," GRN":[12,22],"\u3082\u3057\u304f":[30,35],"\u82b1\u5b50":34,"\u305d\u3057":74,"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":69,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[60,2,70,64],"\u305d\u3053":23,"/log":49,"]]":[45,68,74,48,49,71,26,61,10,29,31,75,33,34,35,36,15,41,78],"]_":29,Kbyte:39,"\u7d44\u8fbc":[26,6,7,8,9,10,11,18,19,21,25,69,67,47,32,37,38,39,41,42,44,4,50,54,61,71,76,14,27],"\u554f\u3044\u5408\u308f":12,sed:60,sea:15,arg:12,ELAPSED:22,"\u8a00\u8a9e":[12,49,55,70,80,81],PORT:45,"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":12,"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[45,81],"\u7d39\u4ecb":[29,80,74,34],"(a":10,GET:30,"]}":[50,31],"\u30b9\u30b3\u30a2":[12,68,23,73,28,74,75,10],"-level":49,"\u5c02\u7528":[20,30,17,81],"]x":74,TCP:[49,55],".log":[49,82,45],"\u30cb\u30db\u30f3":15,"\u305d\u306e":[20,45,12,77,23,49,55,6,46,61,10,29,31,33,34,74,36,15,39,82,81]," \u6642":74,"\"-":60,"\u7a7a\u6e2f":74,"\u8868\u73fe":[12,50,61,73,80,39],"([":76,"\nPARTIAL":12,Server:34,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":55,"\u8a18\u9332":28,"\"command":[29,30],"\u304a\u308a":[74,35]," easy":59,UNSPLIT:12,"\u69d8\u5b50":29," issue":0,AND:75,"\u3002value":28,last:74,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":45,"\u304a\u52e7\u3081":77,"\u4f4e\u304f":23,"-api":24," Sites":6,"]:":30,"] ":[49,52,45,30,58,60],"-file":[49,60,77],"\u53ef\u5426":29,Query:[20,22,5],"]/":30,"])":76,"\u6642\u70b9":[26,82],load:[2,5,6,61,11,15,20,31,29,67,75,33,34,35,36,23,48,49,82,60,66,70,74,78]," about":22,");":12," database":58,point:[44,7,46,18],"\u3059\u304e\u307e\u305b":34,"\u306f\u3058\u307e\u308a":82,"\u30b9\u30ec\u30c3\u30c9":[49,20,51,45,55],"\u30ca\u30ce":70,"),":[26,32],shutdown:[20,21,5,49,70,66,30],linux:45,"\u4e0d\u80fd":45,") ":[12,26,39,77,45]," documentation":80,")\"":34,"\"gronga":16,")'":[68,48,74,75,34,78,15],":#{":22,GitHub:[0,81],"\"web":[78,48],"\u8003\u616e":23,Groonga:22,ShortText:[6,10,15,29,26,27,49,30,31,32,33,34,35,36,75,39,41,48,23,60,68,70,74,78],"\u898b\u3064":[70,68],NULL:12,")\n":[76,12,22,18],txt:[24,81],"\\\"":[46,61],po:81,XML:70," #{":22,"\u3057\u3084\u3059\u304f":55,"|<":22," COLUMN":[23,6,74,29,31,32,33,34,35],MESSAGE:[22,42]," raltime":78," to":22,"#groonga\u30bf\u30b0":74,"/db":[6,68],EXAMPLE:58,"\u30d9\u30fc\u30b9":[60,70,81],"\u56de\u7279":45,"\u304f\u3093":74," User":34,"GET\u30e1\u30bd\u30c3\u30c9":79,bill:[23,46],"\u30a8\u30b9\u30b1\u30fc\u30d7":61,"\u6307\u793a":15,"\u5236\u9650":[43,20,5,70,45,30,39],"\u505c\u6b62":[49,21,82],TokenBigramSplitSymbolAlpha:[23,46],"\u30e9\u30a4\u30d6\u30e9\u30ea":[29,55],"\u4eca\u5ea6":74,"\u30b0\u30cb\u30e3\u30e9":74,"\"sug":16,"\u30c8\u30fc\u30af\u30f3":[70,26,46,78,48],engi:[15,68],"\n\n":[69,8,9,10,11,19,29,54,27,49,30,67,32,37,41,42,4,50,61,71,26,74,14],"\u63a1\u7528":[23,55]," customized":22,"<=":74,"\u5316\u524d":28," DB\u30d1\u30b9":[29,30],"\u5404\u8a9e":[29,50],"\u8aad\u307f\u65b9":73," values":61,"\u8a00\u3046":15,NetBSD:70," free":[50,22],TokenBigramIgnoreBlankSplitSymbol:23,"\u898b\u3064\u3051":[15,2],"-key":77,"\u4e16\u4ee3":82,"null":27," logs":22,"\u4e00\u7fa4":12,"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":49," float":31,"\u6210\u679c":[80,81],Alert:22,"_PER":60,"\u5065\u4f5c":34," file":77,"\u56fd\u540d":33,"\u30c8\u30e9\u30a4":60,"\u307e\u3067":[43,12,49,61,45,74,36,81]," select":[23,29,74,75,33,34,35],"\u975e\u4e92\u63db":60,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[49,70],"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":55,Lines:64,"\u56de\u52d5":45,amd:77," describes":81,"\u5f8c\u8005":75,user:45,"\u9006\u5f15":34,".spec":60,"\u5834\u6240":[70,56,45],Moero:34,"_TABLE":60,Senna:[20,55],"\"\u3001":15,Marverick:70," buffer":50,"\u7d44\u307f\u5408\u308f\u305b":[23,55,26,32,12],"\u3002true":39,"-debug":70,edge:51,flags:[49,50,26,74,27,45,29,31,32,33,34,35,36,41],sortby:[68,71,10,29,75,34,60],"') ":49,entry:32,"\u9806\u756a":[49,23],Lucid:70,"_path":45," digits":22,"\u30d0\u30a4\u30b0\u30e9\u30e0":[23,26],"-path":[49,2,70,22,68],"_KEY":[2,70,23,6,26,74,27,29,31,33,34,35,36,60]," --":[74,34]," work":22,"\u8fd1\u4f3c":7,"\u547c\u3073\u51fa\u3059":[44,7,47,76,38,18],Debug:22," time":[31,22,45],"\u9006\u5f15\u304d":[20,74,34,17],"\u547c\u3073\u51fa\u3055":10,"\u547c\u3073\u51fa\u3057":[70,6,12],"\u3067\u304d\u308b":[20,12,68,49,55,6,10,73,23,31,32,45,34,74,36,60,80,51,64],"\"uptime":[29,30]," Users":[6,74],"\u5316\u51e6":28,point1:7,"\u30bd\u30fc\u30c8":[20,2,68,70,10,29,75,34,17],PID:[49,2],"3\u4ef6":74,Example:22,source:[29,74,32,34,35,41],"\u5024\u3068\u3057\u3066":49,location:[74,75,33,34],input:61,"\u3064\u3051\u308b":36,"...":[3,68,50,6,27,45,79,60,41],"\u30fbOR":75," adv":77," code":[22,81],"\u968e\u5c64":12,"\u9759\u7684":[49,80,79,64],"\u304f\u3060":[68,23,45,29,31,79,77,81]," blog":[23,29],"<#{":22," add":81,"\u30cf\u30c3\u30b7\u30e5":[4,50,26],bit:[39,77]," was":34,"\u5f53\u3066":[27,41],"\u30d7\u30e9\u30b0\u30a4\u30f3":[60,2,70,72,81],"\u5927\u4e08\u592b":0," GNU":[20,77,60],RPM:[60,70]," Takuto":70,"\u540c\u7b49":[46,45],"(ctx":12,unstable:77,"\u308f\u3051":15," Kinjirou":34,"\u4f5c\u696d":81,OS:45,OR:75,"\u6642\u523b":[4,31,47,45,48],".title":[31,34],"\u7f6e\u304b":79,"_NONE":41,"\u7f6e\u304d":70,FILES:58,"-DD":22,examples:70,cd:81,"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[49,2],"\u3001[":29,"\u3001_":[74,75,33],"\u66f8\u304b":74,"_bool":70,"\u5927\u304d\u304f":[6,70,82],"\u8a73\u3057\u304f":[29,77],"\u66f8\u304d":[23,46,45]," nanoseconds":22,"\u66f8\u3044":74,"\u5927\u304d\u3044":[49,60,12],"\u3061\u3083\u3093":34,"\u69cb\u6210":12,"*BSD":70,"\u30d3\u30eb\u30c9":70,".sh":[64,81],"\u5b8c\u4e86":[10,81],"id]":11,run:64," Hiroshi":70,"\u4ed8\u304d":[20,70,68,26,34,78,15,39,17],"\u3001\n":[75,9],",\u3000":45,bi:[23,46],"\u4ed8\u3044":74," tablename":82,"\u4e0a\u4f4d":23,"\u4ed5\u7d44":81,Raccoon:34," test":[45,29,30,31,35,64],"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":49,"\u4ed8\u3051":30,"_FOR":12,"\u30ab\u30a6\u30f3\u30c8":74,"{\"_":[31,75,34,35],"\u3001 ":[29,31,74,75,81]," schea":58,"\u3001\"":[48,78,74,75,60,15,16],"\u305d\u3053\u306b":[27,41],zip:[20,77],Dump:22,"\"service":48,"\u4f3c\u305f":75,"\"yu":6,"\u3001-":[70,31,79,45],"\u53ca\u3073":45,"\u3001/":77,"\u3001.":[64,81],range:[27,41],"\u5185\u5bb9":[74,78,52,27,10,30,31,45,35,15,41,81]," garbage":50,"\u8edf\u6027":55,"\u30fb\u30c6\u30fc\u30d6\u30eb":73,"\u95be\u5024":[20,68,49,46,10,23,13,60],"\"serach":48,"\u672c\u6587":35,".\n":[6,45],"\"sea":15,"\u6271\u3048":63,"\u30ad\u30e3\u30c3\u30b7\u30e5":[49,2,10],"\u30a4\u30e1\u30fc\u30b8":29,"\u3088\u308a":[12,23,55,70,45,74,77,73,15],"-protocol":[49,45],"\u6295\u5165":[23,2],"\u5831\u544a":[60,70,72,45],"\u524d\u65b9":[20,46,68,26,72,29,12,36,15,17],Natty:[20,77,60],".)":22,".-":81,"..":[49,79,61,58,10],"\u3046\u3061":[12,50,7,10,82,55,60],". ":[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,61,62,63,64,65,66,67,68,69,71,73,74,75,76,77,78,79,80,81,82],".\"":[29,31,34],"\u6b53\u8fce":80,"\u5909\u66f4":[20,2,70,68,23,50,45,9,28,29,13,65,60,82],"\u56fd\u969b":81,".'":[26,32],"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":74,"\u51fa\u3059":74,"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":82,"\u652f\u63f4":16,"\u6574\u3063":64,usr:[49,77,64],"[groonga":60,".O":34," Demo":34,"-query":[49,60,22],"-type":[15,78,48],BSD:60,Google:16,link:[31,33],".]":[50,27,41,68],"._":31," language":81,posted:74,".h":24,"\u8868\u3059":[12,31,32,76,34],utf:49,"_op":12,"\u3088\u30fc":74,"\u56de\u907f":23,"\u306b\u5bfe\u3057":[79,2,46,68,4,26,52,10,29,30,12,32,33,34,35,75],Twitter:74,".c":34,".d":77,"\u8868\u3057":[12,82,28],"\u52d5\u304f":60,"\u5206\u89e3":12,".}":50,"\u66ff\u3048":23," than":22," types":68,"\u63a5\u982d":26,"_NOFILE":22,"\u30ed\u30fc\u30de":15," candidate1":68,"\u4f7f\u3044":[20,12,68,48,65,46,74,78,15,62,81],"\u3054\u3068":[55,63,51,35],"\u3075\u308a":68,"\u304b\u307e\u3044":29,"\u7279\u5fb4":[20,34,55],"\u5165\u308c":[23,74,34],"\u53c2\u7167":[20,2,68,23,55,70,45,31,79,33,34,74,60,39,17],"\u30b9\u30c8\u30ec\u30fc\u30b8":[20,55],".comment":74,"\u958b\u3044":[60,69,70,67,55],"\u5f8c\u308d":10,"_rate":[29,30],Mac:[20,70,77],"\u3042\u3052\u308b":[23,20,13],"'\u3002":49,"'\u3001":29,"\u56db\u3064":46,grn:[44,12,22,5,20,71,7,61,10,73,47,72,35,60,80,38,76,70,18],"\u6642\u4ee5\u5916":70,"\u5168\u6587":[20,77,49,55,46,73,29,74,75,13,34,35,63,23,17],tmp:[49,29,30,68],".load":45,users:74," script":45,"\u53f3\u8fba":[60,70],lucid:77," eight":29,"\u6307\u5b9a":[2,26,4,6,7,8,9,10,11,12,17,18,20,23,54,69,67,28,29,30,31,32,33,34,35,36,37,38,39,41,42,44,46,75,49,50,52,79,45,60,61,68,55,70,71,74,76,77,14,82],"\u5c5e\u3057":39,"\u4e00\u7dd2":[23,2],"\u3002Video":34,".patch":81,drilldown:[2,71,10,74,33,34],"\u306a\u304c\u3089":29,"\u3088\u3044":81,"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":45,"<limit":49,"\u6b63\u898f":[29,26],"\u4e00\u5de5":36,"\u300d\u300c":74,"\"groonga":16,"\"suggest":16,"-deafult":60,"\u5f37\u5316":[60,70],"/tutorial":[29,30],"\u3088\u3063":75,"\u7d50\u5408":[73,12,10],"-count":4,"\"co":16," b":10,"_pat":70," a":[22,58],partial:12,"\u4e00\u5207":45," d":[23,46],":\u5024":10,",\"title":29,"\u30a4\u30f3\u30c7\u30c3\u30af":35,"\u57cb\u3081\u8fbc\u3080":45,gf:[29,30],"\u843d\u3061":70,ga:45," z":39," push":81,"/json":60,CPU:45,"\u3067\u3069":68," }":74,"\u3067\u3057":55," C":[24,60]," @":[23,46,74]," A":58,"|http":45,"\u8a9e\u6271":46,"/\u65e5":74,Object:39,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[60,70]," Token":45,"\ngronnga":16,"\u3042\u3089\u308f\u3057":29,stable:82,"\u3067\u304f":80," [":[6,61,58,11,26,29,30,31,32,33,34,35,36,75,23,49,50,52,45,68,71,10,74],"\u3067\u304d":[2,6,7,61,75,10,15,16,18,29,26,28,49,30,31,32,33,34,35,36,59,38,39,81,44,12,47,48,23,52,79,45,63,64,68,55,70,73,74,76,77,78,82],include:24," _":[29,31,75,33,34,74,36]," \\":46," ]":75," \"":[68,48,23,50,61,27,10,29,74,75,45,77,78,36,15,41],"_API":12,"\u7279\u306b":[73,12]," !":10," &":[23,46,75,77],"\"saerch":48," ./":81," ..":[29,50,68,10,81]," *":[23,81,39,10,42]," +":[79,39,10]," (":[43,20,12,5,28,77]," )":10," .":[23,64,45],"\u3044\u308f\u3086\u308b":34," -":[2,69,4,6,7,8,9,10,11,14,15,18,19,21,22,25,26,27,29,30,31,32,33,34,35,36,37,38,23,41,42,44,45,46,47,48,49,50,52,54,79,58,59,60,61,64,67,68,73,70,71,72,74,75,76,77,78,81,82],"\u3002run":64,"\u3067\u5024":[49,29],"\u6e0b\u8c37":74,"\u983b\u5ea6":68,"\nand":77," >":[6,46,45,75,10,77]," <":[23,6,75,45,10]," =":[12,49,73,10,75,34],"2pdf":59,"\"complete":16,"-build":64," update":[77,81],"-id":49,"\u4e09\u3064":46,"_dir":60,"\u6b8b\u308b":60,"\"column":34,ctx:51,"\u884c\u308f":[52,45,34]," such":81,Here:22,".output":79,"\u30aa\u30d7\u30b7\u30e7\u30f3":[2,70,4,68,48,49,46,52,10,29,30,31,79,45,35,36,15,60,23,64,78],".po":[80,81],"\u3002Blogs":23,"\u5341\u5206":23,"-memory":70,".pc":72,"\ntable":[23,6,74]," [":10,"_cursor":70,"_SCALAR":[23,6,29,74,32,33,34,35,41],index:[34,35],"_thread":45," Blogs":23,squeeze:77,etime:52," assigned":34,HTML:[60,30,79,80,81],"\u6e21\u3055":12,"\u30a8\u30f3\u30b8\u30f3":[49,73,34],"\u7b49\u5024":70,"\u3060\u3057":[60,45],body:[23,69,61,10,67,32],"-exact":4,"\u6e21\u3057":[30,12,61],"\u5fc3\u304c":64,clearlock:[20,2,5,49,66,67],"\u516c\u958b":[60,70]," PatSuffix":36,"\u62e1\u5f35\u5b50":[70,45]," Names":81," developers":56,"],":[6,61,45,15,27,29,30,31,75,33,34,35,36,23,41,48,49,50,10,68,74,78]," libmemcached":64," \"":[50,45,74,27,41],"\u306b\u5bfe\u5fdc":[19,49,61,10,79,60]," ":82,"= \"":73," users":[74,22],"\u4e0a\u3052\u308b":23,"\u300d\uff08":[6,46],"_name":[6,72],Hardy:70,"\u5177\u4f53":23,"\u3067\u3082":[23,55,46,45,29,30,75,35,15,60,64,81]," Shibuya":70,"/senna":6,"\u8d85\u3048":[23,46,10],"\u6982\u8981":82,realloc:70,"\u5171\u901a":[73,26,39,35],"\u9014\u4e2d":[49,15,48],"\u3046\u3048":60,HOME:77,"'ABC":26," v":12,"\u5148\u60c5":74,"\u4ee5\u964d":[49,70,64,81],Draw:34,from:77,"\u624b\u9806":78,usa:33,"\u3057\u307e\u305b":15,"\u5730\u70b9":75," SiteCountry":33,"\u3044\u304f\u3064":80," defines":58,"\u30d5\u30ec\u30fc\u30ba":10,"\u3057\u307e\u3046":[60,70],".pid":49,"\u3057\u307e\u3044":[36,23,55,45,48],Itagaki:70,"/master":81,"\u81ea\u5206":81,"\u4efb\u610f":[49,55,39,45],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[50,69,47,67,60]," JQuery":70,"\u3059\u308b":[1,65,2,69,4,6,7,8,9,10,11,12,13,14,15,16,18,19,20,21,23,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,41,42,44,46,47,48,49,50,51,52,54,56,79,45,59,60,61,63,64,66,67,68,55,70,71,73,74,75,76,77,78,80,81,82],"\u7d4c\u7def\u5ea6":75,"\u3059\u308c":45,HOST:45,"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":64,"\u3059\u3093":74,Ultra:34,"/rab":[29,75,33],"\u305d\u308c\u305e\u308c":[46,49,55,7,74,10,23,12,75,33,77,35,79,64],"this":[29,30,31],"\u6b8b\u308a":82,"\u672c\u5f53":15,"\u3002Ctrl\u30ad\u30fc":29,column:[2,5,45,15,20,26,29,31,32,33,34,35,36,37,41,12,48,49,60,66,68,73,70,74,78,14],"\u8d77\u52d5":[4,49,70,45,29,30,79,10,82],Video:34,"_WITH":[36,26,46],"\u85a6\u3081":30,"/index":[49,81],"\u53d7\u3051\u4ed8\u3051":70,"-html":70,"\u7de8\u96c6":[2,38,80,64,81],objname:[69,67],"\u6b8b\u3063":70,"\u3001&":75,"\u51fa\u3057":74,"\u30b7\u30fc\u30b1\u30f3\u30b9":[15,78,48],TokenBigramIgnoreBlankSplitSymbolAlphaDigit:23,"\u3002\u3064\u307e\u308a":30,lock:55,sudo:77,"\"correction":16,"\u30af\u30e9\u30c3\u30b7\u30e5":[60,70],"_install":59,"\u4f7f\u3044\u65b9":[20,48,49,65,45,78,15]," example":68,Details:22,"\u6295\u7a3f\u5834\u6240":74,"\uff08TokenBigram":23,"\u6301\u305f":[55,26],"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":70,"\u6301\u3061":[49,29,26,12],"\u8a2d\u5b9a\u5024":[2,9],tomotaka:60,"\u6301\u3064":[48,49,51,26,61,28,29,33,34,39],"_LEAK":64," or":22,"\u6df1\u523b":23,"\u691c\u51fa":[2,70,64],"\u3059\u3067":46,"\u3059\u3079":[12,6,74,45,29,67,82,60,15],"\u6b8b\u3057":10," view":54,defalt:70," port":77,"\u3064\u3064":[23,55]," physical":50,"\u30b3\u30de\u30f3\u30c9":[2,26,4,5,6,46,8,9,10,11,15,16,17,19,20,21,25,69,27,29,30,31,32,36,37,41,42,12,48,49,50,54,79,45,59,60,61,64,66,67,68,73,70,71,75,78,14,82],"_create":[20,66,5,75,49,72,6,26,74,45,29,31,32,33,34,35,36,60,23],"\u81ea\u5df1":74,"_')":[32,28],"_PORT":45,"\u4e26\u3073\u9806":75," Text":45,"\u6301\u3063":48,"\u5f35\u3089":31," instead":49,",\"":[50,6,74,10,29,30,31,75,34,35,36],"\u30a2\u30af\u30bb\u30b9":[49,70,52,30,79,81],"\u7d5e\u308a\u8fbc\u307f":[29,10],"\u3042\u308b\u3044":[44,7,82,12,18],alloc:[4,29,30],"\u66f8\u5f0f":[26,4,6,7,8,9,10,11,18,19,21,25,69,27,29,30,67,32,37,38,41,42,44,47,49,50,52,54,79,45,61,68,71,76,14],rakutan:35,"\u81ea\u52d5":[55,26,28,29,45,34,36,60,81],"\u898b\u3064\u304b\u3063":16,"\u30da\u30fc\u30b8":[49,20,81,79,29],"\u578b\u540d":[73,26],"\u7b97\u51fa":[7,10],"_TIME":22,"\u9078\u629e":[29,30],"\u524d\u65b9\u4e00\u81f4":[15,2,68],":\\\"":61,"\u3002GRN":12,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":70,"\u4eac\u90fd":[23,46],"\u30c0\u30d6\u30eb":60,"\u300cbill":46,"\u7d9a\u304d":61,"\u8abf\u3079":[44,18],"\u7d9a\u3044":[23,10],"\u4e00\u500b":12,"\u66f8\u304d\u5f8c":46,"\u30ab\u30d0\u30fc":64,"% ":[77,81]," ~":77,"|WITH":[23,29,74,32,35]," clean":64,"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":52,"\u4fc2\u6570":12,WITH:32,"\u7d9a\u3051":45,"\u4e00\u9023":73,"\u6539\u884c":[49,27,41],TokenBigram:[23,29,26,46,48],ll:[23,46],"_reopen":[19,20,66,5,8,42],"/apt":77,euc:49,li:[23,46],"\u3002Eclipse":81,"_gqpt":45,tsv:79,"\u512a\u5148":45,"\u5de6\u4e0a":[44,2],"\u5de6\u4e0b":2," yes":52,"\u9589\u3058\u308b":[60,2],greater:12," keyserver":77,auto:68," |":[23,75,52,10],YYYY:22,billiard:[23,46],"_HOST":45,"\u9593\u9055\u3063":[60,16,48],"\u90e8\u5206\u4e00\u81f4":[23,46],"_point":[34,18],"\u306b\u304f\u308b":23,"\u4e00\u3064":[69,6,7,8,9,10,11,18,19,21,25,26,27,67,32,37,38,39,41,42,44,46,47,4,50,54,82,61,71,76,14],edit:[20,2,38,53,5],".net":[29,31,75,33,34],OffGao:74," updated":[23,81],"\u66f4\u65b0":[20,12,55,61,82,34,60,80,81],"\u30ed\u30b0\u30ec\u30d9\u30eb":49," hh":22," size":50,"\u300chsiomaneki":74,"\u70b9\u9593":[55,75],"\u6df7\u305c":[29,68],"\u65e2\u5b58":[19,29,30],"\u3064\u3044":74,"\u4e0d\u4e00\u81f4":10,"/LC":81,",\"link":31,chunk:50,"-patch":81," Aramaki":70,"\u753b\u9762":2,"\u5217\u5f15":12,frequency:68,out:45,"\u3050\u308b\u3093":34,"-match":[49,23,10],res:45,"';":49,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":49,"\"test":29," \u6c11":46,"\u30ab\u30ec\u30fc":46,"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":74,"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":60,"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":81,"\u7528\u610f":[12,48,73,45,78,15,16],"-fd":60,"\u601d\u3063":24,"/\u6708":74,This:[29,22,58],"\u904e\u7a0b":28," Site":[29,30,31,75,33,34],"'hoge":73,"\u73fe\u72b6":82," correct":[68,48],"\u5b9f\u7a3c":52,"\u4ed8\u5c5e":79,"/aba":[29,75,33],"8r":49,"'this":29,"\u5217\u5f62":73,Point:18,deprecated:82,"\u4e00\u90e8":[37,16]," Tomita":70,"\"\uff08":15,"\"\uff09":[15,2],"_friends":34,"\u300d\u3001":[74,34],"\u53ef\u80fd":[45,46,68,49,50,26,79,28,55,23,12,75,10,34,65,36,60,64,82],"\u307f\u304c":12,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":62,"\u8ffd\u6c42":55,"3ki":70,"\u8aa4\u5dee":60,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":55,"<max":49,suffix:12,"_DEBUG":64,"\nPREFIX":12,"\u8aac\u660e":[1,65,69,4,5,6,7,8,9,10,11,12,15,18,19,20,21,23,25,26,27,28,29,67,32,37,38,39,41,42,44,46,47,48,49,50,52,54,79,45,61,66,14,68,73,71,75,76,77,78,80,81],"1\u305a":[82,28],Daiki:[70,72],"\u30d9\u30af\u30bf":[2,70,41]," search":[78,16,68,48],"\u7d44\u307f\u8fbc\u307f":[20,53,5,49,73,6,66,45],"\uff08\u300c":23,lib:70,"\u9805\u76ee":[19,2,71,4,50,8,10,11,67,75,63,61,42],"\u8d77\u70b9":10,"\u78ba\u8a8d":[2,45,29,74,80,81]," links":31,"\u5bb9\u91cf":[50,10],"\u8aad\u307f\u8fbc\u3093":30,mkdir:6,",[":[23,74,10,29,30,31,75,33,34,35,36],"\u6c38\u7d9a":26," Meerkat":60,".groonga":[77,45,81],"\u7d44\u8fbc\u578b":[20,39,5],"1\u3064":[0,43,68,74,45,31,34,35,60,16],"-keys":77,man:2,natty:77,"\u3002command":82," for":[22,58,81],"\u304b\u3061":46,configure:[23,70,10,4,60,64,81],"\u304b\u3064":[55,46]," service":48,"\u304b\u3069":[23,44,75,68,18],"\u3002Senna":55,"\u7403\u9762":7,"\u756a\u76ee":29,",..":[41,61,27,10],"\u8ffd\u8de1":0,"\u8a9e\u610f":63,rst:59,"\nrequest":22,"\u3092\u3054":64,"\u3002\u300c":[34,35],"\u89e3\u6d88":[2,69],Bool:[36,44,39,18]," started":22,"-log":[49,60,22,45],"\u51fa\u73fe":[63,68]," SiteDomain":33,"\u8aad\u307f\u8fbc\u3080":2,"\u304b\u3051":67,"\u3002json":29,bind:60,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":46,ITS:0,KBytes:45,Information:22,stdin:34,"false":[19,54,71,26,8,11,67,32,34,36,37,14,39,70,42],"\uff01\uff09":[15,48],"\u7d5e\u308a\u8fbc\u3080":16,"\u56fd\u969b\u5316":[20,80,62,81],"\u4fee\u6b63\u4e2d":48,"\u30de\u30a4\u30af\u30ed":[74,39],Sphinx:[24,59,80,62,81],Soccer:34," from":77,"\ncolumn":[23,6,74],min:[52,45],"\n ":12,"\u6f14\u7b97":70,"\u304b\u3089":[2,6,61,10,11,15,16,29,23,30,31,75,39,81,45,12,48,4,51,52,82,49,60,68,73,70,74,76,78,80]," lexicon":45,"\u914d\u4e0b":79,"_const":12,"-commnad":82," Representation":81,BIT:45,"\u4eee\u60f3":[26,75,33],libmemcached:64," Gone":34,brazil:33,"\u901f\u3084\u304b":82,"_ACCOUNT":81," suggest":[15,78,68,48],"\u8aad\u307f\u8fbc\u307f":[29,60]," six":[29,22],"\u672a\u958b\u653e":70," sid":[20,77,50]," API":[24,20,80,62],"\u3089\u308c":[12,55,26,27,10,67,75,60,70,41],"\u4e2d\u9593":[46,12],"\uff09\u3001":46,"\u306a\u3082\u306e":55,"_suffix":60,"* ":39,"\u30d5\u30eb\u30d1\u30b9":[29,30],"*\"":72,"_build":64,"*')":10,url:6,"\u30b3\u30de\u30f3\u30c9select":73,"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":48,"_is":60,hh:22,"\u5408\u81f4":29,"mo\u30d5\u30a1\u30a4\u30eb":81,"_in":[44,2,5,20,70,53,74,75,34,60,18],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[60,2,70,82],"\nwarning":[8,42],Masahiro:70,"\u5909\u6570":[72,64],":tasukuchan":74,"-output":45,"_id":[75,28]," Type":31,".gz":81,"\u6307\u3057":73,"\nALERT":[8,42],",\n ":[68,23,50,27,74,41],"\u8d8a\u3048\u308b":23," Video":34," favorite":81,"\u524d\u8eab":55,"\u30e2\u30b8\u30e5\u30fc\u30eb":[20,70,82],Redmine:0,"'localhost":[49,52],"\u3002\u2193":49,"\u53cb\u4eba":34,"\u4e0a\u8a18":[43,48,23,45,29,75,77,78,81],"\u6e2c\u5b9a":45,"\u5b66\u3093":74,MacPorts:[20,77,60],"with":[23,60,10]," is":[29,30,31,22]," it":77,"\u30b7\u30a7\u30eb":45,"\u65e5\u6642":74," GeoIndex":34,IPA:59,"\u4e0d\u6b63\u78ba":4," in":[50,12,22],"\u5bfe\u8a71":[29,30],"\u7d20\u5358":77,"_equal":12,"\u65b9\u6cd5":[20,45,48,49,65,6,46,10,29,74,57,13,77,78,15,80,62,23,82,64,81],"\u30ea\u30ea\u30fc\u30b9":[60,2,70,82,72],"\u5316\u5bfe":81,"\u6295\u7a3f":74,"\u4ed8\u3051\u308b":[29,51]," Time":[23,31,45,74],means:22,"\u7279\u5225":15,"\u5c11\u306a\u3044":73,"\u30c0\u30f3\u30d7":70,TokenDelimitNull:72,"=$":81,",\n{":[15,78,48],"\u7e70\u308a\u8fd4\u3059":70,"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":[55,9,10],jiro:34,"\u306e\u307f\u3057\u304b":16,"_GITHUB":81,"_CURSOR":70,"\u3088\u3046":[2,6,46,10,15,16,20,65,29,31,75,33,34,36,59,23,12,48,49,50,79,45,60,64,55,70,73,74,77,78,82],"/html":[60,81],"\u5272\u308a":[27,41],"\u5f97\u308b":29,"\u4e0d\u8981":55,"\u697d\u3057\u3044":[23,46],"_search":[60,68],"/windows":77,",\n[":6,"\u79d2\u3088\u308a":72,",\n]":23,"_CTX":60,queries:45,"\u64cd\u4f5c":[20,12,49,73,26,10,29,17],"_parse":73,"\u5b9f\u884c\u4f8b":[48,78,74,29,30,31,75,33,34,35,36,15,64,82],view:[20,66,54,5,49,26],"\u5236\u5fa1":73,RETURN:22," markup":24,"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":70,"\u4ee3\u5165":[70,31,39,12,75],"\"float":31,latin:49,"\u7cfb\u5ea7":[44,7,18],"\u884c\u6570":60,".list":77," Properties":22,"\u65b0\u898f":[29,45],"\u57f7\u7b46":[63,35],"\u975e\u5e38":73," Request":81,"\u985e\u4f3c":[73,12,48],"\u51fa\u529b":[2,6,8,45,17,20,29,27,49,59,41,81,4,50,79,10,60,64,68,70,71,74,80,42,82],"\"table":34,ieee:39,"\u304c\u3064\u3044":70,"(string":38," Akio":70,Minute:22," quit":49,ken:34,"\u3084\u304c":82,"\u304c\u304a\u304c":74,"/var":49,"\u4f4d\u7f6e":[20,75,55,29,74,32,82,34,60,17],"\u5168\u4ef6":10,"\u4e43\u6bc5":70,job:45,"\u3053\u308c\u3089":[23,55,28,29,74,79,33,78,80,16],key:[45,68,74,48,6,26,61,10,11,29,31,75,33,34,35,36,15,41,78],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":45," Languages":81,"\uff12\u3064":[29,75,33],"2\u4ef6":74,"\u304a\u77e5\u3089":[20,2,70,72,60],"\u7279\u5316":81,Emergency:22," map":22,plugin:60,admin:70,"\u5927\u304d":50,"/status":[30,52],":ss":22,valgrind:64," max":[9,76],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[60,70],"\u6728\u578b":26,"/afr":[29,75,33],"\u88dc\u6b63":[20,65,16,68,48],"/local":77,"\u843d\u3061\u308b":[60,70],"\u96e3\u3057\u3044":55,"\u898b\u3064\u3051\u308b":15,comment:[29,74],RAM:45," \"@":74,"\u4f5c\u6210":[2,45,15,17,19,20,29,26,28,49,31,32,33,34,35,36,59,39,23,57,60,68,70,74,78,80],"\u533a\u5225":[36,39],DDL:23,Hex:34,"\u6df7\u5728":79,"_add":[49,20,66,54,5]," enabled":22,Music:34,"\u66ff\u3048\u308b":[29,33],table:[54,5,6,61,75,45,11,15,20,26,27,29,30,31,32,33,34,35,36,37,23,41,12,48,49,10,60,66,68,70,71,74,78,14,82]," \"_":74,"\u6587\u66f8":[29,46,16,73],Uubntu:64," \"e":[15,68],quit:[20,66,22,5,49,25],"\u30b5\u30d6\u30bb\u30c3\u30c8":39,"\u91cd\u307f\u4ed8\u3051":23,Tomoatsu:70,"\u30e1\u30e2\u30ea":70,"\u533a\u5207":26," kana":[15,78,68,48],json:[69,8,9,10,11,19,54,27,29,67,32,37,41,42,4,50,79,45,61,71,26,14],"\u78ba\u5b9f":48,TokenBigramIgnoreBlankSplitSymbolAlpha:23," \"s":[68,48]," Entry":[26,71,54,69,61,27,10,11,67,32,37,14,41],"]\n":[26,8,9,11,37,19,54,69,67,29,31,75,33,34,35,36,32,42,49,50,68,71,14],"\u3002SET":45,"\u521d\u671f\u5024":52,username:34,"\u65e5\u672c":[18,44,7,75,15],"\u8a08\u6e2c":[2,64],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":60,"-cache":49,"\u58ca\u308c":[50,70,60],"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":2,"\u3068\u3064\u3044":75,"\u4fdd\u6301":63,"\u524d\u8ff0":23,"\u7a2e\u985e":[20,12,68,48,49,74,28,29,31,78,15,23,17],"\u540c\u671f":45,"\u3068\u3053\u308d":[24,74,81],"\u30c7\u30a3\u30b9\u30af":2,"-config":[49,2,70]," favorited":74," \" ":45,"\u672a\u5b9a":26,saer:[68,48]," System":0,value:[26,27]," favorites":74,"\u793a\u3055":[27,41],"\u793a\u3057":[23,29,31,4,33],"\u73fe\u308c\u308b":23,"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":60,"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":[20,56,81],"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[49,29],"\u79d2\u5f62":39,tar:77,"\u578b\u3068":33,"\u3072\u308d\u3086\u304d":36,"\u3002\n":[2,7,9,45,12,18,19,29,27,49,30,37,34,35,39,41,46,4,50,51,82,60,70,72,74]," record":[29,30,31],"/\\":29,"/[":30,"\u9818\u57df":75,"\u3002LD":77,You:77,avg:52,pkg:70,"\u8fd4\u4fe1":74,uptime:[4,2],"\u3002'":[29,10],"{LANGUAGE":81,"\u614e\u91cd":64,"\u3002\"":[23,74,48],"\u3002#":[60,70],"\u578b\u304b":39,"\u3002-":[74,79,45]," HashTags":74,"/d":30,"/c":24,"\u3002)":45," replied":74,"\u6c42\u3081\u308b":7,"\u91cd\u8996":23,"\u6ce8\u610f":[23,77,45],"\u300cbilliard":46,"-learner":[70,16,58],"\u8aa4\u5b57":70," event":[15,78,68,48],"| _":75,"\u518d\u5ea6":12,http:[49,6,52,45,29,30,31,75,33,34,79,81],"/\n":[70,81],"\u3002C":24,"\u3002N":23,"]\"":74,":!":10,"\"roonga":16,v1:12,"\u306b\u3088\u308a":[43,23,55,30,75,50,36],"_ito":60,"\u672c\u4f53":80,pdf:[59,80],"\u304a\u304b\u3057\u304f":70,"\u3002_":28,EOF:49,"\u3002[":[29,37]," DB":79,"\uff01 ":74,"\u5168\u6587\u691c":[20,70,17,29],"\uff01\"":74,"/*":[24,81],"/groonga":[24,70,49,77,60,81]," ID":22,":\"":[29,73],"/$":[77,81],"/\"":[6,29,30,31,75,33,34],"/ ":[70,77],"\u304a\u3063\u3055\u3093":74,command:[49,79,82],"_POSITION":[23,29,74,32,35],lcov:64," translation":81,"\u8868\u793a":[20,2,4,49,50,70,27,45,29,30,31,75,33,34,60,41,23,17,82],"\ndo":45," obj":50,"_SECTION":[74,32,35],"\u591a\u91cd":52,"\u3042\u304d":36,"\u3001(":45,"\u81ea\u7531":[73,12,28],"\u5229\u7528":[20,23,49,55,6,46,79,45,78,29,30,75,64,48,15,60,39,17,81]," yum":77,gettext:81,".mo\u30d5\u30a1\u30a4\u30eb":81,"\u5fd8\u308c":60,"\u3002Point":[44,18],abbreviate:[61,10],begin:52,web:[78,68,48],"\u5236\u7d04":43,listen:49,"\u3042\u3063":[68,61,45,29,82,34,28,81],"\u958b\u59cb":[64,60,45,10],"\u3002 ":[44,70,48,72,7,10,45,78,15,60,81,18],"\u3042\u3068":81,"\u3055\u3093":[60,70,16,72,81],RLIMIT:22,"\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":49,"\u9ad8\u7cbe":55,qwik:6," its":22,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[64,81],match:[20,70,22,23,46,71,10,29,74,35,17],"\u5f8c\u7d99":[20,55],"\u3069\u306e":[31,48],dest:[49,52]," squeeze":[20,77],"\u756a\u53f7":[49,52,45,29,30,28,10],"\u59cb\u307e\u3063":16,"'pid":49,".jp":[6,56],"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":60,"_NIL":70," tracker":0,you:81,"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":23,Poedit:81,"\u4e00\u65b9":23,"\"MySQL":16,CentOS:[20,70,77],"\u6574\u5408":2,"\u4f4f\u3093":74,"\u672c\u8cea":45,"\u30c6\u30fc\u30d6\u30eb\u30ed\u30c3\u30af":55,Warning:22,"\u5ea6\u5206":39,SQL:55,"\u3068\u3044\u3063":75,"_threshold":[60,70,68,10],"\u4e0b\u8a18":[4,50,12,82],"\u306a\u304b\u3063":[19,54,49,71,26,8,9,45,11,23,67,32,82,37,14,42],"\u4e0d\u6b63":[60,2,70,64],sequence:[15,78,68,48],OPTIONS:58,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30b5\u30fc\u30d3\u30b9":30,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":63,Quiz:34," candidate2":68,"\u8ca0\u8377":70,"/source":[24,77,81],"\uff11\u5bfe":51,"'config":49,"\u30b3\u30e1\u30f3\u30c8":[49,70,45,74],"_CALL":12,"_sortby":[71,33,10],"\u767a\u884c":30," origin":81,"_PAT":[23,6,26,27,29,74,34,35,36],LANGUAGE:81,"\u7121\u9650":70,"\u96e2\u308c":75,"/hoge":49,"\u304f\u308c\u308b":[24,81],"\u30dc\u30bf\u30f3":81,MinGW:60," mail":45,"\u7b49\u4fa1":70,"#{L":22,",\"domain":33,"\u53d6\u308a\u9664\u304d":12," link":31,"\u3057\u3064\u3064":64,"\u3042\u308c":[23,39,45],"\u30c7\u30d0\u30c3\u30ac":64,"-h":49,"\u3042\u308a":[0,46,61,45,15,16,19,21,24,25,26,27,28,29,30,31,32,35,75,23,81,43,12,48,4,79,56,60,64,68,55,74,65,80,82],"\u3042\u308b":[26,4,6,7,8,9,10,11,15,18,19,21,25,69,27,29,67,32,34,35,36,37,38,39,41,42,44,12,47,48,23,50,52,54,79,45,60,61,14,68,55,70,71,74,75,76,81,82],"\u7acb\u3061\u4e0a\u304c\u3063":45,host:45,offset:[29,71,33,10,68],"\u306e\u3044\u305a\u308c\u304b":[44,7,18],"_query":[15,78,68,48],"\u6319\u52d5":[20,70,49,46,10,23],"\u9055\u3063":15,".hash":74,hana:34,"\u30c0\u30e1\u30fc\u30b8":23,"\u6f0f\u308c":73,"\u306e\u3069\u308c":15,"\u5358\u72ec":45,"\u4ee5\u5185":[15,74,75,48],universe:77,"\u5206z":39,or:73,"\u65b0\u3057\u3044":[49,80,16,81],"_queries":[29,30],"|KEY":[23,26,27,29,74,35,36],tomo:34,".html":[49,81],"\u3055\u3044":[68,23,45,29,31,79,77,64,81],"\u9055\u3046":70," Ueno":[70,72],"\u610f\u5473":[12,68,49,45,29,75,15],"!!":[74,34],"! ":12,"!\"":[29,30,31,34,74],"\u6570\u5b57":[23,45,48],SIGINT:60,"\u5b9f\u9a13":60,"\u3053\u3061\u3089":81," Shops":46,"\u4e26\u3073":[29,46,33],"<log":49," concurrently":22,"_nsubrecs":[34,33,28,74],friends:34,"_remove":[20,66,5,49,37,14],daijiro:74,"\u30ed\u30b0":[19,2,48,49,8,45,72,60,42],"\u5c55\u958b":77,"var":[49,12,77,41],"\u901f\u5ea6":[29,45,34]," query":[22,68],Execution:68,"\u89a7\u4e0b":64,"\u9806\u5e8f":[23,41,26,27,10],"-pid":49," Bigram":[23,74],"\u304c\u3068\u3046":74,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[19,82,45],"\u4f55\u4ef6":29,"\u73fe\u5728":[19,52,9,45,29,47,74,63],gronga:16,"\u3068\u3069":65,"\u53d7\u3051\u4ed8\u3051\u308b":30,"\u751f\u6210":[73,46,28,76,80,81],"&& ":23,enginen:15," Takashi":60,"\u74b0\u5883":[55,45,77,60,80,64]," eggs":35,"\u3068\u3053\u306e":15,"\u3068\u3057":[12,48,49,73,78,52,45,34,35,15,39,16],"{TIME":22," git":[77,81],"\u3068\u3048":[46,55,26,29,75,82],"\u3002iptables":30,limit:[22,71,10,29,33,34,60,68],MyISAM:55,"\u3068\u304d":[2,12,68,48,49,51,46,70,30,31,34,78,15,60,16,41],"-disable":70," pull":81,"\u611f\u8b1d":[60,2,70,72],bigram:[26,46],links:[31,33],"\u30fb\u81ea\u5df1\u7d39":74,"\u4e2d\u91ce":74,pid:[49,2],"\u8a08\u7b97":[2,48,55,7,75,78,15,38,39],"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":70,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[20,74,17],"{\"":[50,45],"\u4f7f\u3044\u5206\u3051":[23,46],"\"\u307e\u308d\u3086\u304d":36,"8bit":39,"\u521d\u56de":81," suggestion":58,"\"se":15,"_system":60,DESCTIPION:58,"\u305f\u3060\u3057":[2,49,46,28,79,60],"\u591a\u304f":[49,55,10,29,31,73,23],"\u7570\u306a\u308a":10,"\u30a2\u30ed\u30b1\u30fc\u30c8":4,"\u52a0\u3048":[36,31,12],detail:45,"\u3068\u308a":[79,64,10]," Narwhal":[20,77,60],"_COLUMN":70,bool:39,Pikonyan:34,"-help":49,"\u3068\u3082":[55,74,75,45],"{\n":12,"-analyzer":60," developer":74,"'abc":26," \u2026":30," zip":77,":\u5206":74,"\u8ab2\u984c":0,"\"GROONGA":31,".location":74,"/sources":77,"\u307b\u307c":35,"\u30bb\u30b0\u30e1\u30f3\u30c8":[50,69],"\u65b0\u3057\u304f":[29,82],"\u307b\u3069":[49,29,68],"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":70,"\u7cfb\u7def":39,"\u90fd\u6c11":[23,46]," tags":34,"\u30c7\u30fc\u30e2\u30f3":[49,2,30],"\u6027\u80fd":55,Site:[29,31,33],"{\\":61,"\u5909\u3048\u308b":23,status:[20,2,4,5,49,70,66,45,29,30],"\u307b\u304b":74,"\u2026\uff09":48,rep:45,"\u30d6\u30ed\u30fc\u30c9\u30a6\u30a7\u30a4":74},objtypes:{"0":"std:option"},titles:["1. \u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9","6.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","5.2. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","6.2.19. status","6. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb","6.2.11. dump","6.6.2. geo_distance","6.2.13. log_level","6.2.2. cache_limit","6.2.17. select","6.2.10. delete","2.3. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","9. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","6.2.23. table_remove","5.3. \u88dc\u5b8c","5.1. \u306f\u3058\u3081\u306b","4. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","6.6.3. geo_in_circle","6.2.15. log_reopen","groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","6.2.18. shutdown","6.7. Log","9.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","3.1. C API","6.2.16. quit","6.2.21. table_create","6.2.22. table_list","6.4. \u7591\u4f3c\u30ab\u30e9\u30e0 (pseudo_column)","4.1. \u57fa\u672c\u7684\u306a\u64cd\u4f5c","4.2. \u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u3092\u901a\u3058\u305f\u5229\u7528","4.3. \u3055\u307e\u3056\u307e\u306a\u7a2e\u985e\u3092\u3082\u3063\u305f\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58","6.2.5. column_create","4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3","4.6. \u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d","4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf","4.8. \u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22","6.2.7. column_remove","6.6.1. edit_distance","6.3. \u30c7\u30fc\u30bf\u578b","7. \u4ed5\u69d8","6.2.6. column_list","6.2.14. log_put","8. \u5236\u9650\u4e8b\u9805","6.6.4. geo_in_rectangle","6.1.2. grntest","7.1. \u691c\u7d22","6.6.5. now","5.4. \u88dc\u6b63","6.1.3. groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","6.2.3. check","2.1. groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","6.1.1. grnslap","6.6. \u7d44\u307f\u8fbc\u307f\u95a2\u6570\u4e00\u89a7","6.2.24. view_add","1. groonga\u306e\u7279\u5fb4","3. \u30b3\u30df\u30e5\u30cb\u30c6\u30a3","2. groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","6.1.5. groonga-suggest-create-dataset","2.2. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u4f5c\u6210","\u304a\u77e5\u3089\u305b","6.2.12. load","3. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","4.9. \u5168\u6587\u691c\u7d22\u306e\u8a9e\u5f59\u8868\u306b\u5bfe\u3059\u308b\u8ffd\u52a0\u60c5\u5831","2.5. \u30c6\u30b9\u30c8\u65b9\u6cd5","5. \u30b5\u30b8\u30a7\u30b9\u30c8","6.2. \u30b3\u30de\u30f3\u30c9","6.2.4. clearlock","6.2.20. suggest","6.2.9. defrag","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","6.2.8. define_selector","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","6.5. grn_expr","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6\u306e\u6307\u5b9a","6.6.6. rand","2. \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb","5.5. \u63d0\u6848","6.1.4. groonga HTTP\u30b5\u30fc\u30d3\u30b9","10. groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","3.2. \u56fd\u969b\u5316","6.2.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3"],objnames:{"0":"option"},filenames:["contribution/report","executables","news/0.x","suggest/tutorial","commands/status","reference","commands/dump","functions/geo_distance","commands/log_level","commands/cache_limit","commands/select","commands/delete","contribution/development/query","troubleshooting","commands/table_remove","suggest/completion","suggest/introduction","tutorial","functions/geo_in_circle","commands/log_reopen","index","commands/shutdown","log","troubleshooting/different_results_with_the_same_keyword","contribution/documentation/c-api","commands/quit","commands/table_create","commands/table_list","pseudo_column","tutorial/tutorial01","tutorial/tutorial02","tutorial/tutorial03","commands/column_create","tutorial/tutorial05","tutorial/tutorial06","tutorial/tutorial07","tutorial/tutorial08","commands/column_remove","functions/edit_distance","type","spec","commands/column_list","commands/log_put","limitations","functions/geo_in_rectangle","executables/grntest","spec/search","functions/now","suggest/correction","executables/groonga","commands/check","contribution/development/com","executables/grnslap","functions","commands/view_add","characteristic","community","contribution/development","executables/groonga-suggest-create-dataset","contribution/development/document","news","commands/load","contribution/documentation","tutorial/tutorial09","contribution/development/test","suggest","commands","commands/clearlock","commands/suggest","commands/defrag","news/1.0.x","commands/define_selector","news/1.1.x","expr","tutorial/tutorial10","tutorial/tutorial04","functions/rand","install","suggest/suggestion","executables/groonga-http","contribution","contribution/documentation/i18n","command_version"]})
|
1
|
+
Search.setIndex({objects:{"":{"--ftp":[16,0,1],"--dir":[16,0,1],"--document-root":[13,0,1],"--cache-limit":[13,0,1],"-P":[14,0,1],"--pid-path":[13,0,1],"--log-output-dir":[16,0,1],"-d":[13,0,1],"-a":[13,0,1],"-c":[13,0,1],"-m":[14,0,1],"-l":[13,0,1],"-n":[13,0,1],"-i":[13,0,1],"-h":[13,0,1],"-t":[13,0,1],"-p":[13,0,1],"-s":[13,0,1],"--log-path":[13,0,1],"--default-match-escalation-threshold":[13,0,1],"-e":[13,0,1],"--config-path":[13,0,1],"--query-log-path":[13,0,1],"--protocol":[13,0,1],"--bind-address":[13,0,1],"--groonga":[16,0,1]}},terms:{"\u305a\u308c":[33,2,13,19,60,70,24,35,81,77],".status":16,"'config":13,"\u3002groonga":[2,78,63,7,54,51,25,37,43,81],"\u51fa\u6765":[40,32,37,2,51],localstatedir:[18,65],"\u3082\u3089\u3063":2,",\"suggest":17,prefix:[83,36,33,17,65],"\u3002scan":83,"\u6e1b\u3089":59,"\u3070\u308c\u308b":18,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[13,80],"\u811a\u6ce8":[12,2,19,58,76,56,4],"\u30c7\u30fc\u30bf\u30d9\u30fc":36," scan":83," thread":[52,16],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[13,36,68,57],"\u79d2\u60c5":36,"_column":[27,69,22,16,74],"\"ab":3,"\u30df\u30ea":[36,35,56]," Lynx":[27,65],spec:18," GitHub":57," use":[79,57],editrc:36," stamp":52,Patch:[],"\u30d0\u30c3\u30d5\u30a1ID":79,"\u6b63\u5e38":16,"\u3066\u307f\u307e\u3057\u3087":35,"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":84,"/plugins":18," renaming":[],"_sel":21,"\u30df\u30b9":25," warning":60,"\u3059\u3067\u306b":48," display":[],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":59,"\u6761\u4ef6\u5f0f":24,"\u6700\u9577":[7,16],starttime:78,"GET\u30e1\u30bd\u30c3\u30c9":80,"\u7c21\u5358":[34,2]," threads":52,"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":17,"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":18,"-repository":65,"/Fedora":18,"\u3044\u304f\u3064\u304b":[33,83,7,74,49]," column":[40,35,2,17],"\u79d2x":56,"\u89e3\u9664":[13,1,66,75],"_nsubrecs":[32,74,62,84]," searched":[],"\u4f5c\u3089\u308c":16," install":[83,9,14,65,16],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":36,"\u4e00\u8a9e":34,"\"cache":51," CUTTER":83,"[2":13," domain":[6,62],"\u65e5\u672c\u6e2c":[63,56],"\u5927\u304d":79,".\"":[40,32,2],"\u6210\u529f":[5,7,60,53,39,71,75,54,51,76,44,77],"\u4e8b\u524d":[34,3],zunda:36,"\u5f15\u304d":63,"\u30de\u30af\u30ed":36,Visual:36," push":57,"\u30b7\u30f3\u30dc\u30eb":[7,54],"\u505c\u6b62":[13,28,81],net:62,"\u683c\u7d0d":[32,33,2,47,62,13,84,23,69,8,74,40,54,36,56,11],"\u8fd1\u3044\u9806":23,"\u4e8c\u3064":[69,81,16],args:13,Synonym:47,"\u7fbd\u7530":84,"\u578b\u3068\u3057\u3066":56,"\u82b1\u5b50":32,"\u306f\u3044\u3051":71,"\u5fdc\u3058":[19,16],"& ":[34,35,33,69,65],"\u9069\u7528":24,"\u3002output":68,"\u30af\u30a8\u30ea\u30ed\u30b0":[25,59,41,36],china:62,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":29,GRN:[33,36,18,24],path:[13,8,11],"\u300cComments":84,"\u4e0e\u3048":[33,2,62,13,70,34],".ddl":16,"\u30b0\u30cb\u30e3\u30e9":84," option":52,"\u305a\u306b":7,"_key":[32,1,2,17,62,40,84,24,35,51,74,67,37,47],"\u79cb\u8449":35,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":[65,16],"\u4e2d\u8eab":[2,16],"\u5f62\u614b":[63,7,65],"_output":[39,62,24]," cleared":[],"\u30c8\u30fc\u30af\u30f3":[7,59,18,69,41,36],":port":[13,80],"'\u3002":13,"\u5411\u4e0a":36,serch:[17,59],"\u7ffb\u8a33":[43,57],"\u63a8\u79fb":81,"\u300c$":24,"\u300c\"":[13,2],"\u300c#":[84,18],"\"sound":59,"\u300c.":40,"\u8fd4\u5374":[24,2,8,11],"_rc":24,"-YYY":57,total:[79,16],"\u624b\u9806":41,"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[43,33],"\u592a\u90ce":32,noarch:65,"\u9023\u7d9a":[34,69,59],"\u30d7\u30ed\u30c8\u30b3\u30eb\u30e2\u30fc\u30c9":51,Compressed:[],typo:36,ip:16,TABLE:[18,7,2,8,67],"\u4e0a\u4f4d":34,Removed:[],type:[32,2,17,62,59,40,84,16,35,54,41,25,37,11,67],"\"n":51,"\u30d6\u30ed\u30b0":[84,37],"_LIBRARY":65,"\u6709\u529b":17,"<=":84," opened":52,"\u73fe\u5728\u5730":84,autogen:57,"\u901a\u5e38grntest":[],"\u4e0b\u304c\u308a":34,"'Site":2,"_register":85,"(pos":[12,58,4],EMERG:[60,77],"-bind":[13,36],"_command":51,"\u3064\u3065\u3044":84,"\u7518\u6817":84,"\u5217\u5f62":19,"\u6709\u52b9":[16,13,7,70,24,40,51,36],"\u62bc\u3057":2," enclose":[],"\u7f6e\u304d\u63db\u3048":[13,57],"\u4ee5\u4e0a":[33,2,17,13,69,24,16,83,57],mm:52,Text:56,"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":16,"\u62bc\u3059":[2,57],"\u30a2\u30fc\u30ab\u30a4\u30d6":57,mv:5,"_SIS":[7,69,67],"_EXPR":33,"\u300c_":2,"\u306b\u95a2\u3057":[33,16],"-macports":[],"\u5316\u6642":36,"\u304c\u3063":37,"-> ":18,JavaScript:[27,35,80,51,26],updated:34,LC:57,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[1,66],"\u660e\u793a":[13,25,16,63],"\u6b21\u90ce":32,"2Gbyte":56," pdf":9,"\u4e0b\u66f8\u304d":23,LF:14,end:14,"<groonga":16,eng:[25,17],"\u540d\u524d":[66,2,22,68,58,70,48,16,71,4,5,27,28,29,7,8,74,78,30,54,79,76,55,56,11,57,12,13,60,14,77,53,35,80,24,36,75,17,19,18,39,85,64,84,44,81]," chunk":79,travel:84,"\u30bb\u30b0\u30e1\u30f3\u30c8":[79,66],"\u30d7\u30ed\u30bb\u30b9":[27,79,2,13,29,14,16,78,51,63,81],"\nworks":52,"-off":[],config:[1,81],"-lines":36,"\u30b4\u30df":[79,18],"\u7d42\u4e86":[13,29,18,16,51,81]," title":[40,32,37,2,51],description:[84,69],"_plugins":36," lets":[],"\u30b9\u30fc\u30d7":69,"\ndebug":[60,77],lat:16," hobby":52,"_title":[37,2,16],types:[25,59,17,41],"/IP":63,"\u63fa\u308c":47,"\u305d\u306e\u5f8c":38,".tar":57,".description":84,"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":18,"\u5c0f\u3055\u3044":[33,85],"\u56fa\u5b9a\u9577":18,">#{":52,"\u901a\u5e38":[40,56,2,74],"\uff08TokenMecab":34,"\u5272\u308a\u5f53\u3066":18,"\u500b\u5b9a":61,"\u3069\u3053":36,"\u4e88\u5b9a":[6,36,81],"\u3042\u305f\u308a":[36,18],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[27,6,18,16,42,36,9,43,82,57],"\u7acb\u3061\u4e0a\u3052":16," smaller":52,"\u5358\u4e00":54," url":68,"\u305f\u304f":[3,24,57],"\u305f\u304b":[36,59],"\u30d1\u30c8\u30ea\u30b7\u30a2":[27,69,2,67,7,24,26],Debug:52,japan:62,"\u305f\u3044":[32,2,62,6,16,13,51,65,41,25,37,56],gqtp:[13,63,61,14,16,43],"\u6d6e\u52d5":[40,56],"\uff01 ":84,"_in":[12,1,22,27,84,32,18,72,35,36,4],LongText:56,"\u8fd4\u3057":[12,33,2,17,59,78,58,24,30,64,41,25,55,3,4],"\u8fd4\u3055":[17,79,70,48,24,81],"\u305f\u3073":[35,81,16],"\u6574\u6570":[40,56,48,74,64]," type":54,"\uff09\u3001":69," message":[37,77],"\u3002grntest":16," speed":3,There:[]," support":21,"\u3002id\u30d1\u30e9\u30e1\u30fc\u30bf":71,"\u592b\u5fc5":67,"\u30c6\u30b9\u30c8\u30c4\u30fc\u30eb":16,"\u3082\u3063\u3068\u3082":83,"\u300coutput":80,"\u691c\u8a0e":34,"\u8a8d\u8a3c":51,"\u8fd4\u5024":[7,68,58,70,48,24,71,4,5,28,29,66,8,30,54,79,76,55,11,77,12,78,60,53,80,75,17,39,64,44],Daiki:[18,85],"\u5168\u3066":[37,56,24,57],"\u3072\u3089":25,"_select":[19,43,33,36],"\ncustomized":52,"\u691c\u8a3c":14,"(point":[12,58,4],"\u6771\u4eac":[34,84,35,69],"2\u3064":[0,84,37,55,41],API:[19,18,85,33,36],each:[25,59,17,41],PROGRESS:52,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[27,1,2,32,79,11,37,26],"_$":17,"_\"":36,"\u30ec\u30d9\u30eb":[13,60,77],serach:59,searc:25,"\u30d1\u30b9":[13,18,14,16,80,85,36],"\u3002\uff08":[23,59,79,18,69,41,25,36,57],"\u3002\uff09":[1,23,59,18,41,36,57],"_DAT":36," Please":57,"\" ":[34,35,47,16],"\u3050\u308b\u3093\u3057\u304d":19,"\u767a\u884c":51,TokenBigramSplitSymbolAlphaDigit:[34,59],"\u30ed\u30b0\u30d1\u30b9":18," Tracking":0,realtime:41,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d1\u30b9":2,"\u30da\u30a2":[25,59,3,41],rd:[34,69],moritapo:32,rc:52,TokenDelimit:[7,41],"\u90e8\u5206":[34,33,69,83],"\".":62,Zenigata:32,"\u6570\u3048\u308b":63,"\u77ed\u3044":[84,18],SYNOPSTIS:15,"/\uff09":18,"_tp":14,"\uff01\uff08":57,free:18,DLL:36," html":[9,57]," editor":57,"\u305f\u308a":[19,43,7,48],"\u305f\u3089":[25,18,57],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":11,"\u305f\u3081":[47,68,69,16,50,25,67,40,7,34,57,32,33,59,13,79,41,14,35,49,36,83,84,19,24,63,43],"\u30eb\u30fc\u30eb":18,"\u307e\u308d\u3086\u304d":67,"\u30eb\u30fc\u30d7":18,libedit:[36,1,18],"++":36,"\u63a5\u8fd1":33,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":18,filter:[32,69,34,84,18,39,24,35],COLUMN:[40,54,2,11],"\"ni":25,"\u8fd4\u308a":35,"\u8fd4\u308b":18,TIME:52,"\u30eb\u30fc\u30c8":36,user:16,rand:[27,35,64,22,72],"\u8aad\u307f\u8fbc\u3093":51,"\u53ef\u5909":[36,66],Notification:52,"\"BLT":68,"2\u5104":31,"\u304a\u3055\u307e\u308b":35,"_next":18," processed":52,"> ":[32,21,2,47,62,40,85,35,51,36,37,67]," brew":65,"\u6607\u964d":[7,24],"1\u884c":16,"\u30b5\u30dd\u30fc\u30c8":[1,23,18,16,81,36,56],"\u540c\u4e00":[69,2,47,7,24,54,16,74,37,81]," Meerkat":36,"\u3002:":[68,69,70,16,71,25,3,7,8,34,54,9,11,57,59,13,79,80,24,83,17,39,65,41,81],top:[12,36]," Synonym":47,SEE:15,"\u4f7f\u308f":[63,25,36],"\u533a\u5207\u3089":36,"\u533a\u5207\u308a":[2,17,62,13,70,68,14,24,40,41],"\u533a\u5207\u308b":18," mysql":21,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[13,80],"\"roonga":3,"\u898b\u306a\u3055":24,"\u5316\u524d":74,"(Windows":16,"\u5358\u4f4d":[69,18,58,24,36,4],"_clear":36,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":79,"\u672c\u6765":47,".com":[2,62,40,35,65,57],Oracle:36,"\u5358\u4f53":16,"\u3069\u3061\u3089\u304b":51,nsubrecs:62,"{LANGUAGE":57,Marverick:18,Debian:[27,83,65,36],bi:[34,69]," execution":[],"_preparer":[25,59,17,41],"(location":[32,35,84]," \"@":84," sphinx":9," license":21,"\u30a8\u30e9\u30fc":[5,1,53,60,81,7,39,24,71,75,54,76,65,36,44,77],Animation:32,"\u5834\u5408":[1,66,2,47,68,69,70,48,16,71,51,3,4,5,40,53,7,34,75,54,78,79,76,56,57,31,32,33,59,13,60,14,77,35,80,24,36,37,17,62,63,18,39,64,65,84,44,81],"\u3002grn":[19,33],"\u5f93\u3063":[7,80,24],"\u304b\u3069\u3046":[34,24],contents:[],latency:16,"\n>":[32,2,17,62,40,35,51,67,37,47],"\u7279\u6b8a":[80,16],dest:[13,14],"\u4e00\u89a7":[27,72,22,32,13,79,40,84,34]," and":[43,21,52],",\\\"":70,"/run":13,"\n-":[75,71],OLAP:63,"\n(":52,"-port":[13,16],They:52,"_distance":[27,1,22,32,58,72,35,36,55],"\n%":[2,13,68,51,65,83,57],"\n ":[34,79,39,8,24,78,16,84,11],"\u5f93\u3046":18,"\n\"":16,"\n#":[13,9,16],"\n]":[25,68,59,70,41]," index":[32,37],"\u30d9\u30af\u30c8\u30eb":56,"/share":[13,36],"\n[":[53,2,47,68,70,48,16,51,25,67,40,66,34,75,54,79,77,32,59,13,60,35,37,17,62,84,39,7,41],"\u30b1\u30fc\u30b9":34,"\u7d22\u7528":[27,2,26],"\u3044\u307e\u305b":[19,23,17,73],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":57,"\u3084\u3059\u3044":1,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":79," point":58,"\u4f7f\u3063":[0,32,33,2,47,59,34,79,69,35,65,43,3,57],"\u3072\u3068\u3064":55,"\u30b5\u30b8\u30a7\u30b9\u30c8":[27,17,73,18,15,36,3],"\n}":33,"> /":[],"\u540c\u68b1":[18,57],"\u7d22\u6642":18,radious:4,"\n{":[78,70,16],doc:[6,15,57],Float:[40,56,58,2],".GitHub":57,"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[25,59,85,41],"\u767a\u751f":[34,1],"\u56fa\u5b9a":7,"\u4f7f\u3048":[36,65,24],"\u4f7f\u3046":[1,23,2,17,40,6,19,68,18,16,34,59,33,36,25,37,3,41],"\u30ed\u30fc\u30c9":[27,2,13,84,18,70,36,26],"\n`":[5,7,53,60,66,39,48,71,75,54,79,76,44,77],"\na":52,"\u66f8\u304d\u8fbc\u307f":84,"\u66f8\u304d\u8fbc\u307e":5,Fedora:[27,18,65],"\u30ec\u30b3\u30fc\u30c9":[2,67,23,70,24,71,47,7,8,74,34,56,31,32,33,13,35,36,84,17,62,19,18,39,63],"\u306a\u304a\u3053\u306e":16,"\u6210\u308a\u7acb\u3063":33,"\u307f\u306a\u3055":33,"\u65e5\u672c\u8a9e":[34,25,0,57],"\u8ffd\u52a0":[1,53,2,67,70,50,3,26,27,7,74,34,54,57,32,33,13,36,37,62,18,39,85,43]," X":[27,18,65],"\u5ea6\u8868":18,"\"\u308d\u3086\u304d":67,"\u5c0f\u6570":[40,36,35,56,24]," \u3057\u3044":[34,69],"@s":18,grnslap:[45,27,14,22],"\u72ec\u81ea":[63,14,51]," spaces":[],"\u30d5\u30a9\u30fc\u30e0":19," --":[32,84],"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf":33," work":52,"-frequency":36,"do":16," candidate":17,"-enable":18,df:51," Ventry":53,"\u3055\u3089\u306b":[32,81,84,3,63],de:57,db:[66,75,16],"\u5f0f\u4e2d":19,"_limit":[27,1,62,22,39,38,24,48],"\u5019\u88dc":[25,59,3,17],"\u8ab0\u304b":43,"\u91cd\u307f":[34,27,37,26,24],"[libedit":36,"\u8ab0\u304c":84,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[27,38,22,18,80,81],"\u3064\u304b":85,"\u5171\u8d77":[25,59,41],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[27,69,59,34,18,85,20,41,36],"\u91cd\u304f":34,"_index":84,"\u7d50\u679c":[2,47,68,69,24,20,25,27,74,33,59,34,41,35,80,16,37,83,84,62,19,18,63],"\u30ec\u30b3\u30fc\u30c9ID":71,"`${":57," five":2,"-per":36,noftp:[]," cases":[]," IndexBlog":37,"\u90e8\u54c1":63,"\nload":68,"\u5341\u4e00":69,"\u69cb\u9020":[19,33,32],"\u5e83\u304f":[63,84],"\u591a\u3044":34," this":2,"/gat":[35,2,62],result:33,"\u9589\u3058":36,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":69,"-commnad":81,"<port":[13,16],"\u67d4\u8edf":19,"\u6a5f\u80fd":[27,1,23,17,59,13,19,18,16,33,51,41,25,73,84,3,47],"(Cutter":83,tags:32,"\u4e8c\u3064\u76ee":33,"\u3002status":2,score:[32,33,2,17,34,84,24,35]," Time":[34,40,2,16,84],"\u5bbf\u99c5":84,"\u56db\u6368":36,"\u7bc4\u56f2":[12,23,2,27,34,63,81,7,24,74,84,26,4],"\u3002json":2,"\u524d\u65b9\u4e00\u81f4":[25,1,17],"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":33,"_CHECK":83," information":57,"\u611f\u3058":84,"_geo":36,"\u3044\u305a\u308c":[56,81,74],"\u3092\u901a\u3057":[13,2],"_get":36,"\u30b5\u30fc\u30d0\u30fc":36,COMMAND:2,"\u59cb\u307e\u308b":[25,54,3,16,74],"_NORMALIZE":[21,2,47,34,84,7,8,24,37],"\u534a\u5f84":4,"\u5373\u6642":63,"\u539f\u99c5":35,packages:[65,57],"\u3092\u901a\u3058":[63,35],"_level":[5,27,38,52,22,13,60,77],"\u69cb\u3044":[25,57],"\u3068\u3057\u307e\u3057\u3087":[37,2],country:62,ill:69,Supported:[],"\u30e9\u30f3\u30c0\u30e0":35,"\u30a8\u30f3\u30b3\u30fc\u30c9":[18,80],"\u66f8\u304d\u8fbc\u3093":84,ITS:0,"|PERSISTENT":[8,11],"\u30e9\u30a4\u30d6\u30e9\u30eaSenna":[27,63],"\u4e00\u4ef6":71,"0e":16,"\u975e\u308f\u304b\u3061":[34,69],com:[61,62]," with":[79,52],"\u540c\u69d8":[32,33,63,23,24,35,16],point2:58,"\u591a\u91cd":14,abbreviate:[70,24],"\u5931\u6557":[36,18],"\u5f8c\u304b\u3089":68,"\u7d4c\u7def":[40,35],"\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8":13,"\u4fdd\u5b58":[27,32,13,63,23,40,35,84,56,26],"-gram":[34,69,2],"\u7f6e\u63db":[47,24],"\u95a2\u6570":[5,12,1,18,22,27,19,7,58,72,35,30,64,33,55,83,4]," formats":52,diff:16," following":52,"\uff13\u3064":56,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":16,"\u7b49\u3057\u3044":[19,33],"_local":[68,16],"\u3068\u3044\u3051":25," four":[2,52],"\u7b49\u3057\u304f":33,"\u672a\u63d0":[]," some":52," {\"":17,"\u3068\u3044\u3046":[2,47,69,16,51,25,9,56,57,32,59,34,79,61,35,80,81,36,83,84,17,62,19,63],JSON:[36,18,70,17],daijiro:84,")\u300d":[13,2],"\u307e\u305f":[66,68,70,48,16,71,51,5,28,40,29,53,8,78,75,54,79,76,56,11,77,13,60,35,24,37,83,84,39,7,44],"_blog":37," array":79,")\u3002":71,"\u3044\u3044":63,"\u7528\u3044":[5,27,1,84,2,83,32,34,63,24,35,80,51,36,9,37,26],"\u95a2\u4fc2\u5f0f":[43,33],"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[17,13,79,68,24,84],"\u307b\u307c":37,"'needle":33,DB:[27,33,2,13,8,16,26],"\u30ab\u30f3\u30de":[70,68,2,62,24],worker:61,"\u65b0\u305f":33,"\u62ec\u3089":24,"\u521d\u671f\u5024":14,SIGINT:36,"\u5730\u70b9":35,"\u9ad8\u67d4":63,applied:21,"\u554f\u984c":[1,79,18,16,85,36,57],NAME:15," separate":[],"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[27,49],Process:[27,52,22],"\u3069\u3093":[8,11],zlib:[36,18],"_message":37,"\u7528\u9014":65,"\u305a\u3064":[13,84,37,16],near:33,"\u5165\u529b":[1,66,2,47,68,70,48,16,71,51,25,3,5,28,40,29,7,8,78,75,54,79,76,11,77,59,13,60,14,53,24,36,17,19,39,41,44],tasukuchan:84,TokenMecab:[34,7,69],"\u6700\u3082":79,"\u30d0\u30c3\u30d5\u30a1":79,"\u79d2\u6570":[78,84,56,24],"\u6709\u9650":24,is:[52,57],it:52," can":[52,57],il:[34,69],io:21,"\u53d6\u5f97":[32,62,59,48,65,41,25],ia:[34,69],"\"}":[32,17,62,59,70,35,41,67,25,37,47],gronga:3,id:[32,2,17,62,40,13,68,59,8,24,71,34,35,51,41,67,25,37,74,11,47],"if":33,"\"@":84,TokenBigramIgnoreBlank:34," remained":52,"1\u4ef6":[34,84,71],"_rectangle":[12,1,22,27,18,72,35,36],suggest:[27,38,17,22,59,18,36,25,3,41],make:[14,83,65,57],"\u4f8b\u3048":[32,17,62,59,13,63,69,16,50,34,41,25,37,3,67],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":33,"-dataset":[45,27,17,22,59,15,85],"\u30df\u30ea\u79d2":35,"\u7121\u8996":[13,68,18,71,34,36],"\"]":[32,2,17,62,40,13,84,68,59,8,24,34,35,51,41,67,25,37,11,47],"\"_":[32,2,17,62,59,34,84,68,70,24,40,35,51,41,67,25,37,47],"\u3002rst":9,"\u3069\u3046":[5,1,53,34,60,7,39,71,75,54,76,44,77],Int:[32,2,17,62,59,34,84,18,40,35,64,41,25,56],"\"'":[34,69],"\u30e2\u30fc\u30c9":[80,33,2,51],"\"\"":2,"\"#":36,"\",":[2,67,68,70,16,51,25,47,40,8,34,11,32,59,13,79,35,24,37,17,62,84,41],"|:":52,"\u306b\u3088\u3063\u3066":[34,19,74,24,83,81],"\"/":[13,35],"\")":[12,58,32,19,7,24,35,55]," should":[],"\"co":3,"\u5f15\u7528":13," Masahiro":18,"\u30e1\u30e2\u30ea":[18,65],"\":":[32,84,2,17,62,59,40,79,70,16,78,35,51,41,67,25,37,47],"\";":16," hash":84,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[34,69,59],"\u72b6\u614b":[2,13,79,18,14,24,34,78],"\u3055\u307e\u3056\u307e\u306a":[40,27,35,26,84],"\"\n":[84,47,16,67],SIGUSR:36,MATSUU:18,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[54,74],"\u3084\u3059\u304f":18,"\u58ca\u308c\u308b":[36,1,18],"\u30c4\u30fc\u30eb":[13,14,80,51,9,57],the:[6,21],"IP\u30a2\u30c9\u30ec\u30b9":51,protocol:[13,80,51],"_score":[32,2,17,59,84,41,74,35,36,25],"||":[37,33],"_tags":[32,84],"\u9ad8\u7cbe":63,"\u5168\u89d2":36,"_ctx":36,"\u3002load":2,yes:[17,83],Maverick:36,"\u9577\u65b9":58,"\u5f8c\u65b9":[27,33,67,7,69,26],"\u7b97\u51fa":[58,24],"\u89e3\u50cf":18,keyserver:65,candidate:17,"\u9806\u6b21":[13,14,2,51,24],defrag:[27,1,66,38,22],help:[36,83],".scr":16,Elapsed:52,"\u6e80\u8db3":24,"_selector":[13,27,38,39,22],easy:9,"\u30ce\u30fc\u30c8":[73,17,65,57],News:[36,21],"5f":16,"\u7528\u3044\u308b":[63,32,35,2,50],"\u300c,":68,"5c":51,"_close":[36,33],"\u7d4c\u5ea6":[27,35,84,56,63],"_ADDRESS":51,"\u8ad6\u7406\u7a4d":24,"|>":52,"\u9001\u308b":57,"\u30d0\u30a4\u30ca\u30ea":[],"|'":24,"| ":[34,35,52,24],"\nrep":16,"\u6539\u540d":36,advanced:21,"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":23,"\u30ed\u30c3\u30af":[1,13,63,66,75,36],"\u4eee\u60f3":[35,7,62]," means":52,"\u30af\u30a8\u30ea\u30da\u30a2":3,"\u307e\u3068\u3081\u308b":24,"/Linux":[27,65,36],"\u30d4\u30ea\u30aa\u30c9":[7,54],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[66,1,33,2,74,13,19,68,7,70,16,63,75,54,51,25,79,24,36,71,56],"_expr":[27,33,22,12,19,58,39,24,30,64,70,43,55,4]," report":43,"\"engine":[25,59,41],"\u6b63\u3057\u3044":[3,59],"\u7d20\u89e3":7," request":57,"\u30c6\u30b9\u30c8\u30c6\u30b9\u30c8":84,"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[13,2,24],"\u307e\u3068\u3081\u3066":[7,24],"_BUT":33,"_db":[18,85],"_str":84,"\u3080\u3044\u3061\u3083\u3044":84,"\u5358\u8a9e":[84,37,2,3,50],"\u4f7f\u7528":[1,2,47,69,70,16,71,51,7,78,54,34,33,13,79,80,24,19,18,58,65,84,81],"\u3002prefix":65,".zip":57,"\u9001\u3063":[6,43,57],"_table":[33,19,18,16,36,43]," suggest":[25,59,17,41],"for":[],bottom:[12,36],"_right":[12,36]," firefox":57," \"e":[25,17],"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":18,tasuku:21," result":37,"\u5358\u7d14":[33,67],".sourceforge":49,unstable:65,localhost:[14,51,16],"\u7a0b\u5ea6":36,"\u53c2\u8003":[2,17,57]," since":52,"\u3001\u300c":[32,1,2,13,84,69,34,51,25],"\u5b8c\u5168":[33,47,34,7,69,24,54],"\u5c0e\u5165":[9,81,83],"-MM":52,"\u6b63\u78ba":78," much":[],"\u30b5\u30fc\u30d3\u30b9":[45,27,80,22,63],"\nwarning":[60,77],IndexBlog:37," Table":13," HTTP":[45,27,80,22],"\u3067\u3082\u3046":0," username":32,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[81,16],obj:79,"\u30c1\u30a7\u30c3\u30af":[36,18,14,16,79],OR:35," improve":[],"\u6709\u7528":2,"\"text":36,"\u5224\u5b9a":35,"(GET":14,"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":2,"\u7d44\u307f\u7acb\u3066\u308b":19,"\"starttime":51,"\u5b66\u3093":84,Use:[13,43]," last":84,"(ShortText":47,"[[":[32,2,17,62,40,13,84,59,8,24,34,35,51,41,67,25,37,11,47],"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":8,"\u306a\u3055\u3093":43,"\nlevel":52,"[@":36,"_size":33,bool:56,"\u6700\u521d":[36,2,24]," RAND":64," Term":[7,54,47],Reported:[],support:21," correction":59," number":[13,40,2,16],"&query":51,"_open":[36,18],"\u30d0\u30fc\u30b8\u30e7\u30f3":[1,2,18,85,81,36],"\u5927\u6587":24,editor:57,Ubuntu:[27,18,83,65,36],cdbs:36,"\u6291\u3048":34,"_body":[34,54,47]," symbols":[],fork:[13,57]," TokenBigram":[2,47,34,84,7,37],head:14,"\u969b\u3057":24,"(id\u30d1\u30e9\u30e1\u30fc\u30bf":71,".ne":21," make":[9,83,65],TokenBigramSplitSymbol:[34,18]," ftb":21,"true":[1,7,2,47,32,70,71,67,5,40,53,75,54,76,4,77,12,60,35,37,62,39,44],"\u57f7\u7b46":[37,23,50],"\u691c\u7d22\u4f8b":[43,33],"\u9032\u6570":79,"\u5165\u308b":[8,11],"\u5165\u308a":[2,62,84,8,51,11]," groonga":[2,52,13,68,51,65,37,57]," \uff08":[25,59,41],GeoPoint:[12,1,58,62,32,84,18,35,56,4],"[#":36,"<gqtp":16," friends":32,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":[7,69],"\u53ef\u5909\u9577":7,"\u30e1\u30c3\u30bb\u30fc\u30b8":[84,81],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[2,59,34,69,65,41,36],"\u5185\u8a33":34,"delete":[27,1,22,18,38,71],"\u6587\u5b57":[1,2,47,32,69,70,24,25,4,40,7,55,56,77,12,33,59,13,35,36,37,62,19,58,84],LTS:[27,65],"\u3002sortby":24,"\u306e\u304b":[40,84,69,2],"\u8abf\u3079\u308b":[12,4],"\u6c7a\u3081\u308b":33,Variety:32,Introduction:43," flags":54,"\u306e\u3044":[33,13,19,60,70,24,35,81,77],"\u5165\u3063":[25,37,2,83,32],score1:33,"\u53d7\u3051":[19,61,2,51],"' ":[32,21,52,34,84,7,35],"'/":2,"\u3002\u3044\u308f\u3086\u308b":63,"'-":13,"\u3059\u3063\u3071\u3044":47,"'*":24,ongaeshi:18,"'(":[13,70,2],"\u30a8\u30c7\u30a3\u30bf":57,"\u305f\u304b\u3063":59,"\u306e\u306b":[34,27,20,63]," Takahiro":18,"\u6982\u5ff5":81,"\u306e\u3061":[40,2,24],"\u306e\u3067":[34,36,69,80,57],"_CODE":52,"\u914d\u5217":[32,33,2,40,79,18,69,8,54,84,36,11],Microsecond:52,"\u3002\u307e\u305f":[33,2,67,59,13,19,7,14,16,35,80,81,63,56],"_TABLE":36,test:[2,40,8,16,11,83],saerch:[17,59],TokenMeCab:69,"'\n":[34,32,35],"\u5c5e\u6027":[85,7,54,8,11],"\u305f\u3081\u3057":35,"'s":[52,57],truncate:36,"\u66f8\u304b":84,Windows:[27,65,16,36],"'|":24,"\u81ea\u52d5\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":[27,63],VALUE:2,"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":16,"\u547d\u4ee4":[13,16],"\u4ee5\u964d":[13,18,23,83,57],"\u964d\u9806":[62,2,17,24],scorer:[27,32,39,24,35,26],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[13,18,16,36,83,57],"\u305b\u308b":[33,2,40,19,80,51,83],"'n":13,"\u30b4\u30fc\u30e4\u30c1\u30e3\u30f3\u30d7\u30eb":47,"\u6bb5\u843d":54," sort":[],"_count":[78,51]," complete":[25,17]," columns":[],"'_":[70,2,24],"\u6765\u307e\u3057":84,pseudo:[27,74,22],"\u6539\u5584":[36,1],"_offset":[39,62,24],Second:52," json":70,"\u5165\u529b\u30df\u30b9":59,time:[2,17,59,40,41,25],"\u4e2d\u9593":[33,69],"\u9069\u5207":[18,16],"\nresolve":[],":/":[32,2,62,13,68,14,40,35,80,51,65,57],"\u53cd\u6620":33,"\u81ea\u52d5\u7684":16,"\u7b26\u53f7":56," hottolink":21,": ":[31,27,1,33,2,59,13,70,81,18,14,8,34,35,80,20,36,25,11,41],"\u6d41\u308c":[43,57],"\u7279\u6027":63,"/debian":65,":<":24,trigram:7,":>":24,"\u30d2\u30c3\u30c8":[33,47,34,84,69,24,25,67]," Umemoto":36," load":[2,17],"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[27,51,26]," all":52,"<threshold":13,"\u795e\u5948\u5ddd":84," sudo":[83,65],"_left":[12,36],"\u4e00\u822c":[63,2],"_builtin":36,"(ptr":18,"\u524a\u9664":[1,13,18,74,71,76,36,44],"\u30bb\u30c3\u30b7\u30e7\u30f3":[13,29],Day:52,"*BSD":18,"/LZO":18,string:[40,55,33,2],groonga:[45,0,1,21,2,47,22,32,68,23,70,48,49,50,51,25,76,69,3,26,4,5,27,28,52,40,29,7,8,74,34,84,30,54,78,79,67,9,55,56,11,57,31,12,33,59,13,60,61,14,77,53,63,35,80,16,58,36,37,71,83,73,75,17,62,85,66,18,39,24,64,65,41,42,43,44,15,81],"\u8a2d\u6a02":36,"\nrequests":52,"\u304a\u6c17":84,"-root":[13,18,80]," character":52,enqueue:61,"\u4e0a\u91ce":18,VERSION:16,"_MESSAGES":57,li:[34,69],exact:33," performance":[],".body":[75,66,47,11]," \u3002":34,"\u52d5\u4f5c":[27,16,59,73,81,18,24,51,36,25,43,57,83,41],"\u30b9\u30af\u30ea\u30d7\u30c8":[18,85,16],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":59,"\u6e08\u307f":[59,7,70,54,36,25,56,3],level:[60,77],"\u3068\u3057\u3066":[2,69,70,16,50,25,3,40,7,74,34,55,56,57,32,33,59,13,35,81,36,82,83,23,17,63,18,58,65],"\u51fa\u6765\u308b":84,":@":[32,2,67,40,84,24,51],"-escalation":[13,34,18,24],"\"\u3086\u304d":67,"\u52a0\u3048\u308b":[36,7,54],item:[25,59,17,41],"\u4e0d\u6574\u5408":1,Tag:32,":[":16,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":79,"\u30d7\u30ed\u30b0\u30e9\u30e0":[43,18],"\u8ad6\u7406\u548c":[33,24],HTTP:[27,63,18,51,36,26],"\u7d50\u3073\u3064\u3044":61,"\u305f\u3055\u3093":[36,1],"\u3002ifexists":70,"\u3002\u2193":13,"\u7d50\u3073\u3064\u304f":61,"\u63db\u6642":36,"\u6f14\u7b97\u5b50":[33,19,18,24],"=)\n":33," Baseball":32,"-dev":[36,83,49],"\u53cb\u4eba":32," commit":57," PatPrefix":67,"\u79d2\u8868":[34,35],port:16,Fork:57,"[munin":36,"\nomitted":[],Form:2,"\u7d4c\u904e":[78,36,56,81],"_truncate":36," searching":[],"GeoPoint\u9593":36,"\u30c8\u30e2":32,"'='":13,"3\u3064":83,"\u30d1\u30c3\u30b1\u30fc\u30b8":[45,36,18,81,65],"\u751f\u3058":[5,7,60,53,39,71,75,54,76,44,77],"[deb":36," implementation":[]," two":52,Changed:[],"\u30bf\u30b0":[27,32,63,18,84,26],"\u540d\u4e00\u89a7":11," \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d1\u30b9":[],baseball:37,"\u9ad8\u6a5f":33,WGS:[12,62,32,58,35,36,56,4],address:36,"\u96c6\u5408":7," generally":[],Changes:21,"\u6700\u5927":[31,1,13,18,48,16,64,36],MBytes:16,"\u304c\u308f\u304b\u308a":84,"\u3002KEY":69," string":[40,55,2],"-mode":57,"\u3002Tag":32,"\u4e26\u5217":16,MM:52,"\u63d0\u4f9b":[45,33,18,81,36,3],"\u4e3b\u30ad\u30fc":[27,7,2,47,62,32,18,70,8,24,71,74,56,26,67]," ARGUMENT":2,"_version":[36,80,51,81],example:[32,2,62,40,35,51],queue:61,"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":34,User:32,"\u8a2d\u5b9a":[85,1,13,60,18,70,48,24,74,65,83,77],"\u8b66\u544a":[18,81],"\u9006\u306b":32,"\u3002offset":24,"-quote":[],"_DB\u30d5\u30e9\u30b0":36,"\u5ea6\u6570":[36,35]," case":[],"/Branches":83," is":[40,2,51,52]," level":[13,60,52,77],"\u305d\u306e\u307e\u307e":2,"\u30af\u30a8\u30ea":[27,33,2,17,59,34,19,42,18,14,24,63,35,47,36,25,43,69,3,26,41],"\u3002table":7,"-leak":18,"\u521d\u671f":[36,18],"\u30ea\u30f3\u30af":40," \u3044b":[34,69]," server":[],"'haystack":33,Raccoon:32,"\u6587\u5b57\u5217":[2,47,62,40,19,7,70,24,84,55,56]," commands":[],Emacs:57," test":[2,40,16,51,37,83],"\u307f\u307e\u3057\u3087":[32,2,47,40,84,35,37]," entry":[54,39],"\u4e88\u3081":[13,56],"\uff08Romaji":25," related":[],"\u4e21\u8005":35,"-check":[36,18]," sequence":52,"\u5916\u90e8":61,"\u30a4\u30e1\u30fc\u30b8":2,"\u672c\u5bb6":65," targets":[]," single":[]," ERROR":77,"\u30d5\u30a9\u30ed\u30fc":84,https:57,msg:61,bill:[34,69],"\u60c5\u5831":[1,2,23,49,50,26,27,40,8,54,11,32,34,35,42,36,83,17,63,18,84,43],"_ADJUST":33,"\u3060\u3063":[34,81],"``":[5,66,1,7,78,53,60,18,39,48,71,75,54,79,76,44,77],"\u3001 ":[2,47,40,84,35,57],Default:17,"\u8ee2\u7f6e":[63,27,7,54,32],"_concurrency":14,"-each":36,Uubntu:83,Time:[2,34,84,40,30,36,56]," Yamaguchi":36,"\u305d\u3053\u306b":[8,11]," version":21,"\u30bb\u30c3\u30c8":[66,33,69,75]," new":[],"po\u30d5\u30a1\u30a4\u30eb":57,"_plugin":[36,85],"\u5bfe\u591a":40,Dump:52,DATABASE:15,"\u884c\u308f":[32,14,16],"\u30b8\u30aa\u30b5\u30fc\u30c1":[27,36,26,32],"_PREFIX":18,"\u63a8\u5968":81,cat:[],",\"test":[40,2],"\u542b\u307e\u308c":69,"\u3060\u3051":[34,36,33,65,57],values:70,"\u8fd1\u3044":14,JSONP:36,",\"http":[40,2],"\nnotice":[60,77],"\u8fd1\u304f":23," on":[21,57]," multi":[],"\u5f85\u3061\u53d7\u3051":51,"\u30fb\u30b5\u30fc\u30d0":2,"\u884c\u3063":[35,2,83,62]," of":[57,79,21,17,52]," Lucid":[27,65],",\n":[17,79,68,8,16,84,11],"_AND":33," remove":[],sample:[40,2],"\u4ed8\u3051\u308b":[61,2],"\uff11\u3064":61,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":14,"\u5897\u3084\u3059":83,Issue:0,YOUR:57," }\n":84,"\u6a19\u6e96":[1,66,2,68,70,48,24,71,51,5,28,29,53,8,78,75,54,79,76,11,77,13,60,14,80,81,39,7,44],"\u884c\u3046":[32,18,2,67,62,63,7,14,24,35,37,69,83],"\u884c\u3044":[32,33,2,62,13,63,69,14,24,34,16,84,37],":true":67,Terms:[34,79,2],"\u30b9\u30c8\u30ec\u30fc\u30b8\u30d5\u30a1\u30a4\u30eb":63,", ":[0,21,47,32,58,70,16,25,4,52,8,34,55,56,11,12,33,59,13,79,35,80,24,17,18,41,43,81],"_INDEX":[32,21,2,47,34,84,18,54,37],"\u884c\u3048":[2,83],"\u30d2\u30e5\u30d9\u30cb":58," extract":52,"\u30d0\u30a4\u30c8":[36,18],"\u76f8\u5f53":35,"\u8fd1\u508d":19,"\u8a9e\u53e5":32,Tomita:18,"\u518d\u8aad":5,max:[79,14,48,16,64,51],clone:[43,57],date:16,",_":[32,2,17,62,84,35],"\u5207\u308a":[29,36],"\u5408\u5bbf":84,TokenDelimitNull:85,"\"serach":59,"/dictionary":18,"\u8fd4\u3059\u304b":17,ss:52,Format:52,"/javascript":36,"\u7d22\u5f15":[27,1,7,34,18,69,33,65],"\u30b0\u30eb\u30fc\u30d7":[63,62,24,74]," bug":21,EXACT:33,",{":[17,59,16,51,41,25],se:25,"\u5e02\u5185":23,"\u304b\u308f\u308a":34,"\u5f8c\u8ff0":33,"\u540c\u3058\u6570":13,"mo\u30d5\u30a1\u30a4\u30eb":57,"_init":[36,52],".\n":[68,16],"\u82f1\u8a9e":[0,36,57],"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":1,"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":68,"\u542b\u307e\u308c\u308b":[13,34,33,2],"_CURSOR":18,"\u30a2\u30c9\u30ec\u30b9":[13,51,16],"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":18,"/fedora":65,"_VIEW":7," just":[52,15],"\u56f2\u307f":[13,2],"\u30d7\u30e9":[],"/html":[36,57],"\u3002gdb":83," at":[21,52],"\u78ba\u5b9a":[73,17],"\u56de\u7e70\u308a":16,"\u7d44\u307f\u5408\u308f":[19,33]," ${":57,RK:25,"_PUSH":33,"float":[40,2]," sjis":13,"\u542b\u3081\u308b":36,"\u3053\u308c":[33,2,62,59,6,84,41,69,34,35,36,25,37,3,57]," Japanese":49,records:52,"\u89e6\u308c":[40,2],not:[19,33],"\u4e00\u65b9":34,now:[27,72,30,22],"\u3086\u304d":67,"\u7528\u610f":[33,59,19,16,41,25,3]," description":[84,69],"\u53d6\u3063":2,name:[32,2,67,62,13,79,7,39,8,40,35,54,84,76,37,11],"\u500b\u3005":[34,33,81],"\u7570\u5e38":[79,16],"_dat":36,"_dataset":85,Critical:52," link":[40,2],"\u8aad\u307f\u8fbc\u3081\u308b":68,domain:[13,62,8,11],en:[25,17]," Terms":[34,79,2],"\u53d6\u308b":19,ea:52,"\u6700\u5f8c":[34,18,16],"\u6295\u5165":[34,1],"\u5b9f\u4f8b":[27,43,33,42],"\u624b\u6bb5":33,"\u30d1\u30fc\u30b9":[19,36]," Entries":68,"\u70b9\u6570":56,"\uff1f\u3000":16,"\u7a7a\u304d":79,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":76,Added:[],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[31,27,23,2,76,32,34,63,18,24,75,54,11,79,36,37,44,84,26],"\u8a73\u7d30":[34,80,83,16,57],"\u591a\u3059\u304e":18,"\"search":[25,59,41],"\"type":17,"-default":13,"\u3065\u3051":81,correct:[17,59],shows:[],"\u5230\u9054":31,"\u4e0a\u3052\u308b":34," segments":79,"8\u3064":16,"\u89e3\u91c8":[68,18,33],"_string":83,org:62,"byte":16,Tritonn:63,"\u62ec\u5f27":[70,24],"\u30b3\u30fc\u30c9":57,"\u4e8b\u9805":[31,27,56,22,16],Money:32,"[windows":36,Karmic:83,"\u4e92\u63db":[80,81]," wrong":[],"\u30db\u30b9\u30c8":[13,14,51,16],Installer:[27,65]," why":[],"] [":16,".gz\u30d5\u30a1\u30a4\u30eb":65," country":62,"\u30dd\u30fc\u30c8":[13,14,51,16],"-version":[18,81],"\u4e00\u610f":[13,54,7,2,74],"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":84,"1C":65,"\u305f\u3069\u308b":32,"\u56fd\u969b":57,"\u81ea\u5df1\u7d39":84,"\u9078\u3073":3,message:[37,77],".'":[7,54]," TokenMecab":34,size:79,"\uff11\u5bfe":61,SET:16,"\u7d5e\u8fbc":[27,35,26,63],"IP\u307e\u305f":51," text":68,"\u5bfe\u7b56":[34,27,20],"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[19,58],"_obj":[36,33],"\uff08.":65,"\uff08-":2,SEN:21,"\uff08 ":23,"\u30bd\u30fc\u30c8\u30ad\u30fc":[1,17,24],"\u30d8\u30eb\u30d7":83,"\u30bd\u30b1\u30c3\u30c8":[66,68,70,48,24,71,5,28,29,53,8,75,54,76,11,77,78,79,60,39,7,44],HASH:2,"\u3044\u308b":[1,66,2,23,70,16,71,51,25,3,5,27,28,40,73,7,8,34,75,54,76,11,57,32,33,59,13,79,69,35,80,24,36,37,83,84,19,18,85,63,44],that:[],"\u884c\u756a":36," Solaris":36,Enabled:[]," logged":52,"\u300ctitle":2,"\u30d1\u30a4\u30d7":[7,54]," files":52,"\u62e1\u5f35":[27,47,26,24,36],"\u8fd4\u4fe1\u5143":84,"\uff08@":[36,18],"\u8fd4\u4fe1\u5148":84," nine":2,specify:57,"\u306b\u5bfe\u8c61":36,"11":[34,35],"10":[2,16],"\u652f\u63f4":3,"\u540c\u6642":[35,61,16,81],"-httpd":[36,3,15],"16":35,"\"\u4e8c":25,"\u3002ID":7,"< t1":33,"\u6574\u3063":83,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[40,27,26,84],"\u5404\u547d":16,"\u30d5\u30eb\u30d1\u30b9":[2,51],"\u63a5\u7d9a\u5148":14,browser:57,and:19,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":31," name":[84,68,7,39,54,76],"\u3044\u304b":63," \u307e\u305f":16,CORE:16,DD:52,"\u4e16\u754c":[12,63,58,35,56,4],Sites:68,sae:[17,59],"\u4e21\u65b9":[25,67,24,84],"\"application":36,"/ubuntu":65,"]]":[32,84,2,17,62,59,13,70,7,39,16,40,35,24,41,67,25,37,11,47],"\u5024\u304c":2,"_circle":[27,72,22,32,84,35,36,4],"\u53b3\u5bc6":25,"\u30ea\u30b9\u30c8":[32,2,13,23,70,8,24,11,57],engin:[25,17],"\u914d\u5e03":65," dump":68,"\u3044\u3066":24,"\u5ea6\u5408\u3044":34,"\u3044\u3064":25,"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":[0,27,43]," inv":16,"\u65b0\u898f":[2,16],"\u30d5\u30e9\u30b0":[5,1,53,71,67,40,60,7,39,50,75,54,79,76,44,77],"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":83," objname":[66,75],"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[13,24],"[[\"":79,"|suggest":17," LC":57,"_suggest":85,buffer:79,debhelper:36,ARGUMENT:2,beta:21," Request":57," moritars":37,pair:[25,59,17,41]," main":65," SHIDARA":[],"-type":[25,59,41],"_STAMP":52,"\uff09:":69,Bigram:[34,84,69],"\u79fb\u52d5":[5,6,36]," degree":[],"\u4e2d\u65ad":36,"\u7ba1\u7406":[1,69,13,79,7,80,51,36],MeCab:[36,1,18,65],"\u30b9\u30da\u30fc\u30b9":36,":\u79d2":84,"\u4e00\u81f4":[27,33,2,17,34,84,7,69,24,85,67,25,26,47],"\uff09 ":[36,18],"\u30b5\u30fc\u30d0":[53,2,68,70,48,16,71,51,5,27,28,29,66,8,78,75,54,79,76,11,77,13,60,80,24,36,63,39,7,65,44],"\u539f\u56e0":[34,27,20,16],Web:1,"\u5217\u8981":7,show:1,"\u76f4\u4e0b":36,"\u65b0\u5bbf\u99c5":35,"\u3057\u304b":[37,57],Comments:84,"\u4ef6\u6570":[2,34,69,70,48,24,74],"#SET":16,"\u5217\u6307\u5411":13,"\"#\"":16,threshold:36,"\u88dc\u5b8c":[27,17,73,18,41,25,3]," requests":57," contact":57,"\u547c\u3073":[33,47,62,13,19,24,16],xml:80,"\u3057\u3066":[0,32,2,34,84,18,9,83,57],We:[],"\u5024\u3088\u308a":33,"\u30bf\u30a4\u30c8\u30eb":[32,37],title:[32,2,62,40,51,37]," LocalNames":68,"\u5316\u5bfe":57,"\u306a\u3093":81,"\u306a\u308c":81,"\u305f\u3057":32,"\u306a\u3089":[33,59,13,29,16,78,81,63,25,83],"\u306a\u308a":[7,2,47,70,16,51,25,67,66,74,34,75,54,9,56,32,59,13,35,80,24,36,37,17,63,84,81],"\u306a\u308b":[1,7,2,47,68,58,16,4,53,66,34,75,54,56,57,12,33,13,24,18,85,65,41]," plugins":[],"\u4e00\u6642":7,"-server":[13,36],wheezy:65,get:36,"\u5f53\u8a72":81,"-setuptools":9,clang:83," ALSO":15,"=\u5024":51,"\u751f\u304b\u3057":63,"\u751f\u304b\u3059":63,"1\u6708":[56,24]," saerch":[17,59],geo:[12,1,58,22,27,84,32,18,72,35,36,4],For:49,"\u3088\u30fc":84,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":24,summary:16,":')":[7,54],grroonga:3,"\u300c\u697d\u3057\u3044":69,"\"string":[40,2],"\u76f4\u63a5":[19,68,84],"\u5426\u5b9a":33,".conf":[]," lenny":36,"\u8907\u96d1":[63,33],ken:32,sear:25,"# ":[13,57],"#'":13,"_suffix":36,"\u7a7a\u767d":[2,13,7,70,24,34,41],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[84,1],"\u8b58\u5225\u5b50":19," become":21,"(scan":83,"\u8a18\u6cd5":37,"[\"":[32,84,2,17,62,59,40,79,8,35,41,25,11]," lock":[],"\u4fee\u6b63":[1,21,59,18,85,51,36,3],"\u77ed\u7e2e":[70,24],"-threashold":[34,18],"\u8fd4\u3063":84,"\u3002Time":84," are":[52,57]," creates":[52,15],"\u3088\u3046":[1,2,47,68,23,16,63,33,25,3,67,27,40,73,34,9,32,69,59,13,79,35,80,24,36,83,84,62,19,18,65,41,81],jobs:16," ShortText":[32,2,47,62,34,84,68,7,16,40,54,37,67],"\u66ff\u3048":34,"\u518d\u691c":19,"\u3057\u3088":[36,33,70,71],"#{":52,"\u904e\u53bb":36,"\u3088\u3063\u3066":[2,63,23,50,35,56],"\u306a\u3069":[2,23,16,50,51,25,5,27,40,57,33,59,34,79,41,69,81,36,84,19,24,65,63],Each:52," target":[],"\u306a\u3067":25,ja:57,"\u306a\u3063":[7,34,63,18,69,51,79,36,37,84,83,81]," be":52,"\u5206\u5272":[36,7,69],autoconf:36,"\u306a\u3059":12,"'--":[],"\u306a\u3055":[7,80,64,24],"\u8fd4\u3059":[1,53,2,47,60,48,16,71,5,66,75,78,30,54,76,77,13,35,36,17,18,39,7,44],"\u30b3\u30ed\u30f3":[7,54],"\u30b7\u30fc\u30af\u30ee\u30fc\u30b5\u30fc\u30b8\u30e5\u30fc\u30b9":47,"-document":13,"\u3002gqtp":14,"\u306a\u304f":[1,23,47,18,69,24,16,36,43],"_otoj":83,"#]":76,"\u306a\u3044":[1,2,68,69,16,25,3,7,34,78,56,31,33,59,13,79,61,14,80,24,36,83,23,17,63,18,85,65,81],"\u306a\u3046":84," by":52," records":[],"\u6b21\u56de":81,"\u78ba\u7387":17,"\u30ec\u30a4\u30e4":33,"-groonga":16,"\u306a\u306b":25,"/WGS":35," rewrited":21,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":69,"\u76f8\u5bfe":36,"} ":[52,57],"},":[32,2,47,84,16,67],"}/":57,"}.":24,"\u3002http":51,".select":16,"\u8868\u8a18":[36,35,47]," followee":84," associated":[],"\u524d\u5f8c":13,"\u3002callback":33,"\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb":13," []":11,"\u5468\u4e0a":4," want":[],"<encoding":13," follower":84,"\u4ee3\u308f\u308a":[13,71],Bug:43,"'ja":57,engine:[25,17,41],"\u306a\u305c":[25,59],enable:[78,18],"\u5b57\u5c0f":24,"/vdw":[35,2,62],"_tokenizer":[2,47,34,84,7,16,37]," res":16," [\"":[17,34,79,8,84,11],"\u6607\u9806":[35,2,24],"\u5b9f\u884c":[45,66,2,22,68,70,48,16,71,51,25,5,27,28,52,29,7,8,74,78,75,54,79,76,11,57,33,59,13,60,77,53,35,80,24,36,83,17,63,39,85,65,41,43,44,81],UInt:[32,2,47,62,34,18,8,24,40,35,51,37,56,11,67],"}`":57,begin:14,"\u6240\u5b9a":[34,69],"=yes":83,Mitsuhiro:18,sound:59," fork":57,"\u30bb\u30df\u30b3\u30ed\u30f3":16,"\u304a\u3051\u308b":[31,32,63]," configure":34,"}]":[2,17,59,40,70,16,51,41,25],"\u4e0d\u5b8c\u5168":36,"\u7570\u306a\u308b":[27,13,16,34,35,20],"\u30b7\u30b0\u30ca\u30eb":36,"\u7406\u89e3":2," coverage":83,QUERY:52,"?table":51," Shimada":18,"'\"":2,"\u306a\u3057":[59,7,71,81,65,56,4],score2:33,"[grntest":36,"\u3002DB":33," many":15,"\u4e0d\u5909":74,"\u8af8\u6761":31,"\u5fc5\u8981":[1,2,47,70,16,51,25,3,40,7,9,57,33,59,34,80,24,36,83,63,18,41],"@lists":49,"\"This":2,"|')":[7,54],"\u6a5f\u69cb":[27,63]," Yuki":36,"'.":57,saerc:[17,59],"\u3002squeeze":83,Month:[32,52],"\u304b\u307e\u3044":2,"\nSUFFIX":33,"\u8f9e\u66f8":[34,1,18],develop:81,"\u559c\u3073":[6,57],"\u91cf\u8a08":1,"\u30d7\u30ed\u30c8\u30b3\u30eb":[27,63,14,16,51,26]," free":[79,52],"\u3054\u89a7\u304f":83,html:[9,43,83,57],"<path":13,"')":[13,14,24],"-dir":16,"2]":2,document:[13,18,80],"\u5206\u5c90":83,"\u3002\u3044":33,favorited:84,"_at":[34,18],UTF:18,"\u306a\u304a":69,"0\u30d9\u30fc\u30b9":24,IP:[51,16],".po\u30d5\u30a1\u30a4\u30eb":[43,57],"\u4ee5\u4e0b":[2,68,23,70,16,25,3,7,8,34,54,79,9,56,11,57,31,32,33,59,13,60,69,35,80,24,83,84,17,62,19,65,41,77],IT:32,"\u7b49\u4fa1":18,"\u4e26\u3073\u66ff\u3048":[27,2,26],"\u53c2\u7167":[27,1,17,62,32,34,63,18,16,40,80,84,36,56,26],"\u4e00\u884c":[13,18,16],favorites:84,IN:21,"\u3059\u3079\u304d":33,taro:32,"\u5b9f\u88c5":[63,27,57,80,36],"\u53c2\u7167\u7cfb":63,"\u672c\u6587":37,ID:[7,2,52,13,79,18,8,11]," added":21,"in":[],"\u305d\u3057\u3066":[25,84],no:[21,17,24],It:52,"\u5217\u8868":56,"\u3059\u3079\u3066":[36,38,18,81,16],"\u53d6\u308a\u51fa\u3057":7,"\u300chsiomaneki":84," LOCALE":57,"\u53d6\u308a\u51fa\u3059":[19,18,33],"[geo":36,If:52,"/unit":83,"\u56db\u89d2":23,"(x":56,"\u6771\u4eac\u90fd":[34,84,69]," plugin":[],"\u4f5c\u6210\u6e08":13,"(v":33,"\u3002\u3059\u3079\u3066":[83,57],"/Functions":83,gdb:83,BOM:18,"\u6271\u3048":50,"\u5171\u6709":[63,27,49,32],".dll":16,"\u30ab\u30e9\u30e0":[1,66,2,47,22,23,70,24,63,25,3,26,67,27,40,7,74,34,75,54,76,56,11,32,59,13,35,36,37,84,17,62,19,18,39,41,44],speed:3,"\u3046\u3061\u3044":[13,2],"\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af":78,"_NONE":11,"\u3002none":13,"(_":[25,59,17,41],"/false":1,"\u3002\u307e\u305a":34,"(R":16,"\u30d1\u30e9\u30e1\u30fc\u30bf":[27,2,47,62,19,69,14,24,71,35,51,65,84,36,37,26,81],"_extract":21,"\u4f4e\u3044":[34,24]," indicates":52,"\u5ea7\u6a19":[12,58,84,23,36,56,4],blog:2," sample":16,"\u63a2\u3057":16,Uint:[55,2],"\u9577\u65b9\u5f62":36,"_HASH":[32,2,62,40,84,68,7,8,37],"\u30ad\u30fc":[7,13,18,74,24,56],TokenTrigram:7,"\u6c4e\u7528":[13,63,16]," \u30d0\u30c3\u30d5\u30a1":79,"\u542b\u3080":[33,17,19,61,7,14,24,54,84,37,69]," git":57,"(<":33,"(=":[7,33],"DB\u30d1\u30b9":[2,51],"\u8a00\u3048":34,"\u5c55\u958b\u7528":36,"\u697d\u3057":[34,69],"\u542b\u3093":[33,3,24,59],"((":56,"()":[12,1,33,19,18,58,85,35,30,64,36,43,55,4],"\u8d8a\u3048":[34,24],"(,":2," music":52,"(\"":[13,2,24],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":[13,63],"( ":13,"(!":33,TODO:[46,15],"('":[2,13,7,70,24,54,74]," Yoji":36,"\u3068\u304a\u308a":[31,16],"\u9069\u5b9c":47," format":[21,52,57]," read":[],"\u95a2\u308f\u3089":16,"\u5f62\u8fd1":58,"\u4f4e\u901f":62,"\u9650\u308a":[69,34,7,70,74,33],output:[32,2,17,34,84,18,39,24,40,35,80,52]," DATASET":15,"\u5c5e\u3059\u308b":[56,8]," datasets":15,"\u5b9f\u9a13":36," Kenichi":[],LocalNames:68,conditional:17,"_SUCCESS":[52,24],"\u30b7\u30b9\u30c6\u30e0":[0,27,84,26,36],"_VECTOR":[40,32,84,2,54],"\u30ec\u30b9\u30dd\u30f3\u30b9":36," page":[],"\u30d5\u30a9\u30f3\u30c8":9,Ludia:63,"\u985e\u7d39":34," command":[81,15],"_touch":18,confirm:57,": n":14,"\u65b0\u5bbf":35," cd":57,automake:18,"\u30de\u30b7\u30f3":13,mooz:36,Ruby:21,"\u542b\u307e":[33,2,69,70,8,41,11]," check":83,"[macports":36," binary":63,"\u5206\u3051":[27,69,2,63],Term:[7,54,8]," create":[],"\u4ecb\u6587":84,"\u5168\u6587\u691c\u7d22":[63,24],"_text":83," Float":[40,2],Query:[27,52,22],"\n{\"":[25,59,41],SiteDomain:62,".posted":84,"; ":[13,16],"\u306f\u305a":16,"-static":36,"\u542b\u3080\u5024":[13,2],"CPU\u30b3\u30a2":13," schema":15,"\"s":25,"_OP":33,"_OR":[33,51],"\u66f8\u304d\u5f8c":69,"\u5ec3\u6b62":81,"_escalation":[18,24],"\u30e6\u30fc\u30b6\u30fc":[32,84],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":36,"\u304b\u3048\u308b":62,";\n":16,Katakana:25,Defines:15,"\u30d7\u30e9\u30ac\u30d6\u30eb\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":63,"\u5f8c\u4e8c":81,"@soundkitchen":36,"\u30d1\u30b9\u30e2":36,"/admin":[13,36]," normal":[],"/null":1,"\u884c\u76ee":16,"\u9ed2\u3044\u70b9":23,"\u30aa\u30d5\u30bb\u30c3\u30c8":17,"\u8abf\u6574":34,"\u53f3\u4e0b":[12,1],"\u53f3\u4e0a":1,"\u30c1\u30e3\u30f3\u30af":79,"=title":51," Bigram":[34,84],"\u30a8\u30ed":84,"\u53f3\u8fba":[36,18]," comment":84,"\u8a55\u4fa1":33,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":83,log:[5,27,38,52,22,13,60,77],NO:1,"(title":55,"\n``":[78,79],"\u591a\u5be1":19,"\u53d7\u3051\u53d6\u308a":33,"\u77e5\u8b58":16,"\u63d0\u6848":[27,17,73,18,41,36,3],"d\u30ad\u30fc":2,"/modules":18,",\"This":[40,2,51],"\u3082\u3046":[37,55,58],"\nCRIT":[60,77],"\u30aa\u30fc\u30d7\u30f3":36,complete:[25,3,17],"\u901a\u308a":[17,34,23,8,41,11],"/configure":65,"\u3082\u3057":16,Stopped:[],Error:52,PostgreSQL:63,hsiomaneki:84,",\"links":[40,2],"\"Items":68,pull:57,IDENTIFIER:19,"\u3082\u3063":[40,27,26,84],"default":[2,47,34,84,7,16,51,37,81],"\u3082\u306e":[33,2,59,13,84,81,7,14,16,24,65,64,37,57,4]," keyserver":65,Moved:[],"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":79,EXIT:15,"\u4f5c\u3063":[34,84],Hiroshi:36," using":21,"}\n":[32,84,52,67],"_WEIGHT":54," posted":84,"\u30d5\u30a1\u30a4\u30eb":[45,1,66,2,22,68,70,48,16,71,5,27,28,52,29,7,8,78,75,54,79,76,11,57,33,13,60,53,80,24,36,77,39,65,43,44,81],"_CREATE":33," enabled":52,"/hostname":[13,16],"\u3082\u308c":47,"\u30de\u30fc\u30b8":57,HashTags:84,mode:33,Blog:37,"/macports":[],ar:[34,69],"\u901a\u3058":[27,51,26],"\u56de\u907f":34,file:[1,18],"+ y":56,"\u4f5c\u308a":[25,37,59],"\u4f5c\u308b":[32,2,59,84,61,57],Cutter:83,GByte:31,"\u53d6\u308c\u308b":70,"\u5bfe\u5fdc":[27,1,7,23,17,59,13,63,61,18,70,85,30,33,36,25,3,83,41],"\u95a2\u4fc2":[27,38,33,32,40,84,26],"\u56db\u89d2\u5f62":[],"5km":84,"\u4e0e\u3048\u308b":[2,13,70,14,35,81],"/IPAexGothic":9,".jp":[68,21,49],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[27,51,26],"}|":52,"/tutorial":2,"\u8a18\u8ff0":[13,19,33,16,84]," rpm":65,string2:55,string1:55,"_type":[32,2,67,62,40,84,68,7,70,16,80,74,37],"\u9001\u308a\u65b9":[0,27,43,57],"\u30fbOR":35,"\u4e0a\u9650":[31,27,61],"_name":[68,85],"\u30c7\u30d0\u30c3\u30b0":79,"\n% ":57,"4Kbyte":56,coverage:83,Entry:[70,7,39,8,24,71,54,11],"\u4e94\u5165":36,"]\n\n":84,"_value":[36,18,74],"\u5b9a\u7fa9":[53,33,2,13,19,7,39,8,24,54,74,76,44,56,11],"\u65b9\u5f0f":[13,37,2],":mm":52,"/usr":[13,65],"\u6c17\u306b":57,"/select":51," ranges":[],"\u3002TokenDelimit":41,Year:52," location":[32,35,84],"-threshold":[13,34,24],original:67,"\u524d\u8ff0":34,"\u6587\u6cd5":[27,35,26],SHIMODA:18,"\u4ed8\u968f":[44,76],"\u6539\u826f":[27,1,21,63,18,85,36]," default":52,Fix:[],"\u5343\u4e07":31,"_pat":18,"\u308f\u304b\u3061":69,"\u3002name":7,"-P":14,"\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af":36,"\u6761\u4ef6":[27,33,2,17,13,19,18,39,24,34,35,84,26,67],"-]":24,partial:33,"\u7d30\u304b\u304f":19," round":[],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":36,"-e":13,"-d":[13,2,51]," various":[],"-a":13,"-c":[13,51],valgrind:83,"-m":14,"-l":[13,52],"\u30b7\u30fc\u30af\u30ee\u30fc\u30b5\u30fc":47,"-n":[13,36,2],"-i":[13,16],"\u901a\u4fe1":[27,63,61,14,16,80,51,42,43,26],"-t":13,"\u304a\u5f85\u3061":49,"-p":[13,16],"-s":13,Entries:68,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[27,18,20,16],homepage:16,".name":[79,84],"-alloc":78,"-conditional":36,"\u95a2\u9023":[5,27,70,60,39,24,71,75,41,36,43,82,3,77],"\u5dee\u5206":16,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":36,"\u3002column":33,"***":77,"\u8aad\u3093":43," typo":[],"\u5438\u53ce":47,",\"tags":32,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[27,13,63,18,14,16,80,65,36,9,43,83],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":[36,65],"\u6b8a\u547d":16,pre:21,unigram:7,GROONGA:[40,2],"--":[32,1,47,13,84,18,24,71,34,35,75,80,16,36,85]," implemented":21," clang":83," JQuery":18,"\u3057\u307e\u3057\u3087":[35,2],"\u304a\u3088\u3073":[13,7],"\u4f4e\u6e1b":18,"\u5909\u308f\u308b":34,"\u5909\u308f\u308a":[79,35,69],"<protocol":13,"\u7d4c\u7531":[7,68,70,48,24,71,51,5,28,53,66,8,75,54,79,76,11,77,78,60,18,39,29,44],"\u89aa\u5207":18,"\u4f55\u3089\u304b":56,"\u30a2\u30b9\u30bf\u30ea\u30b9\u30af":24,VIEW:13,"\u300c\u6771\u4eac\u90fd":34,"\u30d6\u30c9\u30a6":47,"\ngronga":3,"\u30d6\u30e9\u30a6\u30b6":[51,57],TokyoGeoPoint:[12,58,35,36,56,4],"\u884c\u3048\u308b":32," log":[27,52,22],"x\u5ea6y":56,"/etc":65,ECMAScript:19," {":[32,2,47,62,84,37,67],SSSSSS:52,"\u518d\u73fe":34,"/centos":65," than":52,"\u9ad8\u304f":34,"\u7701\u7565":[13,70,16,51,25,64],"\uff1a\n":51,"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":83,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":83,"/json":36,"\u30ea\u30c6\u30e9\u30eb":[36,1]," measures":[],"\u8868\u578b":7,"\u6700\u65b0":36,version:51,"_append":33,"_NO":[34,18,68,7],"\u6e2c\u5730":[12,63,58,35,56,4],"_modified":84,"\u8aad\u307f":[25,1],memcached:[63,83]," favorites":84,Pull:57,"\u307e\u3057\u3087":32,hash:84,"\u305e\u308c":[33,41],"\u7d99\u304e":63,"\"Table":13,"\u30c6\u30b9\u30c8":[27,34,84,18,42,65,43,83],"\u3002filter":35,"\u30ce\u30a4\u30ba":[34,59]," https":57,"/ja":57,"\u6e96\u5099":[27,47,34,7,26,57],"\u304b\u304b\u3063":24,"\u306b\u95a2\u3059\u308b":[27,22,84,24,49,25,36,56],"\u30aa\u30b9\u30b9\u30e1":65,search:[25,59,41,3,17]," RedHat":[]," clone":57," does":[],"\u30ec\u30b3\u30fc\u30c9r":33,"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":36,"\u308f\u304b\u308a":18,options:[13,14,15,16],"\ninfo":[60,77],"\u3068\u305d\u306e":81,Object:56,"\u30b3\u30e1\u30f3\u30c8ID":84,followee:84,"\u8ad6\u7406":[31,79,33],hoge:[19,55],"\u30de\u30c3\u30c1":[34,36,1,33,24],"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":69,"\u30d3\u30eb\u30c9":[36,18],XXX:13,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[27,43,82],follower:84,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[36,18],"\u307e\u308f\u308a":43,ICHII:36," terminology":[],select:[52,27,1,69,2,47,22,32,13,85,81,18,38,24,34,35,51,67,36,37,40],"\u300c\u697d\u3057":69,"/atv":[35,2,62],"\u69cb\u6587":[19,85],"\u3002\u3002":23," apt":65," SWIG":21,"_system":36,mecab:7,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":[78,28]," disabled":52,"\u7a4d\u7b97":[33,24],Baseball:32,"\u3002\u300d":34,"\u6c7a\u307e\u308a":2,"\u5ea6\u7d4c":56,"_PATH":[80,2,51,65],"\u30c6\u30ad\u30b9\u30c8":[18,16,57],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":32,Intel:16,ivh:65,"/[":51," comma":[],"\u518d\u5229":[74,24],"_gqtp":16,"\u578bn":24,"\u3053\u3068":[1,66,2,47,32,68,23,70,48,16,50,51,25,76,84,3,4,5,28,40,29,7,8,74,34,30,54,78,79,67,9,55,56,11,57,12,33,59,13,60,61,14,53,35,80,24,37,71,83,75,77,62,19,18,39,58,64,65,63,43,44,81],"\u3053\u306e":[2,47,69,24,50,25,40,73,7,34,57,32,33,59,13,35,16,37,71,84,62,63,41,43],git:57,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":83," parameter":[],none:37," return":52,"\u3053\u305d":84,"\u3053\u3053":[2,17,34,84,40,35,47]," specify":[]," initialization":[],"\uff01\uff09":[25,59]," \\":69,abandon:[70,24],"\u305f\u3068\u3048":34,deb:65,"\u89e3\u6790":[36,43,7,83],"\u6bd4\u8f03":[18,24,16],"\u79fb\u884c":[36,81],Codes:57,"\u4e2d\u5fc3":4,scan:83,"\u30ea\u30cd\u30fc\u30e0":36,"\u7279\u306b":[19,33],accept:18,"_OBJ":36,"\u9664\u53bb":18,"\u958b\u767a":[27,63,42,81,65,84,43],"\u3064\u3044":84,"\"saerch":59," dataset":15,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":36," useful":[]," ..":[79,2,17,24,57]," Doc":47,"-address":[13,36],snippet:21,"\u90fd\u6c11":[34,69],"/ ":[18,65]," aptitude":[9,83,65],"'select":[],"\u52d5\u7684":[18,69],"\u3042\u3089\u304b\u3058\u3081":56," threshold":66," (":[31,27,21,22,74,33,65]," leak":[],"-protocols":[],"\u7cfb\u7def":56,uptime:[78,1]," three":[40,2],"\u901f\u304f":[32,63],disable:36,"\u304a\u9858\u3044":16,"\u6642\u9593":[2,40,84,18,24,16,36]," via":[],"\u4e0b\u3055\u3044":65,"\u30cf\u30a4\u30d5\u30f3":2,"\u30ea\u30dd\u30b8\u30c8\u30ea":[36,43,57],"\u614e\u91cd":83," engine":[59,41,3,17],github:57," existing":[],"\u65b9\u6cd5":[27,82,2,59,13,73,68,69,24,34,42,16,65,41,25,43,57,84,81,83,20],callback:33," segment":79,Linux:16," path":52," HashTags":84,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[27,46,2,62,32,40,73,35,36,26],"\u3066\u304f":83,replied:84,"\u5909\u63db":[36,56],hostname:[13,80],Imported:[],"\u30b5\u30f3\u30d7\u30eb":[18,14,85,16],"\u52d5\u753b":32," Form":[],"\u3002ftp":16,"/c":6,"`hostname":13,"\u5217\u578b":[62,47,24],natty:65," will":[]," limitation":[],grntest:[45,27,22,18,16,36],".co":21," OR":[47,24]," OS":[27,18,65],"\u30bf\u30a4\u30d7":[36,16],"/lzo":36,".rpm":65," >":[68,35,69,24,16],".git":57,"\u308c\u308b":[2,47,23,16,51,25,5,73,53,74,34,57,33,59,13,79,61,41,69,35,24,36,83,17,19,63,81],GHz:16,"sort\u30ad\u30fc":1,"\u30ab\u30fc\u30bd\u30eb":[36,18],"\u63a5\u7d9a":[28,2,13,29,61,16,51],"\u57fa\u672c":[34,27,69,2,26]," feature":57,Music:32,"\u72b6\u6cc1":34,URL:[36,80,51],"\u516c\u5f0f":36,"\u3002GeoPoint":58,URI:80,"_to":84,number:[40,79,2],"\u6271\u3044":[25,69,81],"\u6271\u3046":[34,49],"\u3088\u304b\u3063":34,"\u8a71\u984c":49,"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":36,"\u5316\u95a2":18,"\u3002\u3057\u304b\u3057":[40,63,56,59],"-test":83,"\"complete":3," outputs":52," python":9,"\u9664\u3044":16,"-encoding":[13,36],"2x":[],"\u6271\u3063":[84,1],"\u30ad\u30e3\u30b9\u30c8":[84,18],"'title":2,man:1,"[doc":36,"\u597d\u304d":57," tutorial":[],"\u81ea\u7531":[19,33,74]," ~":[],CUTTER:83,"\u767b\u9332":[7,2,59,79,18,70,85,35,33,84,25,3],"-create":[45,27,17,22,59,15,85],"\ndeb":65,"\u30b5\u30a4\u30ba":[36,48,65,79],korea:62," doc":57,Sports:32," sh":[],HDD:16,"\"sequence":[25,59,41],"\u9ad8\u901f":[27,1,23,32,13,63,7,33,36],"\u547c\u3076":[19,83],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[27,22],"\u6271\u308f":[34,23,16],"\u524d\u8005":35,ftp:16,"<ip":[13,16],"\u30ab\u30d0\u30ec\u30c3\u30b8":[43,83],"\u7def\u5ea6":[27,35,84,56,63],"\u6e2c\u7528":1,"_QUERY":33,"/locale":57,"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":83,"\u8ddd\u96e2":[1,58,63,23,35,55]," table":[32,2,17,62,13,70,53,39,24,71,40,54,67,76,37,44,11,47]," our":57,None:15,"\n> ":[32,2,17,62,35,51,67,37,47],"\u6c42\u3081":[55,58],Hour:52,"_new":61,"(WGS":35," en":[25,17],"\u9ad8\u3044":[63,2,17,79],"\u30dc\u30c8\u30eb\u30cd\u30c3\u30af":63,"_hit":51,"\u5ea6\u5ea7":56,"\u3053\u3053\u3067":24," Int":[40,2],recv:65,"\u30a6\u30a7\u30a4\u30c8":54,"\u306b\u5bfe\u5fdc\u4ed8\u3051":25,RAM:16,"\u81ea\u8eab":[13,36],"\u547c\u3093":69,thread:[61,16]," processing":52," process":52,TokenUnigram:7,v2:33,"_ito":36,".output":80,"\u30b5\u30a4\u30c8":[40,32],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":83,"\u308c\u305a":81," not":52,"\u306b\u3082":69,".SSSSSS":52,",[[":84,"\u306f\u3044\u304f\u3064\u304b":31,"@tomotaka":36,SiteCountry:62," porting":21,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":5,"=Site":51,"\u5f62\u72b6":23,"${":24,"\u30bb\u30af\u30b7\u30e7\u30f3":[59,73,65,41,25,43,57],"\n\u308b":18,"\u30b3\u30d4\u30fc":68,"\u4ed8\u4e0e":[32,2,67,7,16,35,74,37],".blog":34,koi:13,"\u5b58\u5728":[12,1,69,2,62,40,63,68,18,16,35,24,74,37,4],"\n\u30b9":36,script:[12,22,27,19,58,70,24,30,16,64,55,4],"\u30c9\u30e1\u30a4\u30f3":62,"\u629c\u3051":36,">\n":21,"\u3002\u3059":16," double":[],"\u60c5\u5831\u540d":[8,11],Homebrew:[27,65,36]," unmanaged":79,"\u3002[":[76,2],"\u3002make":16,"\u300cUsers":84,Improved:[],option:[],"/.":36,Munin:[36,1],"\u547c\u3070":2,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":36,selector:39," Tag":32,"\u4fbf\u5229":25,"\u89e3\u6c7a":79,center:4,"\u4e71\u6570":[35,64],"\u5b66\u7fd2":[27,17,59,73,18,41,25,3],"\u56de\u547c":18,Horikoshi:36,"\u898b\u308b":35,"_IP":51,"_probability":[36,17]," user":16," uses":52,KEY:[7,69,67,24],"\u5927\u91cf":[32,33,2]," geo":[],",[\"":[32,2,17,62,59,34,84,24,40,35,51,41,67,25,37,47],"\u60f3\u5b9a":[78,19,68,79,32],"7e":16,"\u5b9f\u969b":[31,32,47,34,84,8,24,37,11],"\u307e\u307e":81,"\nGRN":33,"\u540dn":[24,8,11],"\u52d5\u74b0":14,"1\u30c8\u30fc\u30af\u30f3":7,"\u8aad\u307f\u98db\u3070":2,gted:57,"\u3002Functions":83," abandon":71,"\u307e\u3060":[78,36,81,17,73],qps:[14,16]," arg":33,"\ngroonga":[36,3,85,81],sa:[17,59],"\u307e\u305a":[38,2,47,34,84,69,16,57],"\u307e\u305b":[2,23,70,16,71,51,25,3,5,28,29,7,8,74,34,54,78,56,11,57,69,59,13,24,37,17,63],Users:84,"_list":[27,1,2,22,13,38,18,8,36,11]," lzo":[],check:[27,1,22,79,38,36],"\uff09\u3002":[34,84],self:16,"_lock":36,"\u79d2\u5358":56," : ":15,"\u307e\u3057":[32,2,47,59,34,63,40,35,84,36,57],"-limit":[13,1],"\u7279\u5b9a":[62,19,68,7,63,37,83],"\u307e\u3068\u3081":24,build:78,mroonga:63,"\u8a18\u53f7":[13,34,18,2,69],"$PREFIX":36,"\u5024\u6bce":24,"\u306a\u3051\u308c":[13,70,7,54,16],"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":33," realtime":[17,41],"\u30e1\u30fc\u30eb":57,In:[],"\u30e1\u30fc\u30c8\u30eb":[58,4],"\u89e3\u653e":78,"\u3060\u3055\u3044":[43,2,83,65,57],The:[],"'hay":33,exe:65," needless":[],"_put":[5,27,38,22,13,60,77],"\u30e6\u30fc\u30b6\u30fcID":84,"\u307e\u307e\u3067":34,"\u306b\u3069":33,"\u3002Sphinx":9," lcov":83,"\u9577\u3055":16,"\u4ecb\u3057":2," UInt":32,"\u7528\u8a9e\u96c6":79," rst":9,"\u4e0a\u66f8\u304d":35,"/d":51,"\u3057\u304b\u3057":[34,69,57],mlock:18," longer":21,"\u300ccommand":80,"_by":[84,85],".rb":18,SEGV:1,"\u304a\u3051":24,"_users":84," item":[25,59,17,41],"(drilldown":74,"\u30d1\u30c3\u30c1":[6,36,18,57],"\u304a\u304f":[],nterms:79,"\n]\n":68,MySQL:63,"\u304a\u3044":[2,19,7,74,35,63,36,83,57],"\u59cb\u70b9":2,"\u77e9\u5f62":[12,35,63],"\u59cb\u3081":[63,57],queries:16,"\u4ed8\u52a0":24,"\u6bd4\u3079":62,"\u304a\u3070":[36,1],"\u6642\u306b":36,"-ftp":16,"\u51e6\u7406":[1,33,63,18,69,35,24,16,51,74,57],"\u4f4e\u6a5f":33,"\u5225\u9014":[7,56,62]," depends":21,columns:[18,70],"]]]":[32,2,17,34,84,39,24,40,35,51],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[25,59,41],"\nency":16,"\u629c\u3051\u308b":2," zunda":[]," used":52,"_html":[13,36],"\u4eca\u5f8c":[5,36]," access":[],"\u9069\u5408":34,OBATA:18,"\u304a\u3070\u305f":36,"\u30b7\u30fc\u30af\u30a1\u30fc\u30b5\u30fc":47,"\u305d\u308c":[33,2,47,34,84,18,69,78,41,57],"\u3068\u3044\u305a\u308c\u304b":24," supports":21," STATUS":15,"\u53c2\u52a0":[43,49],Help:57,"\u306b\u304a\u3044":[40,81],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[27,43,42,61],"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[13,51]," threasd":13,"/*":[6,57],"(>":33,"\u3002Redmine":0," http":[13,80,14,51,65]," compressed":[],"\u52a0\u7b97":74,"\u6570\u5024":[1,7,2,13,18,69,24,40,33,54,4],":!":24,"\u68ee\u7530":32," ')":70,"\u3082\u3057\u304f":[37,51],"\u3002limit":24,"\u305d\u3057":84,"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":66,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[36,1,18,83],dump:[27,1,22,68,18,38],"/log":13," universe":65,"]_":2,Kbyte:56,"\u7d44\u8fbc":[53,68,58,70,48,24,71,4,5,28,29,66,8,30,54,79,76,55,56,11,77,12,78,60,75,39,7,64,44],"][":36,"\u554f\u3044\u5408\u308f":33,sed:36," concurrently":52,sea:25,arg:33,sen:21,ELAPSED:52,"\u8a00\u8a9e":[33,13,63,18,43,57],PORT:16,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":50,"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":33,"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[16,57],"\u7d39\u4ecb":[32,43,2,84],"(a":24,GET:51,"]}":[40,79,2],"\u30b9\u30b3\u30a2":[33,17,34,19,24,35,74,84],"-level":13,"\u5c02\u7528":[27,51,26,57],"\u30e2\u30b8\u30e5\u30fc\u30eb":[27,18,81],TCP:[13,63]," MacPorts":[],"\u6df7\u5728":80,RETURN:52,".log":[13,81,16],"\u30cb\u30db\u30f3":25,"\u305d\u306e":[2,47,68,69,70,24,25,67,27,40,34,56,57,32,33,13,16,62,63,65,84,81],"\"-":36,"\u7a7a\u6e2f":84,"\u8868\u73fe":[33,19,70,79,43,56],"([":64,"\u3044\u308f\u3086\u308b":32,Server:32,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":63,"\u8a18\u9332":74,"\u898b\u3064\u3051\u308b":25,"\u304a\u308a":[84,37]," easy":9," parameters":[],"\u5236\u7d04":31,"\u6790\u5668":7," issue":0,AND:35,"\u3002value":74,last:84,oneiric:65,"\u5909\u66f4":[27,1,2,17,34,73,18,48,16,20,74,79,36,81],"\u304a\u52e7\u3081":65,"\u578b\u5909":36,"\u4f4e\u304f":34," Sites":68,"]:":51," reason":[],"] ":[16,13,14,15,51,36],"-file":[13,36],"\u53ef\u5426":2,"],":[2,67,68,70,16,51,25,47,40,8,34,11,32,59,13,79,35,24,37,17,62,84,41],"]/":51,"\u3002TLD":62,"])":64,"\u6642\u70b9":[7,81],load:[1,2,47,22,68,70,71,25,67,27,40,34,75,32,59,13,35,81,36,37,38,62,84,18,41]," about":52,");":33,"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":23," database":15,point:[12,69,58,4]," indexed":[],"\u3059\u304e\u307e\u305b":32,"\u306f\u3058\u307e\u308a":81,"\u30b9\u30ec\u30c3\u30c9":[13,27,61,16,63],"\u30ca\u30ce":18,"-patch":57,"),":[7,54],shutdown:[27,28,22,13,18,38,51],linux:[],"\u4e0d\u80fd":16,") ":[33,7,56,16]," documentation":43,")\"":47,"\"gronga":3,")'":[32,17,59,84,35,41,25],":#{":52,"\u78ba\u5b9f":59,"[rpm":36,GitHub:[0,36,57],"\"web":[59,41],"\u8003\u616e":34,Groonga:52,ShortText:[2,47,68,24,51,25,67,40,7,8,34,54,56,11,32,59,13,35,36,37,17,62,84,18,41],"\u898b\u3064":[18,17],")\n":[64,21,52,33,4],txt:[6,57],"\\\"":[69,70],"_queries":51,po:57,XML:18,"\u3057\u3084\u3059\u304f":63,"|<":52," COLUMN":[32,2,47,62,34,84,68,40,54,37],body:[47,34,66,70,24,75,54]," raltime":41," to":[21,52],"#groonga\u30bf\u30b0":84,"/db":[68,17],EXAMPLE:15,"\u30d9\u30fc\u30b9":[36,18,57],"\u56de\u7279":16,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[36,83,57]," User":32,"\u79d2\u9593":36,"\u5730\u7cfb":[63,56],"\nLucid":18,"\u30a8\u30b9\u30b1\u30fc\u30d7":70,"\u6307\u793a":25,"\u5236\u9650":[31,27,22,18,16,51,36,56],"\u691c\u7d22":[1,2,47,23,24,50,20,25,26,67,27,63,7,74,34,10,32,33,59,13,69,35,36,37,84,17,62,19,18,39,85,65,41],"\u30b9\u30c8\u30ec\u30fc\u30b8":[27,63],TokenBigramSplitSymbolAlpha:[34,69],"\u30e9\u30a4\u30d6\u30e9\u30ea":[63,2],"\u4eca\u5ea6":84,"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":36,"\"sug":3," truncation":[],engi:[25,17],"\n\n":[53,2,60,48,24,71,51,5,66,8,78,75,54,76,11,77,13,79,70,84,39,7,44],"\u63a1\u7528":[34,63]," customized":52,"\u4f7f\u3048\u308b":[13,36],"\u5f15\u6570":[66,1,53,68,58,70,48,16,71,4,5,28,29,7,8,78,75,54,79,76,55,11,77,12,33,13,60,14,80,24,19,39,64,44,81]," DB\u30d1\u30b9":[],"\u5404\u8a9e":[79,2],"\u8aad\u307f\u65b9":19,"_expansion":[36,47,24]," values":70,"\u8a00\u3046":25,NetBSD:18," Comments":[84,68],TokenBigramIgnoreBlankSplitSymbol:34,"\u898b\u3064\u3051":[25,1],"-key":65,"\u4e16\u4ee3":81,"null":8," logs":52,"\u4e00\u7fa4":33,Hardy:18," float":[40,2],"\u6210\u679c":[43,57],Alert:52,"_PER":36,"\u5065\u4f5c":32," file":[],"\u56fd\u540d":62,"\u5177\u4f53":34,"\u307e\u3067":[31,33,67,13,84,70,16,57]," select":[32,2,47,62,34,84,35,37],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[43,57],"\u307e\u3059":[45,0,66,2,47,32,68,23,70,48,49,50,51,25,76,69,3,4,5,28,82,6,29,7,8,74,34,84,30,54,78,79,67,9,55,56,11,57,31,12,33,59,13,60,14,77,53,63,35,80,16,58,36,37,71,83,73,38,75,17,62,19,39,24,40,64,65,41,43,44,81]," Shibuya":18,Lines:83,"\u56de\u52d5":16,"]\n":[53,2,67,60,48,71,47,5,40,66,75,54,76,77,32,13,79,35,37,17,62,39,7,44],amd:[]," describes":57,"\u5f8c\u8005":35,ifexists:70,"\u9006\u5f15":32," shows":[],".spec":36,"\u5834\u6240":[18,16,49],Moero:32,"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[13,39,24],Senna:[63,27,21,36],"\"\u3001":25,"\u30b9\u30bf\u30a4\u30eb":13," buffer":79,"\u7d44\u307f\u5408\u308f\u305b":[34,63,7,54,33],"\u3002true":56,"\u30ef\u30a4\u30c9":36,edge:61,flags:[32,2,67,62,13,79,7,8,16,40,54,84,37,11],sortby:[32,2,17,39,24,35,36],"') ":13,entry:54,"\u9806\u756a":[13,34],Lucid:18,"_path":16," digits":52,"\u30d0\u30a4\u30b0\u30e9\u30e0":[34,7],"-path":[1,17,13,18,36,52],"_KEY":[32,1,7,2,47,62,34,84,68,18,8,40,36,37,67],"\u3002dump":68,nanoseconds:52,"\u8fd1\u4f3c":58,"\u547c\u3073\u51fa\u3059":[12,58,30,64,55,4],"_NIL":18," time":[40,2,52,16],mysql:21,"\u9006\u5f15\u304d":[27,84,26,32],"\u547c\u3073\u51fa\u3055":24,"\u547c\u3073\u51fa\u3057":[68,18,33],"\u3067\u304d\u308b":[27,33,17,32,13,19,61,23,24,34,40,54,16,63,67,36,43,84,68,83,47],tables:68,"/afr":[35,2,62]," Users":[84,68],"\u5316\u51e6":[36,74],point1:58," BOOLEAN":21,"\u30bd\u30fc\u30c8":[27,1,23,2,17,32,18,24,35,36,26],PID:[13,1],"3\u4ef6":84,Example:52,source:[32,2,84,54,37,11],"\u5024\u3068\u3057\u3066":13,location:[32,35,62,84],"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":34,input:70,"\u8981\u7d20":[33,2,13,53,70,16],"\u3064\u3051\u308b":67,"...":[46,17,79,68,8,16,80,36,11],"\nPARTIAL":33,"\u5024\u7528":36," adv":65,"\u968e\u5c64":33,"\u9759\u7684":[13,43,80,83],"\u304f\u3060":[2,17,34,16,40,80,65,57]," platform":[]," blog":[34,2],"<#{":52," add":57,"\u30cf\u30c3\u30b7\u30e5":[78,79,7,24],bit:[56,65],"\u30bd\u30fc\u30b9":36,"\u5f53\u3066":[8,11],"\u30d7\u30e9\u30b0\u30a4\u30f3":[36,1,18,85,57],"\u5927\u4e08\u592b":0," GNU":[27,65,36],"\u62e1\u5f35\u5b50":[18,16]," your":57," Takuto":18,"\u540c\u7b49":[69,16],"\u9014\u4e2d":[13,25,59],"-command":[18,81],"\u308f\u3051":25,"\"uptime":51," Kinjirou":32,"\u4ee5\u5916":[33,23,47,78,18,24,16,36],OS:16,"\u30c7\u30d5\u30a9\u30eb\u30c8":[5,1,18,17,62,13,39,7,14,16,34,33,24,36,70,69,81],"\u6642\u523b":[40,78,30,16,59],".title":[40,2],"\u7f6e\u304b":80,"\u4ed5\u65b9":[43,57],"\u7f6e\u304d":18,FILES:15,"-DD":52,examples:18,"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[13,1],"\u3001[":2,"\u3001_":[84,35,62]," experimental":[]," seven":2,"_bool":18,"\u5927\u304d\u304f":[68,18,81],"\u8a73\u3057\u304f":[2,65],"\u66f8\u304d":[34,69,16],RPM:[36,18]," nanoseconds":52,"\u66f8\u3044":84,"\u5927\u304d\u3044":[13,36,33],"\u3061\u3083\u3093":32,"\u69cb\u6210":33,"\u308c\u307e\u305b":[13,79,81],"\u3002JSON":70,"\u304f\u3093":84,".sh":[83,57],"\u5b8c\u4e86":[24,57],"id]":71,run:83," Hiroshi":18,"\u4ed8\u304d":[27,7,23,17,32,18,41,25,56,26],"\u3001\n":[35,48],":\\":[70,2],"\u4f9d\u5b58":19,"\u4ed8\u3044":84," tablename":81,"\u5f37\u5236":1,"\u4ed5\u7d44":57,"\u96c6\u8a08":[27,63],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[13,33],"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":13,"\u4ed8\u3051":51,"\u30ab\u30a6\u30f3\u30c8":84,"{\"_":[40,32,35,2],"\u5b9f\u73fe":[27,43,33,42,63]," schea":15,"\u3001\"":[47,59,84,41,25,36,3],"\"mori":68,usa:62,"\u3001'":[13,35,2,47,24],"\"service":59,"\u4f3c\u305f":35,"\"yu":68,"\u3001-":[40,18,80,16],"\u53ca\u3073":16,"\u3001/":65,"\u3001.":[83,57],range:[8,11],"\u5185\u5bb9":[40,84,14,8,24,16,41,25,37,57,11,51],"\u3057\u307e\u305b":25,"\u8edf\u6027":63,"\u30fb\u30c6\u30fc\u30d6\u30eb":19,"\u95be\u5024":[27,17,13,69,24,34,20,36],"\u3001:":16,DragonFly:18," LGPL":21,"\"sea":25,"\u304f\u308c\u308b":[6,57],"\u30ad\u30e3\u30c3\u30b7\u30e5":[13,1,24],"-src":65,"\u3088\u308a":[33,47,34,19,18,16,63,65,36,25,84],"-protocol":[13,16],"\u3002query":24," Takayuki":[],"\u5831\u544a":[36,18,85,16],"\u524d\u65b9":[27,33,2,17,7,69,85,25,26,67],Natty:[27,65,36],".)":52,".-":57,"..":[13,70,80,15,24],"\u30d5\u30ec\u30fc\u30ba":24,". ":[45,0,46,2,47,22,32,68,23,70,48,49,50,21,51,25,76,69,3,26,4,5,28,82,52,6,29,7,8,74,34,84,30,54,78,79,67,9,55,56,10,11,57,31,12,33,66,59,13,60,61,14,72,53,63,35,80,16,58,37,71,81,83,73,38,75,17,62,77,19,39,24,40,64,65,41,42,43,44,15,20],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":16,"\u6b53\u8fce":43,"\u7a2e\u5225":11,submit:[25,59,17,41]," you":[],"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":84,"\u51fa\u3059":84," operate":[],YYYY:52,"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":81,translate:57,"\n..":68,".pid":13," accessing":[],"[groonga":36,".O":32," Demo":32,"-query":[13,36,52],opt:[]," including":[],"\u8a2d\u5b9a\u5024":[1,48]," needed":[],BSD:36,Google:3,link:[40,2,62],".]":[79,8,11,17],"._":[40,2],"\u3002\u30bf\u30b0":32,posted:84,".h":6,"\u8868\u3059":[32,33,40,23,54,64],utf:[13,21],"_op":33," that":52,"_or":4,"\u306b\u5bfe\u3057":[32,1,33,2,17,62,78,7,14,24,35,80,51,54,37,69],Twitter:84,".c":21,".d":65,"\u8868\u3057":[23,74,33,81],windows:21,"\u52d5\u304f":36,"\u5206\u89e3":33,".}":79,Pentium:16,similar:33," types":17,"\u8ca0\u8377":18,"\u63a5\u982d":7,"_NOFILE":52," functions":21,"\u30ed\u30fc\u30de":25,"/source":[6,65,57]," whose":[],To:[],"\u3054\u3068":[63,37,61,50],"\u3075\u308a":17,"\u633f\u5165":[13,2],"\u7279\u5fb4":[63,27,32],"\u5165\u308c":[34,32,84],"\u306b\u5bfe\u3059\u308b":[27,33,17,62,32,84,18,50,36,37,26],"_columns":[27,2,17,62,32,34,84,18,39,24,40,35,52,37,26,47],".comment":84,"\u958b\u3044":[75,36,18,66,63],"\u5f8c\u308d":24,"-noftp":[],"_rate":51,Mac:[27,18,65],"\u3042\u3052\u308b":[34,27,20]," testdb":16,"'\u3001":2,"\u56db\u3064":69,grn:[12,33,52,22,27,19,18,39,58,24,30,64,70,36,37,55,43,85,4],"\u6642\u4ee5\u5916":18,"\u5168\u6587":[27,69,2,32,13,19,23,50,34,35,20,65,63,37,84,26],tmp:[13,2,17,51]," fix":21,".load":16,users:84," script":16,"\u30c7\u30fc\u30bf":[1,2,67,22,68,23,70,25,3,26,27,40,56,32,33,59,34,41,36,84,17,19,18,65,63],lucid:65," eight":2,"\u6307\u5b9a":[1,66,2,47,32,68,23,70,48,16,71,51,69,58,26,4,27,40,53,7,74,34,75,54,78,79,67,76,55,56,11,77,12,33,13,60,14,35,80,24,36,37,17,62,63,18,39,64,65,84,44,81],"\u5c5e\u3057":56,"\u4e00\u7dd2":[34,1],"\u3002Video":32,"\u306e\u307f":[2,67,68,23,70,48,24,33,25,47,5,7,74,57,69,34,80,37,83,17,62,63],"-databases":51,".patch":57,drilldown:[32,1,62,84,39,24],"\u306a\u304c\u3089":2,"\u3088\u3044":57,"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":16,"\u4f7f\u3044":[27,33,17,59,73,69,41,25,82,84,57],"\u6b63\u898f":[7,2],"\u4e00\u5de5":67,"\u3088\u3073":33,"\"groonga":3,"\"suggest":3,"\nerror":[60,77],"\u5f37\u5316":[36,18],"\u8aad\u307f\u53d6\u308a":[13,70],"\u3088\u3063":35,"\u7d50\u5408":[19,33,24],"-count":78," b":24,"\u3002Debian":83," a":[52,15]," changed":21,"\u4e00\u5207":[]," d":[34,69],":\u5024":24," official":[],",\"title":2,"\u30a4\u30f3\u30c7\u30c3\u30af":37,"\u64a4\u5ec3":18," i":[],"\u843d\u3061":18,ga:16," z":56,query:[52,32,33,2,17,59,34,19,69,39,24,40,35,51,41,67,25,37,84,85,47]," x":[],"\u3067\u306b":34,CPU:16,"\u3067\u3069":17," }":84,"\u3067\u3057":63," C":[6,36]," @":[34,84,69]," binding":21,pthread:36,"\u8a9e\u6271":69,"/\u65e5":84," I":57,"\u3067\u3059":[0,2,47,68,23,70,16,50,25,69,3,40,63,7,8,74,34,11,57,31,33,59,13,79,14,35,80,24,37,83,84,17,62,19,6,65,41,43,81]," Token":16,"\ngronnga":3,"\u3042\u3089\u308f\u3057":2,stable:81,"\u3067\u304f":43," [":[2,67,68,70,15,71,51,47,40,7,34,54,32,13,79,14,35,16,37,17,62,84,39,24],"\u3067\u304d":[1,2,67,32,68,23,70,16,50,51,25,3,4,40,63,7,74,34,30,54,9,55,56,57,12,33,59,13,14,35,80,24,37,83,84,17,62,19,18,58,64,65,41,81],include:6," _":[32,2,67,62,40,84,35],"\u7e70\u308a\u8fd4\u3057\u6570":16," ]":[35,47]," \"":[84,2,17,59,34,79,70,8,24,35,16,41,67,25,11,47]," #":[84,18,85,57]," ":[66,53,60,48,24,71,5,7,75,54,76,77,32,33,78,79,14,35,16,17,84,39,44,81]," !":24," &":[34,35,69,65]," '":[32,17,59,13,84,69,34,35,41,25,57,52]," ./":57," Senna":[36,21]," *":[34,77,56,24,57],"\u8fbc\u307f":5,"_DELIMITED":21," )":24," .":[34,83,16]," /":[2,17,13,69,14,34,51]," -":[66,1,21,2,47,32,68,69,70,48,16,71,51,25,76,84,4,5,28,52,40,29,7,8,34,30,54,78,79,67,9,55,11,57,15,12,58,59,13,60,14,77,53,35,80,24,36,37,83,75,17,62,19,18,39,85,64,65,41,44,81],"\u3002run":83,"\u3067\u5024":[13,2],"\u6e0b\u8c37":84,"\u983b\u5ea6":17,"\u4e0d\u8db3":65,Fixed:[],"\u6368\u3066":36," <":[21,34,68,24,35,16]," =":[32,33,13,19,24,35],"2pdf":9,"_API":33," crash":[],"-build":83," update":[65,57],"-id":13,"\u4e09\u3064":69,"_dir":36,"this":[40,2,51]," such":57,Here:52,"|correct":17,"\u30aa\u30d7\u30b7\u30e7\u30f3":[1,69,2,17,40,13,18,14,16,78,34,59,80,51,25,67,24,36,37,83,41]," backup":68,".po":[43,57]," term":79,"\u5341\u5206":34,"\u4e00\u81f4\u3057":[],"-memory":18,".pc":[36,85],"\ntable":[34,84,68]," position":[]," [":24,"_cursor":18,"_SCALAR":[32,2,47,62,34,84,68,54,37,11],index:[32,37,21]," specifies":[],"_thread":16,"/introduction":51," Blogs":34,squeeze:65,etime:14," WGS":[32,35,84],HTML:[36,43,80,51,57]," specified":[],Video:32,"\u30a8\u30f3\u30b8\u30f3":[13,19,32],"\u7b49\u5024":18,"\u3060\u3057":[36,16],Suggested:[],FTP:16," its":52,"-exact":78,"\u5fc3\u304c":83,clearlock:[27,1,22,13,38,75],"\u516c\u958b":[36,18]," PatSuffix":67,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":16,"\u57cb\u3081\u8fbc\u3080":16," Names":57," sorts":[]," developers":49,"\u3002Blogs":34,"_ACCOUNT":57," libmemcached":83," \"":[79,16,8,11,84],"\u306b\u5bfe\u5fdc":[5,13,70,24,80,36]," ":81,"= \"":19," users":[84,52]," GPL":21,ctx:61,"\u300d\uff08":[68,69],ARAGUMENT:2,"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":13,"\u30c8\u30e9\u30a4":36,"\u3067\u3082":[2,34,63,69,16,35,51,65,36,25,37,83,57],"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":63,"\u6307\u5411":63,"/senna":68,"\u8d85\u3048":[34,69,24],"\u6982\u8981":81,realloc:18,"\u5171\u901a":[19,37,7,56],"\u7518\u3044":47,"(ctx":33," throughput":[],",\"correct":17,"\u3046\u3048":36,HOME:[],"_NAME":[2,51],"'ABC":7," v":33,"\u5148\u60c5":84,"\u9001\u4fe1":[66,68,70,48,24,71,5,28,29,53,8,75,54,79,76,11,77,78,60,16,39,7,44],Draw:32,tar:65,zip:[27,65],"\u672a\u958b\u653e":18," garbage":79,"\u3057\u307e\u3059":[84,7,69,3,62]," SiteCountry":62,"\u3044\u304f\u3064":43," defines":15,"\u3046\u3061":[33,63,23,58,24,81,79,36],"\u3057\u307e\u3046":[36,18],usr:[13,83,65],"\u3057\u307e\u3044":[34,63,67,16,59],Itagaki:18,"/master":57,"\u81ea\u5206":[16,57],".hash":84,"\u4efb\u610f":[13,63,56,16],soundkitchen:36,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[75,36,30,66,79],"\u4e2d\u7a0b\u5ea6":65,"\u3059\u308b":[45,73,1,66,2,47,32,68,23,70,48,49,50,51,25,76,69,3,4,5,27,28,40,29,7,8,74,34,84,30,54,78,79,67,9,55,56,11,57,12,33,59,13,60,61,14,77,53,63,35,80,16,58,36,37,71,81,83,38,75,17,62,19,18,39,24,64,65,41,43,44,20],"\u5909\u3048\u308b":34,"\u7d4c\u7def\u5ea6":35,"[\"_":[]," defrag":[]," enhanced":21,HOST:[51,16],"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":83,"\u3059\u3093":84,Ultra:32,"/rab":[35,2,62],"\u4e00\u81f4RK":[],GtiHub:36,pkg:18,"\u6b8b\u308b":36,"\u6b8b\u308a":81,"\u672c\u5f53":25,"\u3002Ctrl\u30ad\u30fc":2,"\u4ee5\u5185":[25,35,84,59],"\u8d77\u52d5":[16,2,13,18,24,78,80,51,81],"\u306e\u3069\u308c":25,"\u6e21\u3055":33,"_WITH":[7,69,67],"\u6e21\u3057":[33,70,51],"/index":[13,57],"\u53d7\u3051\u4ed8\u3051":18,"-html":18,"\u7de8\u96c6":[1,55,43,83,57],Details:52,"\u6b8b\u3063":18,"\u3001&":35,"\u51fa\u3057":84,TokenBigramIgnoreBlankSplitSymbolAlphaDigit:34,",\u3000":16,lock:63,sudo:65,"_estimate":36,"\"correction":3,"\u30af\u30e9\u30c3\u30b7\u30e5":[36,18],"_install":9,"\u4f7f\u3044\u65b9":[27,59,13,73,16,41,25]," example":17,objname:[66,75]," mte":21,"\uff08TokenBigram":34,"\u6301\u305f":[63,7],"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":18,"\u6301\u3061":[13,7,2,33],"\u306f\u307f":43,tomotaka:36,"\u6301\u3064":[32,23,2,62,59,13,61,7,70,74,36,56],"_LEAK":83," or":52,"\u6df1\u523b":34,"\u691c\u51fa":[1,18,83],"\u3059\u3067":69,"\u3059\u3079":[33,2,84,68,16,75,81,36,25],"\u6b8b\u3057":24," view":53,defalt:18," port":65,"\u3064\u3064":[34,63]," size":79,"\u30b3\u30de\u30f3\u30c9":[1,66,2,47,22,68,69,70,48,16,71,51,25,76,3,26,67,5,27,28,40,29,7,8,78,75,54,79,9,11,77,33,59,13,60,53,35,80,24,36,83,38,17,19,18,39,41,44,81],"_create":[27,38,2,47,22,32,13,84,68,7,16,34,35,54,85,67,36,37,62,40],"\u81ea\u5df1":84,"_')":[54,74],"_PORT":16,"\u4e26\u3073\u9806":35,"\u88dc\u5b8c\u8a9e":25," Text":16,"\u6301\u3063":59,"]x":[84,35],"\u5f35\u3089":40," instead":13,",\"":[32,2,47,40,79,68,24,35,51,84,37,67],"\u30a2\u30af\u30bb\u30b9":[13,18,14,80,51,36,57],"\u7d5e\u308a\u8fbc\u307f":[2,24],"\u3042\u308b\u3044":[12,33,58,24,81,4],alloc:[78,51],"\u66f8\u5f0f":[66,53,2,68,58,70,48,16,71,51,4,5,28,29,7,8,78,30,54,79,76,55,11,77,12,13,60,14,80,24,75,17,39,64,44],"\u601d\u3044":57,"\u81ea\u52d5":[32,2,67,63,7,16,74,36,57],"\u898b\u3064\u304b\u3063":3,"\u30da\u30fc\u30b8":[13,27,80,2,57],"\u578b\u540d":[19,7],or:19,"_TIME":52,"\u9078\u629e":[2,51],":tasukuchan":84,":\\\"":70,"\u3002GRN":33,MESSAGE:[52,77],"\u3082\u3061\u308d\u3093":16,"\u30c0\u30d6\u30eb":36,"\u300cbill":69,"\u7d9a\u304d":70,gcc:36,"\u8abf\u3079":[12,4],"\u7d9a\u3044":[34,24],"\u4e00\u500b":33,"\u5fc5\u305a":81,"\u30ab\u30d0\u30fc":83,"% ":57,jiro:32,"\u30c7\u30d5\u30e9\u30b0":36,"|WITH":[2,47,34,84,54,37],"';":13," clean":83,"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":14,WITH:54,"\u7d9a\u3051":16,"\u6570\u5b57":[34,16,59],"\u4e00\u9023":19,lib:18,"\u6539\u884c":[13,8,11],TokenBigram:[34,7,2,69,59],ll:[34,69],"_reopen":[5,27,38,22,60,77],"/apt":65,euc:13," localhost":13,"\u3002Eclipse":57,"_gqpt":16,tsv:80,"\u512a\u5148":16,"\u5de6\u4e0a":[12,1],"\u5de6\u4e0b":1," yes":14,"\u9589\u3058\u308b":[36,1],greater:33,"\u8a71\u3057":43,auto:17," |":[34,35,14,24]," value":[],"\u30b9\u30ad\u30fc\u30de":68," literal":[],billiard:[34,69],lzo:36,"_HOST":16,"\u6587\u66f8":[19,69,2,3,47],"\u90e8\u5206\u4e00\u81f4":[34,69],"_point":[32,4]," function":21,"\u306b\u304f\u308b":34," fulltext":[],"\u4e00\u3064":[53,68,69,70,48,24,71,4,5,28,29,66,8,30,54,79,76,55,56,11,77,12,58,78,60,81,75,39,7,64,44],edit:[27,1,55,72,22],parameter:[],".net":[40,32,35,2,62],OffGao:84," updated":[34,21,57],"\u66f4\u65b0":[27,33,32,63,70,81,36,43,57],"\u30ed\u30b0\u30ec\u30d9\u30eb":13," hh":52," physical":79,"\u4fdd\u8a3c":[79,81],"\u70b9\u9593":[63,35,23],"\u6df7\u305c":[2,17],"\u65e2\u5b58":[5,2,51,16],"\u5b9f\u51e6":33,"\u4e0d\u4e00\u81f4":24,"/LC":57,",\"link":[40,2],chunk:79," lines":[]," Aramaki":[36,18],"\u753b\u9762":1,"\u5217\u5f15":33,frequency:[25,59,17,41],"\u751f\u6210":[19,69,74,64,43,57],"\u975e\u4e92\u63db":36,"\u3050\u308b\u3093":32,"-match":[13,34,24]," deal":[],res:16,"& _":35,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":13," GRN":[33,52],"\u4e0d\u6b63":[36,1,18,83],"\"test":2," finished":52,"\u30ab\u30ec\u30fc":69,"\u300cOffGao":84,"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":36,"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":57,"\uff1f ":16,"-fd":36,"\u601d\u3063":6,"/\u6708":84,This:[2,52,15],"\u904e\u7a0b":74," Site":[32,2,62,40,35,51],"'hoge":19,"\u73fe\u72b6":81," correct":[17,59],"\u5b9f\u7a3c":14,"\u4ed8\u5c5e":80,"/aba":[35,2,62],"8r":13," origin":57,"'this":2," A":15,"\u4ed5\u69d8":[27,17,73,18,80,81,10],Point:4,deprecated:81,"\u4e00\u90e8":[76,3]," Tomita":18,"\"\uff08":25,"\"\uff09":[25,1,35],"_friends":32,"\u300d\u3001":[32,84],"\u53ef\u80fd":[32,79,33,17,13,63,81,7,69,24,34,35,80,16,73,67,36,74,83,47],"\u307f\u304c":33,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":82,"\u8ffd\u6c42":63,"3ki":18,"\u8aa4\u5dee":36,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":63,"<max":13,suffix:33,"_DEBUG":83,",\"location":[32,35],"\u8aac\u660e":[45,73,66,2,22,68,69,70,48,16,71,25,58,4,5,27,28,29,7,8,74,34,30,54,78,79,76,55,56,11,57,12,33,59,13,60,14,77,53,35,80,24,38,75,17,19,39,64,65,41,43,44],"1\u305a":[81,74],"\u8a9e\u5f59":[31,27,69,2,7,50,26],echo:[],"\u30d9\u30af\u30bf":[1,18,11]," search":[59,41,3,17]," mode":33,"\uff08\u300c":34,"\u53d6\u308a\u8fbc\u307f":36,"\u9805\u76ee":[5,1,78,70,60,39,24,50,35,75,79,71,77],"\u8d77\u70b9":24,"\u843d\u3061\u308b":[36,18],"\u78ba\u8a8d":[1,2,84,16,43,57],"\u305d\u3053":34,"\u5bb9\u91cf":[79,24],"\u305d\u308c\u3089":[63,14],"\u304a\u304b\u3057":18,mkdir:68,",[":[32,2,47,62,34,84,24,40,35,51,37,67],"\u6c38\u7d9a":7,"\nlog":52,".groonga":[65,16,57],"1\u3064":[31,32,17,40,84,16,36,37,3,0],"\u7d44\u307f\u8fbc\u307f":[27,38,22,13,19,68,72,16]," show":[],"-keys":65,"-api":6,"|COMPRESS":11,"\u306f\u3058\u3081":[27,17,73,81,3,57],"\u3002command":81," for":[21,52,15,57],"\u304b\u3061":69,configure:[34,18,24,78,36,83,57],"\u304b\u3064":[63,69]," service":59,"\u304b\u3069":[34,12,35,17,4],"\u3002Senna":63,"\u7403\u9762":58," mecab":21,"\u756a\u76ee":2,",..":[24,70,8,11],"\u8ffd\u8de1":0,"\u64a4\u53bb":36,"\u8a9e\u610f":50,rst:9,"\nrequest":52," squeeze":[27,65]," algorithm":[],"\u3092\u3054":83,"\u3002\u300c":[32,37],"\u89e3\u6d88":[1,66],Bool:[12,56,67,4]," started":52,"-log":[13,36,52,16],"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[13,18],rakutan:37,"\u51fa\u73fe":[17,50]," SiteDomain":62,"\u8aad\u307f\u8fbc\u3080":1,"\u304b\u3051":75,".grn":68,bind:36,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":69,"\u30ab\u30bf\u30ab\u30ca":[25,17],KBytes:16,Information:52,"false":[5,7,67,53,60,18,39,71,75,54,76,44,56,77]," us":[],"-threads":13,"\u7d5e\u308a\u8fbc\u3080":3,"\u56fd\u969b\u5316":[27,43,82,57],"\u4fee\u6b63\u4e2d":59,"\u30de\u30a4\u30af\u30ed":[84,56],PATH:16,Soccer:32,"\u3068\u307f":80,"\ncolumn":[34,84,68],"\u975e\u308f":69,min:[14,16],"\n ":33,"\u6f14\u7b97":18,"\u304b\u3089":[1,2,47,68,23,70,16,71,51,25,3,40,34,78,56,57,33,59,13,61,14,35,24,36,84,17,19,18,64,65,41,43,81]," lexicon":16,"\u914d\u4e0b":80,"_const":33,"\u4e88\u7d04":[7,54]," Representation":57,BIT:16,Takayuki:36,libmemcached:83," Gone":32,brazil:62,"\u901f\u3084\u304b":81,"\u3069\u3061\u3089":[0,37,3,24,47],"\u3082\u3059\u3079":19," named":[],"\u69cb\u7bc9":[43,69,83]," six":[2,52]," code":[52,57],"*,":24,"\u30d6\u30eb\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":[]," API":[6,27,43,21,82],"\u3089\u308c":[33,63,18,8,24,7,35,75,36,11],"**":77," variable":[],"\u7d44\u8fbc\u578b":[27,56,22],"\u306a\u3082\u306e":63,"*'":24,"* ":56,"\u6e80\u305f":[19,35,33,69,84],"*\"":85,"_build":83,"\u3042\u306a\u305f":49,"*')":24,"\u4eac\u90fd":[34,69],url:68,"\u30b3\u30de\u30f3\u30c9select":19,"\u7d44\u307f\u8fbc\u3080":33,"_is":36,hh:52,"\u5408\u81f4":2,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[27,62,32,63,24,84,26]," Blog":37,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[36,1,18,81],"\u30ea\u30af\u30a8\u30b9\u30c8":[66,68,70,48,24,71,5,28,29,53,8,75,76,79,54,11,77,78,60,14,80,39,7,44],Masahiro:18,"\u5909\u6570":[36,85,83],"\u7d44\u307f\u8fbc\u3093":7,"-output":16,"_id":[35,74]," Type":[40,2],".gz":57,"\u6307\u3057":19,"\nALERT":[60,77]," Munin":[],",\n ":[17,34,79,8,84,11],"\u8d8a\u3048\u308b":34,supported:21," favorite":57,"\u524d\u8eab":63,"<limit":13,Redmine:0,"'localhost":[13,14],",\n>":[32,17,62,35,67,37,47],"\u5ea6\u3068":36,"\u5bfe\u8c61":[66,2,47,68,69,70,24,51,26,27,7,75,54,76,11,57,32,33,34,61,14,81,36,37,83,17,19,39,65,84,44],"\u4e0a\u8a18":[31,2,59,34,16,35,65,41,57],"\u6e2c\u5b9a":16,"&& ":34,"\u4f5c\u696d":57,MacPorts:[27,65,36],"with":[34,36,24],cache:[27,1,22,38,24,48],"\u9ad8\u5ea6":19,"\u30b7\u30a7\u30eb":16,"\u65e5\u6642":84," GeoIndex":32," sid":[27,79,65,36],IPA:9," links":[40,2]," in":[36,21,52,33,79],"\u5bfe\u8a71":[2,51],"\u7d20\u5358":65,"_equal":33," id":79,"\u30ea\u30ea\u30fc\u30b9":[36,1,18,81,85]," if":[],"\nrepository":[],"\u6295\u7a3f":84," conversion":[]," names":[]," Horikoshi":[],means:52," memories":[],"\u7279\u5225":25,"\u5c11\u306a\u3044":19,ko:21,parametor:[],"\u30c0\u30f3\u30d7":18,".ubuntu":65,"=$":57,",\n{":[25,59,41],"\u7e70\u308a\u8fd4\u3059":18,"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":[63,48,24],"= ":[35,24],"\u306e\u307f\u3057\u304b":3,"_GITHUB":57,"=/":[13,83,65],"_res":16,"\u7e70\u308a\u8fd4\u3057":[16,57],"\u5272\u308a":[8,11],"\u5f97\u308b":2,"\u3059\u308c":16,"\u4e0d\u8981":63,Re:[],"\u697d\u3057\u3044":[34,69],"_search":[36,17],"/windows":65," released":21,",\n[":68,"\u79d2\u3088\u308a":85,",\n]":34,"_CTX":36,contain:33,"\u64cd\u4f5c":[27,33,2,13,19,7,24,26],"_parse":19,"\u5b9f\u884c\u4f8b":[32,2,47,62,59,40,84,81,35,51,41,25,37,83,67],view:[27,38,53,22,13,7],"\u5236\u5fa1":19," eggs":37,"\u304b\u304e\u308a":16," markup":6,"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":18,we:[],"\u4ee3\u5165":[40,35,18,56,33],"\"float":[40,2],latin:13,"\u7cfb\u5ea7":[12,58,4],"\u884c\u6570":36,".list":65," Properties":52," the":[52,57]," delete":[],"\nBigram":16,"\u975e\u5e38":19,"\u306b\u3064\u3044\u3066":[45,66,2,68,69,70,48,24,50,25,84,58,4,5,28,40,29,7,8,78,30,54,79,76,55,56,11,77,12,33,59,13,60,53,81,71,38,75,17,63,39,64,41,43,44],"\u985e\u4f3c":[19,33,59],"\u51fa\u529b":[1,2,68,60,16,26,27,8,78,9,11,77,13,79,80,24,36,83,17,84,18,39,43,57,81],ieee:56,"\u304c\u3064\u3044":18,"(string":55," storing":[]," yappo":21," Akio":18,Minute:52," quit":13,Sending:57,"\u3084\u304c":81,"\u304c\u304a\u304c":84,"/var":13,"\u4f4d\u7f6e":[27,2,32,63,23,35,54,81,84,36,26],"\u5168\u4ef6":24,"\u4e43\u6bc5":18,job:16," only":[],"\u3053\u308c\u3089":[84,2,62,34,63,74,80,41,43,3],key:[32,2,17,62,59,40,84,68,7,70,24,71,35,16,41,67,25,37,11,47],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":16," Languages":57,"\uff12\u3064":[35,2,62],"2\u4ef6":84,"\u304a\u77e5\u3089":[27,1,18,85,36],"\u7279\u5316":57,Emergency:52," map":52,plugin:36,admin:18,"-suggest":[45,27,17,22,59,18,15,85,36,3],"/status":[14,51],":ss":52,equal:33," max":[48,64],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[36,18],"\u6728\u578b":[7,24]," forms":[],".org":[32,2,62,40,68,16,35,51,65,57],"\u88dc\u6b63":[27,73,59,3,17],"/local":65,"[pkg":36,"\u653e\u68c4":[70,24],"\u96e3\u3057\u3044":63," Gothic":9,comment:[84,2],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[13,18,80],Log:[27,52,22,36],"\u4f5c\u6210":[1,2,47,16,25,26,67,5,27,40,7,74,34,54,9,56,32,13,42,36,37,17,62,84,18,41,43],"\u6295\u7a3f\u5834\u6240":84,"\u533a\u5225":[56,67,24],DDL:34,Hex:32,"\u6b63\u3057\u304f":25,cd:57,"_add":[13,27,38,53,22],"\u3002drilldown":[62,24],"\u30af\u30ea\u30a2":36,"-libedit":18,"\u66ff\u3048\u308b":[2,62],table:[53,2,47,22,68,70,16,71,51,25,67,27,40,7,8,34,54,76,11,32,33,59,13,35,24,36,37,38,17,62,84,18,39,41,44,81]," \"_":84,"-history":36,"\u69d8\u5b50":2,"\u4ee5\u524d":[34,36,48,84],quit:[27,38,52,22,13,29],"\u30b5\u30d6\u30bb\u30c3\u30c8":56,"\u91cd\u307f\u4ed8\u3051":34,Tomoatsu:18,"\u30b9\u30ab\u30e9":11,"\u533a\u5207":[7,24]," kana":[25,59,17,41],json:[53,2,60,48,16,71,5,66,8,75,76,54,11,77,78,79,80,24,70,39,7,44]," as":57,TokenBigramIgnoreBlankSplitSymbolAlpha:34," \"s":[17,59],"}\u300d":24," Entry":[66,53,7,39,8,24,71,75,54,76,70,44,11],"\u306b\u3088\u3063":[7,2,47,68,69,70,48,24,71,58,5,28,40,53,66,8,78,75,54,79,76,11,77,32,33,13,60,61,14,80,81,62,19,39,29,44],"\u3002SET":16,define:[13,27,38,39,22],username:32,"\u65e5\u672c":[25,12,35,58,4],With:[],"\u8a08\u6e2c":[36,1,83],SJIS:21,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":36," when":[],"-cache":13,"\u58ca\u308c":[36,18,79],"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":1,"\u3068\u3064\u3044":35,"\u4fdd\u6301":50,"\u518d\u5e30":[33,75,44],"\u7a2e\u985e":[27,33,2,17,40,13,84,59,74,34,41,25,26],"\u540c\u671f":16,"\u3068\u3053\u308d":[6,84,57],"\u30c7\u30a3\u30b9\u30af":1,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[27,26,84]," favorited":84," \" ":16,"\u672a\u5b9a":7,"{\"":[79,16],"\u8a18\u3057":2," System":0," language":57,value:[7,8],"\u793a\u3059":[12,58,67,7,70,8,24,11,4],"\u793a\u3055":[8,11],"\u793a\u3057":[2,62,34,23,40,78],"\u73fe\u308c\u308b":34,"\u540c\u3058":[5,27,1,2,17,59,13,18,8,16,34,80,20,36,37,11,81],"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":[27,49,57],SHIDARA:36,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[13,2],"\u79d2\u5f62":56,"\u3072\u308d":67," zlib":[],"\u578b\u3068":62,"\u3072\u308d\u3086\u304d":67,"\u3002\n":[1,69,48,16,4,5,8,78,76,56,11,32,33,13,79,61,81,36,37,84,18,58,85]," record":[40,2,51],"/\\":2,"-debug":18,"\u9818\u57df":35,"\"se":25,You:[],avg:14," original":[68,67],"\u8fd4\u4fe1":84,"\u8aa4\u5b57":[36,18],"\u8a9e\u5f59\u8868":[7,2],"\u5ea7\u6a19\u5024":36,"\u91cd\u8981":[83,50],"\u5185\u90e8":[78,24],"\u3002\"":[34,84,59],"\u3002#":[36,18],"\u578b\u304b":56,"-deafult":36,"\u3002.":57,".db":[13,2,8,11,51],"\u3002(":[16,33,13,70,7,69,24,51],"\u3002)":[24,16]," replied":84,"\u6c42\u3081\u308b":58," Video":32,"\u91cd\u8996":34,"\u6ce8\u610f":[34,36,16],"\u300cbilliard":69,"-learner":[18,3,15]," need":[]," PORT":51,"\u30ad\u30fc\u30ef\u30fc\u30c9":[27,1,34,84,69,85,20,3],"| _":35,"\u518d\u5ea6":33,http:[32,2,62,13,68,14,16,40,35,80,51,57],"/\n":[18,57],"\u3002C":6,"\u3002N":34,"]\"":[84,35],"_FOR":33," Ocelot":[27,65,36],"_MAX":64,v1:33,"\u306b\u3088\u308a":[31,67,34,63,35,51,79],"\u306b\u3088\u308b":[67,27,51,26,36],"\u672c\u4f53":43,pdf:[9,43],"\u304a\u304b\u3057\u304f":18,"\u3002_":74,EOF:13,"\u300d\u300c":84," local":68," DB":[80,2,51]," body":[34,76,44,54,47],"\u5168\u6587\u691c":[27,18,2,26],"\uff01\"":84,"\u540d\u4e00":8,"/groonga":[6,18,13,51,65,36,57]," ID":52,":\"":[19,2],"/$":57,"/\"":[32,2,62,40,68,35,51],"\u66f8\u304d\u8fbc\u3080":16,"\u304a\u3063\u3055\u3093":84,command:[13,80,51,81],"\u4e00\u81f4\u7528":[],"_POSITION":[2,47,34,84,54,37],lcov:83," translation":57,"\u8868\u793a":[27,1,2,62,32,13,79,81,18,8,16,78,26,34,35,51,36,11,40],"\ndo":16," obj":79,"_SECTION":[84,37,54],less:33,"\u3042\u304d":67,"\u3001(":16,"\u3002'":[2,24],"\u5229\u7528":[2,68,69,16,51,25,26,27,34,56,57,23,59,13,35,80,24,36,83,63,65,41]," yum":65,gettext:57,".mo\u30d5\u30a1\u30a4\u30eb":57,"\u5fd8\u308c":36,"\u3002Point":[12,4],"\u9806\u5e8f":[34,24,7,8,11]," \u6642":84,web:[59,17,41],UNSPLIT:33," Fumiyasu":36,listen:13,"\u3042\u3063":[32,2,17,81,70,16,74,57],"\u958b\u59cb":[83,36,24,16],"\u3002 ":[12,23,41,85,18,58,24,59,16,36,25,57,4],"\u3042\u3068":57,"\u3055\u3093":[36,18,3,85,57],"\u306b\u3059":34,RLIMIT:52,"\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":13,"\u3055\u3089":[27,63],qwik:68,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":13,"\u30e6\u30fc\u30b6":[33,47,59,19,7,16,54,41,25,56,3],match:[27,69,2,47,34,84,18,39,24,37,26,52],"\u5f8c\u7d99":[27,63],ctrl:[2,51],RedHat:36,"\u3069\u306e":[40,23,59],"\nPREFIX":33,"|http":16,"\u3089\u308c\u308b":[33,69],"\u756a\u53f7":[16,2,13,14,24,51,74],"\u59cb\u307e\u3063":3,"\u5b89\u5b9a":[79,81],"'pid":13,"\nimplementation":[],"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":36,Release:[]," tracker":0," store":[],tvsec:78,"\u9593\u9055\u3063":[36,3,59],Poedit:57,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":83,"\"MySQL":3,"\u8aad\u307f\u8fbc\u307f":[36,2],CentOS:[27,18,65,36],"\u6574\u5408":1,"\u4f4f\u3093":84,"\u672c\u8cea":16,"\u30c6\u30fc\u30d6\u30eb\u30ed\u30c3\u30af":63,Warning:52,"\u5ea6\u5206":56,"\u6d0b\u723e":36,Sphinx:[6,9,43,82,57],"\u3068\u3044\u3063":35,"_threshold":[17,59,18,24,41,25,36],"\u4e0b\u8a18":[78,79,33,81],"\u306a\u304b\u3063":[5,53,13,60,7,39,48,16,71,34,75,54,81,76,44,77],")/":[],"\u3002\u3064\u307e\u308a":51,sequence:[25,59,17,41],OPTIONS:15,").":[],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30b5\u30fc\u30d3\u30b9":51,"-host":16,Quiz:32," candidate2":17,"\u4e0d\u4e00\u81f4\u6761\u4ef6":[]," candidate1":17," unpatched":21,"\u5727\u7e2e":36," TABLE":[32,2,47,62,34,84,68,7,40,37,67],"\u30b3\u30e1\u30f3\u30c8":[13,84,18,16],"_CALL":33,"_sortby":[39,62,24],"\u5411\u3051":[27,43,33,42],"\u4e0d\u6b63\u78ba":78,"_PAT":[32,2,47,34,84,68,7,8,37,67]," old":[],LANGUAGE:57,"\u7121\u9650":18,"\u96e2\u308c":35,"/hoge":13,"\u5f62\u5f0f":[1,66,2,22,68,58,70,16,71,4,5,27,53,7,8,78,30,54,79,76,55,56,11,77,12,33,13,60,14,35,80,24,36,37,75,17,19,39,64,44],"\u30dc\u30bf\u30f3":57,MinGW:36," mail":16,"\u5411\u3044":63,"\nmsec":[],"#{L":52,",\"domain":62,"\u53d6\u308a\u9664\u304d":33," Bool":67,"\u3002-":[84,80],"\u30d0\u30b0":36,"\u3057\u3064\u3064":83,"\u3042\u308c":[34,56,16],"\u30c7\u30d0\u30c3\u30ac":83,"-h":13,"\u3042\u308a":[0,2,69,70,49,51,25,3,5,28,40,29,7,8,74,78,54,57,31,33,59,34,35,80,16,36,37,83,84,17,63,24,6,65,73,43,81],"\u3042\u308b":[66,2,67,32,68,23,70,48,16,71,25,58,4,5,28,29,7,8,78,30,54,79,76,55,56,11,57,12,33,59,34,60,14,77,53,35,80,24,36,37,75,17,63,18,39,64,84,44,81],"\u7acb\u3061\u4e0a\u304c\u3063":16,host:16," \u6c11":69,offset:[39,62,2,17,24],"\u306e\u3044\u305a\u308c\u304b":[12,58,4],"_query":[25,59,17,41],"\u6319\u52d5":[27,69,13,18,24,34],"\u9055\u3063":25," grn":[],hana:32,"\u30c0\u30e1\u30fc\u30b8":34,"\u6f0f\u308c":19,"\u305d\u308c\u305e\u308c":[33,47,62,13,63,69,58,24,34,35,80,65,84,37,83],"\u5358\u72ec":16,column:[1,2,47,22,16,25,67,27,40,7,54,76,11,32,33,59,13,36,37,38,84,17,62,19,18,41,44],universe:65,"\u5206z":56,"\u30b7\u30fc\u30b1\u30f3\u30b9":[25,59,41],Kenichi:[36,18],"|KEY":[2,47,34,84,7,8,37,67],tomo:32,".html":[13,57],"\u3055\u3044":[2,17,34,16,40,80,65,83,57],"\u9055\u3046":18,SATOH:36," Ueno":[18,85],"\u610f\u5473":[33,2,17,13,16,35,25],"_NUMBER":51,"!!":[32,84],"! ":33,"!\"":[40,32,2,51,84]," faster":[],"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":16," period":[36,21],"\u30c6\u30fc\u30d6\u30eb":[1,7,2,47,68,70,24,50,26,67,27,40,53,66,8,74,34,75,54,76,56,11,32,33,13,79,36,37,71,17,62,84,18,39,44]," patch":21,"\u3053\u3061\u3089":57," Shops":69,"\u4e26\u3073":[69,2,62],"<log":13," haystack":33,"\u85a6\u3081":51,"\u8907\u6570":[1,2,69,16,50,26,27,40,7,8,54,11,32,33,34,80,24,36,37,17,62,63,18,84],friends:32,"_remove":[27,38,22,13,76,44],"\u95b2\u89a7":51,development:43,"\u30ed\u30b0":[5,1,59,13,60,16,85,36,77],"\u5c55\u958b":65," event":[25,59,17,41],"var":[13,33,65,11],"\u901f\u5ea6":[32,2,16,36]," query":[17,52],Execution:17,"\u89a7\u4e0b":83,"\n\uff08":18,"-pid":[13,36]," from":21,"\u304c\u3068\u3046":84,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[5,81,16],"\u4f55\u4ef6":2,"\u5408\u8a08":[34,79,16],"\u73fe\u5728":[5,2,84,23,14,48,16,50,30],"\u3068\u3068":[6,57],"\u3068\u3069":73," +":[56,80,24],"\u53d7\u3051\u4ed8\u3051\u308b":51,"\u30fb\u5168":[39,24],truncation:36,"_term":21,enginen:25," Takashi":36,"\u74b0\u5883":[63,16,65,36,43,83]," object":[]," wheezy":[27,65,36],"\u3068\u3053\u306e":25,"\u3068\u3057":[32,33,59,13,19,14,16,41,25,37,56,3],"{TIME":52,"\nsize":[],"\u3068\u3048":[7,2,47,63,69,35,81],"\u3002iptables":51,limit:[32,2,17,62,39,24,36,52],MyISAM:63,"\u3068\u304d":[32,1,33,17,59,13,61,18,69,40,51,36,25,3,11,41],"-disable":[36,18]," pull":57,"\u611f\u8b1d":[36,1,18,85],bigram:[7,69],links:[40,2,62],"\u30fb\u81ea\u5df1\u7d39":84,"\u4e2d\u91ce":84,pid:[13,1],"\u8a08\u7b97":[1,58,59,63,23,35,41,25,55,56],"\u69d8\u3005":[33,2,19,35,43,83],"-config":[13,36,1,18],saer:[17,59],"\u4f7f\u3044\u5206\u3051":[34,69],"\"\u307e\u308d\u3086\u304d":67,"8bit":56,"\u521d\u56de":57," suggestion":15,"\u3002LD":65,NULL:33,DESCTIPION:15,"\u305f\u3060\u3057":[1,13,69,74,80,36],"\u591a\u304f":[2,40,13,19,24,34,63,36],"\u7570\u306a\u308a":24,"\u30a2\u30ed\u30b1\u30fc\u30c8":78,"\u52a0\u3048":[40,33,67],detail:16,"\u3068\u308a":[80,83,24]," Narwhal":[27,65,36],"_COLUMN":18,"\u4fc2\u6570":33,Pikonyan:32,"-help":13,"\u3068\u3082":[63,35,16,84],"{\n":33,"-analyzer":36,out:16," developer":84,"'abc":7," \u2026":51,":\u5206":84,"\u8ab2\u984c":0,Oneiric:[27,65,36],"\"GROONGA":[40,2],".location":84,"/sources":65,"\u7591\u4f3c":[27,22,7,70,74,64],"\u65b0\u3057\u3044":[13,36,43,3,57]," MODE":21,"\u65b0\u3057\u304f":[2,81],"\u307b\u3069":[13,2,17],"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":18," has":[21,52,15],"\u3002mroonga":63," available":21," tags":32,"\u30c7\u30fc\u30e2\u30f3":[13,1,51],SQL:63,"\u6027\u80fd":63,Site:[40,2,62],"{\\":70," #{":52,"-max":[13,36],status:[27,1,2,22,13,18,38,16,78,51],you:57,"\u307b\u304b":84,"\u2026\uff09":59,"-supported":[]," advanced":21,rep:16,"\u30d6\u30ed\u30fc\u30c9\u30a6\u30a7\u30a4":84},objtypes:{"0":"std:option"},titles:["1. \u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","4.1. \u57fa\u672c\u7684\u306a\u64cd\u4f5c","5.1. \u306f\u3058\u3081\u306b","7.6.3. geo_in_circle","7.2.15. log_reopen","3.1. C API","7.2.21. table_create","7.2.22. table_list","2.2. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u4f5c\u6210","8. \u4ed5\u69d8","7.2.6. column_list","7.6.4. geo_in_rectangle","7.1.3. groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","7.1.1. grnslap","7.1.5. groonga-suggest-create-dataset","7.1.2. grntest","7.2.20. suggest","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","7.5. grn_expr","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","News in Senna period","7. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb","6. \u4f4d\u7f6e\u60c5\u5831\u691c\u7d22","7.2.17. select","5.3. \u88dc\u5b8c","4. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","7.2.18. shutdown","7.2.16. quit","7.6.5. now","9. \u5236\u9650\u4e8b\u9805","4.6. \u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d","2.3. \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","4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6\u306e\u6307\u5b9a","\u304a\u77e5\u3089\u305b","4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf","7.2. \u30b3\u30de\u30f3\u30c9","7.2.8. define_selector","4.3. \u3055\u307e\u3056\u307e\u306a\u7a2e\u985e\u3092\u3082\u3063\u305f\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58","5.5. \u63d0\u6848","2. groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","11. groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","7.2.23. table_remove","7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","5.2. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","4.11. \u30af\u30a8\u30ea\u62e1\u5f35","7.2.2. cache_limit","3. \u30b3\u30df\u30e5\u30cb\u30c6\u30a3","4.9. \u5168\u6587\u691c\u7d22\u306e\u8a9e\u5f59\u8868\u306b\u5bfe\u3059\u308b\u8ffd\u52a0\u60c5\u5831","4.2. \u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u3092\u901a\u3058\u305f\u5229\u7528","7.7. Log","7.2.24. view_add","7.2.5. column_create","7.6.1. edit_distance","7.3. \u30c7\u30fc\u30bf\u578b","3.2. \u56fd\u969b\u5316","7.6.2. geo_distance","5.4. \u88dc\u6b63","7.2.13. log_level","2.1. groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3","1. groonga\u306e\u7279\u5fb4","7.6.6. rand","2. \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb","7.2.9. defrag","4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22","7.2.11. dump","8.1. \u691c\u7d22","7.2.12. load","7.2.10. delete","7.6. \u7d44\u307f\u8fbc\u307f\u95a2\u6570\u4e00\u89a7","5. \u30b5\u30b8\u30a7\u30b9\u30c8","7.4. \u7591\u4f3c\u30ab\u30e9\u30e0 (pseudo_column)","7.2.4. clearlock","7.2.7. column_remove","7.2.14. log_put","7.2.19. status","7.2.3. check","7.1.4. groonga HTTP\u30b5\u30fc\u30d3\u30b9","7.2.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","3. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","2.5. \u30c6\u30b9\u30c8\u65b9\u6cd5","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b"],objnames:{"0":"option"},filenames:["contribution/report","news/0.x","tutorial/introduction","suggest/introduction","functions/geo_in_circle","commands/log_reopen","contribution/documentation/c-api","commands/table_create","commands/table_list","contribution/development/document","spec","commands/column_list","functions/geo_in_rectangle","executables/groonga","executables/grnslap","executables/groonga-suggest-create-dataset","executables/grntest","commands/suggest","news/1.0.x","expr","troubleshooting","news/senna","reference","geolocation_search","commands/select","suggest/completion","tutorial","index","commands/shutdown","commands/quit","functions/now","limitations","tutorial/index","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","tutorial/search","news","tutorial/match_columns","commands","commands/define_selector","tutorial/data","suggest/suggestion","contribution/development","contribution","commands/table_remove","executables","suggest/tutorial","tutorial/query_expansion","commands/cache_limit","community","tutorial/lexicon","tutorial/network","log","commands/view_add","commands/column_create","functions/edit_distance","type","contribution/documentation/i18n","functions/geo_distance","suggest/correction","commands/log_level","contribution/development/com","tutorial/drilldown","characteristic","functions/rand","install","commands/defrag","tutorial/patricia_trie","commands/dump","spec/search","commands/load","commands/delete","functions","suggest","pseudo_column","commands/clearlock","commands/column_remove","commands/log_put","commands/status","commands/check","executables/groonga-http","command_version","contribution/documentation","contribution/development/test","tutorial/micro_blog","news/1.1.x"]})
|