rroonga 5.1.1-x86-mingw32 → 6.0.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +2 -1
- data/bin/grndump +9 -0
- data/doc/text/cross-compile.md +72 -0
- data/doc/text/install.md +121 -0
- data/doc/text/news.md +1451 -0
- data/doc/text/release.md +135 -0
- data/doc/text/tutorial.md +402 -0
- data/ext/groonga/rb-grn-column.c +54 -24
- data/ext/groonga/rb-grn-config.c +131 -10
- data/ext/groonga/rb-grn-context.c +0 -10
- data/ext/groonga/rb-grn-encoding.c +0 -2
- data/ext/groonga/rb-grn-expression.c +63 -3
- data/ext/groonga/rb-grn-index.c +34 -0
- data/ext/groonga/rb-grn-object.c +10 -10
- data/ext/groonga/rb-grn-operator.c +7 -0
- data/ext/groonga/rb-grn-plugin.c +39 -0
- data/ext/groonga/rb-grn-utils.c +5 -65
- data/ext/groonga/rb-grn.h +9 -9
- data/ext/groonga/rb-groonga.c +31 -1
- data/lib/2.1/groonga.so +0 -0
- data/lib/2.2/groonga.so +0 -0
- data/lib/2.3/groonga.so +0 -0
- data/lib/groonga.rb +1 -0
- data/lib/groonga/column.rb +13 -0
- data/lib/groonga/dumper.rb +3 -1
- data/lib/groonga/expression-builder.rb +66 -18
- data/lib/groonga/{expression-builder-19.rb → index.rb} +11 -19
- data/lib/groonga/record.rb +1 -1
- data/lib/rroonga.rb +16 -0
- data/rroonga-build.rb +6 -6
- data/rroonga.gemspec +1 -1
- data/test/groonga-test-utils.rb +0 -8
- data/test/test-column.rb +107 -1
- data/test/test-config.rb +18 -0
- data/test/test-database.rb +0 -2
- data/test/test-error-message.rb +20 -0
- data/test/test-expression-builder.rb +172 -29
- data/test/test-plugin.rb +25 -1
- data/test/test-table-dumper.rb +35 -6
- data/test/test-table-select.rb +0 -1
- data/vendor/local/bin/grndb.exe +0 -0
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-2.dll +0 -0
- data/vendor/local/bin/libmsgpack-4.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/libonig-5.dll +0 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/lz4.exe +0 -0
- data/vendor/local/bin/lz4c.exe +0 -0
- data/vendor/local/bin/lz4cat +0 -0
- data/vendor/local/bin/mecab-config +5 -5
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/onig-config +1 -1
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
- data/vendor/local/include/groonga/groonga.h +16 -11
- data/vendor/local/include/groonga/groonga/array.h +76 -0
- data/vendor/local/include/groonga/groonga/command.h +3 -5
- data/vendor/local/include/groonga/groonga/config.h +65 -0
- data/vendor/local/include/groonga/groonga/dat.h +100 -0
- data/vendor/local/include/groonga/groonga/dump.h +34 -0
- data/vendor/local/include/groonga/groonga/expr.h +21 -16
- data/vendor/local/include/groonga/groonga/file_reader.h +2 -5
- data/vendor/local/include/groonga/groonga/geo.h +2 -5
- data/vendor/local/include/groonga/groonga/groonga.h +28 -270
- data/vendor/local/include/groonga/groonga/hash.h +89 -0
- data/vendor/local/include/groonga/groonga/ii.h +3 -5
- data/vendor/local/include/groonga/groonga/nfkc.h +4 -5
- data/vendor/local/include/groonga/groonga/normalizer.h +3 -5
- data/vendor/local/include/groonga/groonga/obj.h +7 -5
- data/vendor/local/include/groonga/groonga/output.h +3 -5
- data/vendor/local/include/groonga/groonga/pat.h +102 -0
- data/vendor/local/include/groonga/groonga/plugin.h +29 -12
- data/vendor/local/include/groonga/groonga/portability.h +3 -5
- data/vendor/local/include/groonga/groonga/request_canceler.h +2 -5
- data/vendor/local/include/groonga/groonga/scorer.h +3 -5
- data/vendor/local/include/groonga/groonga/thread.h +2 -5
- data/vendor/local/include/groonga/groonga/token.h +5 -6
- data/vendor/local/include/groonga/groonga/token_filter.h +3 -5
- data/vendor/local/include/groonga/groonga/tokenizer.h +3 -5
- data/vendor/local/include/groonga/groonga/type.h +31 -0
- data/vendor/local/include/groonga/groonga/util.h +3 -5
- data/vendor/local/include/groonga/groonga/windows.h +2 -5
- data/vendor/local/include/groonga/groonga/windows_event_logger.h +2 -5
- data/vendor/local/include/mecab.h +1336 -96
- data/vendor/local/include/msgpack.h +3 -11
- data/vendor/local/include/msgpack.hpp +4 -11
- data/vendor/local/include/msgpack/adaptor/adaptor_base.hpp +84 -0
- data/vendor/local/include/msgpack/adaptor/array_ref.hpp +174 -0
- data/vendor/local/include/msgpack/adaptor/bool.hpp +41 -33
- data/vendor/local/include/msgpack/adaptor/boost/fusion.hpp +160 -0
- data/vendor/local/include/msgpack/adaptor/boost/msgpack_variant.hpp +430 -0
- data/vendor/local/include/msgpack/adaptor/boost/optional.hpp +96 -0
- data/vendor/local/include/msgpack/adaptor/boost/string_ref.hpp +87 -0
- data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +132 -53
- data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +18 -12
- data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +106 -44
- data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +59 -54
- data/vendor/local/include/msgpack/adaptor/cpp11/array_unsigned_char.hpp +89 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +65 -46
- data/vendor/local/include/msgpack/adaptor/cpp11/reference_wrapper.hpp +68 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/shared_ptr.hpp +82 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +88 -64
- data/vendor/local/include/msgpack/adaptor/cpp11/unique_ptr.hpp +82 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +151 -111
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +142 -104
- data/vendor/local/include/msgpack/adaptor/define.hpp +15 -13
- data/vendor/local/include/msgpack/adaptor/deque.hpp +78 -53
- data/vendor/local/include/msgpack/adaptor/detail/{cpp03_define.hpp → cpp03_define_array.hpp} +225 -210
- data/vendor/local/include/msgpack/adaptor/detail/cpp03_define_map.hpp +2791 -0
- data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp +3070 -3079
- data/vendor/local/include/msgpack/adaptor/detail/{cpp11_define.hpp → cpp11_define_array.hpp} +71 -62
- data/vendor/local/include/msgpack/adaptor/detail/cpp11_define_map.hpp +163 -0
- data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp +105 -42
- data/vendor/local/include/msgpack/adaptor/ext.hpp +237 -0
- data/vendor/local/include/msgpack/adaptor/fixint.hpp +178 -92
- data/vendor/local/include/msgpack/adaptor/float.hpp +87 -69
- data/vendor/local/include/msgpack/adaptor/int.hpp +243 -123
- data/vendor/local/include/msgpack/adaptor/list.hpp +76 -53
- data/vendor/local/include/msgpack/adaptor/map.hpp +244 -157
- data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +3 -11
- data/vendor/local/include/msgpack/adaptor/nil.hpp +45 -29
- data/vendor/local/include/msgpack/adaptor/pair.hpp +58 -38
- data/vendor/local/include/msgpack/adaptor/raw.hpp +47 -39
- data/vendor/local/include/msgpack/adaptor/set.hpp +156 -102
- data/vendor/local/include/msgpack/adaptor/string.hpp +58 -50
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +120 -113
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +114 -106
- data/vendor/local/include/msgpack/adaptor/v4raw.hpp +106 -0
- data/vendor/local/include/msgpack/adaptor/vector.hpp +94 -60
- data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +59 -51
- data/vendor/local/include/msgpack/adaptor/vector_char.hpp +62 -54
- data/vendor/local/include/msgpack/adaptor/vector_unsigned_char.hpp +89 -0
- data/vendor/local/include/msgpack/cpp_config.hpp +37 -22
- data/vendor/local/include/msgpack/detail/cpp03_zone.hpp +17 -11
- data/vendor/local/include/msgpack/detail/cpp11_zone.hpp +19 -19
- data/vendor/local/include/msgpack/fbuffer.h +3 -11
- data/vendor/local/include/msgpack/fbuffer.hpp +7 -11
- data/vendor/local/include/msgpack/gcc_atomic.h +3 -11
- data/vendor/local/include/msgpack/iterator.hpp +9 -13
- data/vendor/local/include/msgpack/meta.hpp +51 -0
- data/vendor/local/include/msgpack/object.h +3 -11
- data/vendor/local/include/msgpack/object.hpp +390 -290
- data/vendor/local/include/msgpack/object_fwd.hpp +57 -44
- data/vendor/local/include/msgpack/pack.h +6 -12
- data/vendor/local/include/msgpack/pack.hpp +58 -30
- data/vendor/local/include/msgpack/pack_define.h +3 -11
- data/vendor/local/include/msgpack/pack_template.h +35 -15
- data/vendor/local/include/msgpack/predef.h +19 -0
- data/vendor/local/include/msgpack/predef/architecture.h +30 -0
- data/vendor/local/include/msgpack/predef/architecture/alpha.h +60 -0
- data/vendor/local/include/msgpack/predef/architecture/arm.h +71 -0
- data/vendor/local/include/msgpack/predef/architecture/blackfin.h +47 -0
- data/vendor/local/include/msgpack/predef/architecture/convex.h +67 -0
- data/vendor/local/include/msgpack/predef/architecture/ia64.h +49 -0
- data/vendor/local/include/msgpack/predef/architecture/m68k.h +83 -0
- data/vendor/local/include/msgpack/predef/architecture/mips.h +74 -0
- data/vendor/local/include/msgpack/predef/architecture/parisc.h +65 -0
- data/vendor/local/include/msgpack/predef/architecture/ppc.h +73 -0
- data/vendor/local/include/msgpack/predef/architecture/pyramid.h +43 -0
- data/vendor/local/include/msgpack/predef/architecture/rs6k.h +56 -0
- data/vendor/local/include/msgpack/predef/architecture/sparc.h +55 -0
- data/vendor/local/include/msgpack/predef/architecture/superh.h +68 -0
- data/vendor/local/include/msgpack/predef/architecture/sys370.h +44 -0
- data/vendor/local/include/msgpack/predef/architecture/sys390.h +44 -0
- data/vendor/local/include/msgpack/predef/architecture/x86.h +38 -0
- data/vendor/local/include/msgpack/predef/architecture/x86/32.h +87 -0
- data/vendor/local/include/msgpack/predef/architecture/x86/64.h +50 -0
- data/vendor/local/include/msgpack/predef/architecture/z.h +43 -0
- data/vendor/local/include/msgpack/predef/compiler.h +41 -0
- data/vendor/local/include/msgpack/predef/compiler/borland.h +64 -0
- data/vendor/local/include/msgpack/predef/compiler/clang.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/comeau.h +62 -0
- data/vendor/local/include/msgpack/predef/compiler/compaq.h +67 -0
- data/vendor/local/include/msgpack/predef/compiler/diab.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/digitalmars.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/dignus.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/edg.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/ekopath.h +58 -0
- data/vendor/local/include/msgpack/predef/compiler/gcc.h +69 -0
- data/vendor/local/include/msgpack/predef/compiler/gcc_xml.h +53 -0
- data/vendor/local/include/msgpack/predef/compiler/greenhills.h +67 -0
- data/vendor/local/include/msgpack/predef/compiler/hp_acc.h +62 -0
- data/vendor/local/include/msgpack/predef/compiler/iar.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/ibm.h +73 -0
- data/vendor/local/include/msgpack/predef/compiler/intel.h +66 -0
- data/vendor/local/include/msgpack/predef/compiler/kai.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/llvm.h +58 -0
- data/vendor/local/include/msgpack/predef/compiler/metaware.h +54 -0
- data/vendor/local/include/msgpack/predef/compiler/metrowerks.h +78 -0
- data/vendor/local/include/msgpack/predef/compiler/microtec.h +54 -0
- data/vendor/local/include/msgpack/predef/compiler/mpw.h +64 -0
- data/vendor/local/include/msgpack/predef/compiler/palm.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/pgi.h +61 -0
- data/vendor/local/include/msgpack/predef/compiler/sgi_mipspro.h +67 -0
- data/vendor/local/include/msgpack/predef/compiler/sunpro.h +67 -0
- data/vendor/local/include/msgpack/predef/compiler/tendra.h +54 -0
- data/vendor/local/include/msgpack/predef/compiler/visualc.h +92 -0
- data/vendor/local/include/msgpack/predef/compiler/watcom.h +57 -0
- data/vendor/local/include/msgpack/predef/detail/_cassert.h +17 -0
- data/vendor/local/include/msgpack/predef/detail/_exception.h +15 -0
- data/vendor/local/include/msgpack/predef/detail/comp_detected.h +10 -0
- data/vendor/local/include/msgpack/predef/detail/endian_compat.h +26 -0
- data/vendor/local/include/msgpack/predef/detail/os_detected.h +10 -0
- data/vendor/local/include/msgpack/predef/detail/platform_detected.h +10 -0
- data/vendor/local/include/msgpack/predef/detail/test.h +17 -0
- data/vendor/local/include/msgpack/predef/language.h +15 -0
- data/vendor/local/include/msgpack/predef/language/objc.h +43 -0
- data/vendor/local/include/msgpack/predef/language/stdc.h +54 -0
- data/vendor/local/include/msgpack/predef/language/stdcpp.h +124 -0
- data/vendor/local/include/msgpack/predef/library.h +14 -0
- data/vendor/local/include/msgpack/predef/library/c.h +18 -0
- data/vendor/local/include/msgpack/predef/library/c/_prefix.h +13 -0
- data/vendor/local/include/msgpack/predef/library/c/gnu.h +62 -0
- data/vendor/local/include/msgpack/predef/library/c/uc.h +48 -0
- data/vendor/local/include/msgpack/predef/library/c/vms.h +48 -0
- data/vendor/local/include/msgpack/predef/library/c/zos.h +57 -0
- data/vendor/local/include/msgpack/predef/library/std.h +23 -0
- data/vendor/local/include/msgpack/predef/library/std/_prefix.h +23 -0
- data/vendor/local/include/msgpack/predef/library/std/cxx.h +47 -0
- data/vendor/local/include/msgpack/predef/library/std/dinkumware.h +53 -0
- data/vendor/local/include/msgpack/predef/library/std/libcomo.h +48 -0
- data/vendor/local/include/msgpack/predef/library/std/modena.h +46 -0
- data/vendor/local/include/msgpack/predef/library/std/msl.h +54 -0
- data/vendor/local/include/msgpack/predef/library/std/roguewave.h +57 -0
- data/vendor/local/include/msgpack/predef/library/std/sgi.h +52 -0
- data/vendor/local/include/msgpack/predef/library/std/stdcpp3.h +54 -0
- data/vendor/local/include/msgpack/predef/library/std/stlport.h +60 -0
- data/vendor/local/include/msgpack/predef/library/std/vacpp.h +45 -0
- data/vendor/local/include/msgpack/predef/make.h +89 -0
- data/vendor/local/include/msgpack/predef/os.h +31 -0
- data/vendor/local/include/msgpack/predef/os/aix.h +67 -0
- data/vendor/local/include/msgpack/predef/os/amigaos.h +47 -0
- data/vendor/local/include/msgpack/predef/os/android.h +46 -0
- data/vendor/local/include/msgpack/predef/os/beos.h +46 -0
- data/vendor/local/include/msgpack/predef/os/bsd.h +95 -0
- data/vendor/local/include/msgpack/predef/os/bsd/bsdi.h +48 -0
- data/vendor/local/include/msgpack/predef/os/bsd/dragonfly.h +50 -0
- data/vendor/local/include/msgpack/predef/os/bsd/free.h +60 -0
- data/vendor/local/include/msgpack/predef/os/bsd/net.h +84 -0
- data/vendor/local/include/msgpack/predef/os/bsd/open.h +171 -0
- data/vendor/local/include/msgpack/predef/os/cygwin.h +46 -0
- data/vendor/local/include/msgpack/predef/os/haiku.h +47 -0
- data/vendor/local/include/msgpack/predef/os/hpux.h +48 -0
- data/vendor/local/include/msgpack/predef/os/ios.h +51 -0
- data/vendor/local/include/msgpack/predef/os/irix.h +47 -0
- data/vendor/local/include/msgpack/predef/os/linux.h +47 -0
- data/vendor/local/include/msgpack/predef/os/macos.h +66 -0
- data/vendor/local/include/msgpack/predef/os/os400.h +46 -0
- data/vendor/local/include/msgpack/predef/os/qnxnto.h +60 -0
- data/vendor/local/include/msgpack/predef/os/solaris.h +47 -0
- data/vendor/local/include/msgpack/predef/os/unix.h +76 -0
- data/vendor/local/include/msgpack/predef/os/vms.h +53 -0
- data/vendor/local/include/msgpack/predef/os/windows.h +51 -0
- data/vendor/local/include/msgpack/predef/other.h +14 -0
- data/vendor/local/include/msgpack/predef/other/endian.h +205 -0
- data/vendor/local/include/msgpack/predef/platform.h +19 -0
- data/vendor/local/include/msgpack/predef/platform/mingw.h +70 -0
- data/vendor/local/include/msgpack/predef/platform/windows_desktop.h +44 -0
- data/vendor/local/include/msgpack/predef/platform/windows_phone.h +42 -0
- data/vendor/local/include/msgpack/predef/platform/windows_runtime.h +44 -0
- data/vendor/local/include/msgpack/predef/platform/windows_store.h +42 -0
- data/vendor/local/include/msgpack/predef/version.h +15 -0
- data/vendor/local/include/msgpack/predef/version_number.h +54 -0
- data/vendor/local/include/msgpack/preprocessor.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/add.hpp +51 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/dec.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/detail/div_base.hpp +61 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/div.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/inc.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/mod.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/mul.hpp +53 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/sub.hpp +50 -0
- data/vendor/local/include/msgpack/preprocessor/array.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/array/data.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/array/detail/get_data.hpp +55 -0
- data/vendor/local/include/msgpack/preprocessor/array/elem.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/array/enum.hpp +33 -0
- data/vendor/local/include/msgpack/preprocessor/array/insert.hpp +55 -0
- data/vendor/local/include/msgpack/preprocessor/array/pop_back.hpp +37 -0
- data/vendor/local/include/msgpack/preprocessor/array/pop_front.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/array/push_back.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/array/push_front.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/array/remove.hpp +54 -0
- data/vendor/local/include/msgpack/preprocessor/array/replace.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/array/reverse.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/array/size.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/array/to_list.hpp +47 -0
- data/vendor/local/include/msgpack/preprocessor/array/to_seq.hpp +46 -0
- data/vendor/local/include/msgpack/preprocessor/array/to_tuple.hpp +33 -0
- data/vendor/local/include/msgpack/preprocessor/assert_msg.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/cat.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/comma.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/comma_if.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/comparison.hpp +24 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/equal.hpp +34 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/greater.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/greater_equal.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/less.hpp +46 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/less_equal.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/not_equal.hpp +814 -0
- data/vendor/local/include/msgpack/preprocessor/config/config.hpp +101 -0
- data/vendor/local/include/msgpack/preprocessor/config/limits.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/control.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/control/deduce_d.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/control/detail/dmc/while.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/control/detail/edg/while.hpp +534 -0
- data/vendor/local/include/msgpack/preprocessor/control/detail/msvc/while.hpp +277 -0
- data/vendor/local/include/msgpack/preprocessor/control/detail/while.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/control/expr_if.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/control/expr_iif.hpp +31 -0
- data/vendor/local/include/msgpack/preprocessor/control/if.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/control/iif.hpp +34 -0
- data/vendor/local/include/msgpack/preprocessor/control/while.hpp +312 -0
- data/vendor/local/include/msgpack/preprocessor/debug.hpp +18 -0
- data/vendor/local/include/msgpack/preprocessor/debug/assert.hpp +44 -0
- data/vendor/local/include/msgpack/preprocessor/debug/error.hpp +33 -0
- data/vendor/local/include/msgpack/preprocessor/debug/line.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/dec.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/detail/auto_rec.hpp +293 -0
- data/vendor/local/include/msgpack/preprocessor/detail/check.hpp +48 -0
- data/vendor/local/include/msgpack/preprocessor/detail/dmc/auto_rec.hpp +286 -0
- data/vendor/local/include/msgpack/preprocessor/detail/is_binary.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/detail/is_nullary.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/detail/is_unary.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/detail/null.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/detail/split.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/empty.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_params.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_params_with_a_default.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_params_with_defaults.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_shifted.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_shifted_params.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/expand.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/expr_if.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/facilities.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/apply.hpp +34 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/detail/is_empty.hpp +55 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/empty.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/expand.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/identity.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/intercept.hpp +277 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/is_1.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/is_empty.hpp +56 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/is_empty_or_1.hpp +31 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/is_empty_variadic.hpp +57 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/overload.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/for.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/identity.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/if.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/inc.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/iterate.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/iteration.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower1.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower2.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower3.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower4.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower5.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper1.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper2.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper3.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper4.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper5.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/finish.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward1.hpp +1342 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward2.hpp +1338 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward3.hpp +1338 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward4.hpp +1338 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward5.hpp +1338 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse1.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse2.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse3.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse4.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse5.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/local.hpp +812 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/rlocal.hpp +782 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/self.hpp +21 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/start.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/iterate.hpp +82 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/local.hpp +26 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/self.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/library.hpp +36 -0
- data/vendor/local/include/msgpack/preprocessor/limits.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/list.hpp +37 -0
- data/vendor/local/include/msgpack/preprocessor/list/adt.hpp +73 -0
- data/vendor/local/include/msgpack/preprocessor/list/append.hpp +40 -0
- data/vendor/local/include/msgpack/preprocessor/list/at.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/list/cat.hpp +42 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/dmc/fold_left.hpp +279 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/edg/fold_left.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/edg/fold_right.hpp +794 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/fold_left.hpp +279 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/fold_right.hpp +277 -0
- data/vendor/local/include/msgpack/preprocessor/list/enum.hpp +41 -0
- data/vendor/local/include/msgpack/preprocessor/list/filter.hpp +54 -0
- data/vendor/local/include/msgpack/preprocessor/list/first_n.hpp +58 -0
- data/vendor/local/include/msgpack/preprocessor/list/fold_left.hpp +303 -0
- data/vendor/local/include/msgpack/preprocessor/list/fold_right.hpp +40 -0
- data/vendor/local/include/msgpack/preprocessor/list/for_each.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/list/for_each_i.hpp +65 -0
- data/vendor/local/include/msgpack/preprocessor/list/for_each_product.hpp +141 -0
- data/vendor/local/include/msgpack/preprocessor/list/rest_n.hpp +55 -0
- data/vendor/local/include/msgpack/preprocessor/list/reverse.hpp +40 -0
- data/vendor/local/include/msgpack/preprocessor/list/size.hpp +58 -0
- data/vendor/local/include/msgpack/preprocessor/list/to_array.hpp +155 -0
- data/vendor/local/include/msgpack/preprocessor/list/to_seq.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/list/to_tuple.hpp +61 -0
- data/vendor/local/include/msgpack/preprocessor/list/transform.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/logical.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/logical/and.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bitand.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bitnor.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bitor.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bitxor.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bool.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/logical/compl.hpp +36 -0
- data/vendor/local/include/msgpack/preprocessor/logical/nor.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/logical/not.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/logical/or.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/logical/xor.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/max.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/min.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/comma.hpp +21 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/comma_if.hpp +31 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/detail/is_begin_parens.hpp +48 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/is_begin_parens.hpp +51 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/paren.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/paren_if.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/remove_parens.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/repeat.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_2nd.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_3rd.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_from_to.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_from_to_2nd.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_from_to_3rd.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repetition.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/deduce_r.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/deduce_z.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/detail/dmc/for.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/detail/edg/for.hpp +534 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/detail/for.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/detail/msvc/for.hpp +277 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum.hpp +66 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_binary_params.hpp +54 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_params.hpp +41 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_params_with_a_default.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_params_with_defaults.hpp +24 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted.hpp +68 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted_binary_params.hpp +51 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted_params.hpp +44 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing.hpp +63 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing_binary_params.hpp +53 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing_params.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/for.hpp +306 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/repeat.hpp +825 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/repeat_from_to.hpp +87 -0
- data/vendor/local/include/msgpack/preprocessor/selection.hpp +18 -0
- data/vendor/local/include/msgpack/preprocessor/selection/max.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/selection/min.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/seq.hpp +44 -0
- data/vendor/local/include/msgpack/preprocessor/seq/cat.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/seq/detail/binary_transform.hpp +48 -0
- data/vendor/local/include/msgpack/preprocessor/seq/detail/split.hpp +284 -0
- data/vendor/local/include/msgpack/preprocessor/seq/elem.hpp +304 -0
- data/vendor/local/include/msgpack/preprocessor/seq/enum.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/seq/filter.hpp +54 -0
- data/vendor/local/include/msgpack/preprocessor/seq/first_n.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/seq/fold_left.hpp +1070 -0
- data/vendor/local/include/msgpack/preprocessor/seq/fold_right.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/seq/for_each.hpp +60 -0
- data/vendor/local/include/msgpack/preprocessor/seq/for_each_i.hpp +61 -0
- data/vendor/local/include/msgpack/preprocessor/seq/for_each_product.hpp +126 -0
- data/vendor/local/include/msgpack/preprocessor/seq/insert.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/seq/pop_back.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/seq/pop_front.hpp +27 -0
- data/vendor/local/include/msgpack/preprocessor/seq/push_back.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/seq/push_front.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/seq/remove.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/seq/replace.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/seq/rest_n.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/seq/reverse.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/seq/seq.hpp +44 -0
- data/vendor/local/include/msgpack/preprocessor/seq/size.hpp +547 -0
- data/vendor/local/include/msgpack/preprocessor/seq/subseq.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/seq/to_array.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/seq/to_list.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/seq/to_tuple.hpp +27 -0
- data/vendor/local/include/msgpack/preprocessor/seq/transform.hpp +48 -0
- data/vendor/local/include/msgpack/preprocessor/seq/variadic_seq_to_seq.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/slot.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/slot/counter.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/counter.hpp +269 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/def.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/shared.hpp +247 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot1.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot2.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot3.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot4.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot5.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/slot.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/stringize.hpp +33 -0
- data/vendor/local/include/msgpack/preprocessor/tuple.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/detail/is_single_return.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/eat.hpp +106 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/elem.hpp +201 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/enum.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/insert.hpp +37 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/pop_back.hpp +64 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/pop_front.hpp +65 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/push_back.hpp +31 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/push_front.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/rem.hpp +149 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/remove.hpp +64 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/replace.hpp +37 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/reverse.hpp +117 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/size.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/to_array.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/to_list.hpp +118 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/to_seq.hpp +119 -0
- data/vendor/local/include/msgpack/preprocessor/variadic.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/detail/is_single_return.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/elem.hpp +94 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/size.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/to_array.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/to_list.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/to_seq.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/to_tuple.hpp +24 -0
- data/vendor/local/include/msgpack/preprocessor/while.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/wstringize.hpp +29 -0
- data/vendor/local/include/msgpack/sbuffer.h +3 -11
- data/vendor/local/include/msgpack/sbuffer.hpp +34 -16
- data/vendor/local/include/msgpack/sysdep.h +102 -116
- data/vendor/local/include/msgpack/type.hpp +17 -0
- data/vendor/local/include/msgpack/unpack.h +3 -11
- data/vendor/local/include/msgpack/unpack.hpp +23 -47
- data/vendor/local/include/msgpack/unpack_define.h +3 -11
- data/vendor/local/include/msgpack/unpack_template.h +322 -328
- data/vendor/local/include/msgpack/util.h +3 -11
- data/vendor/local/include/msgpack/version.h +3 -11
- data/vendor/local/include/msgpack/version.hpp +3 -11
- data/vendor/local/include/msgpack/version_master.h +2 -2
- data/vendor/local/include/msgpack/versioning.hpp +27 -35
- data/vendor/local/include/msgpack/vrefbuffer.h +3 -11
- data/vendor/local/include/msgpack/vrefbuffer.hpp +7 -11
- data/vendor/local/include/msgpack/zbuffer.h +17 -25
- data/vendor/local/include/msgpack/zbuffer.hpp +9 -13
- data/vendor/local/include/msgpack/zone.h +3 -11
- data/vendor/local/include/msgpack/zone.hpp +3 -11
- data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.la +41 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.la +4 -4
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +4 -4
- data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.la +4 -4
- data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.la +4 -4
- 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 +4 -4
- data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.la +4 -4
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +4 -4
- 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 +4 -4
- data/vendor/local/lib/groonga/scripts/ruby/accessor.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +202 -90
- data/vendor/local/lib/groonga/scripts/ruby/command_line_parser.rb +156 -0
- data/vendor/local/lib/groonga/scripts/ruby/context.rb +2 -4
- data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters.rb +5 -5
- data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +2 -1
- data/vendor/local/lib/groonga/scripts/ruby/fixed_size_column.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/logger.rb +1 -3
- data/vendor/local/lib/groonga/scripts/ruby/require.rb +4 -1
- data/vendor/local/lib/groonga/scripts/ruby/scan_info.rb +3 -0
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +29 -1
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +18 -14
- data/vendor/local/lib/groonga/scripts/ruby/table.rb +8 -0
- data/vendor/local/lib/groonga/scripts/ruby/table_cursor.rb +2 -0
- data/vendor/local/lib/groonga/scripts/ruby/variable_size_column.rb +5 -0
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +4 -4
- data/vendor/local/lib/liblz4.a +0 -0
- data/vendor/local/lib/liblz4.dll +0 -0
- data/vendor/local/lib/liblz4.dll.1 +0 -0
- data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +4 -4
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.la +2 -2
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +2 -2
- data/vendor/local/lib/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libonig.la +4 -4
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
- data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
- data/vendor/local/lib/pkgconfig/msgpack.pc +2 -2
- data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
- data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
- 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/sbin/groonga-httpd-restart +1 -1
- data/vendor/local/sbin/groonga-httpd.exe +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +5 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +288 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +2 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/alias.txt +164 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_geo.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/command/command_version.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_copy.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_delete.txt +95 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_get.txt +96 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_set.txt +96 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_acquire.txt +102 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +10 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_release.txt +98 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +7 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_inspect.txt +385 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_remove.txt +140 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/reindex.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/schema.txt +627 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/configuration.txt +50 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/grndb.txt +41 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/operations/geolocation_search.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +4 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/types.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/server/memcached.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/server/package.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/pygments.css +2 -0
- data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/client.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +57 -57
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/index.html +117 -97
- data/vendor/local/share/doc/groonga/en/html/install.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +15 -15
- data/vendor/local/share/doc/groonga/en/html/install/others.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +15 -15
- data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news.html +350 -102
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +117 -97
- data/vendor/local/share/doc/groonga/en/html/reference/alias.html +447 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +40 -40
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +21 -21
- data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +61 -53
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +255 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +239 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +237 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +60 -60
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +247 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +43 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +246 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +33 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +53 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +43 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +63 -63
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +135 -135
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +43 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +43 -38
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +592 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +324 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +37 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +33 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +1188 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +187 -187
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +56 -56
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +52 -52
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +37 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +55 -55
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +178 -0
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +43 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +15 -15
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +47 -47
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +18 -18
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +40 -40
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/server/http.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/memcached.html +8 -7
- data/vendor/local/share/doc/groonga/en/html/server/package.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/spec.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +18 -18
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +18 -18
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +5 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +288 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +2 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/alias.txt +164 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_geo.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command/command_version.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_copy.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_delete.txt +95 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_get.txt +96 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_set.txt +96 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_acquire.txt +102 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +10 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_release.txt +98 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +7 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_inspect.txt +385 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_remove.txt +140 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/reindex.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/schema.txt +627 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/configuration.txt +50 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/grndb.txt +41 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/operations/geolocation_search.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +4 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/types.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/memcached.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/package.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/pygments.css +2 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/client.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +57 -57
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/index.html +116 -96
- data/vendor/local/share/doc/groonga/ja/html/install.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news.html +329 -100
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +116 -96
- data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +419 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +40 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +21 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +254 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +235 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +234 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +46 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +60 -60
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +37 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +242 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +242 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +53 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +63 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +135 -135
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +48 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +41 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +41 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +595 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +306 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +37 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +1196 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +187 -187
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +45 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +56 -56
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +52 -52
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +42 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +37 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +55 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +167 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +35 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +48 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +41 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +18 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +40 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +46 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +8 -7
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/spec.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +18 -18
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +18 -18
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +16 -16
- data/vendor/local/share/groonga/html/admin.old/index.html +1 -1
- data/vendor/local/share/groonga/html/admin.old/index.ja.html +1 -1
- data/vendor/local/share/groonga/html/admin.old/js/{jquery.flot-0.7.js → jquery.flot-0.8.3.js} +1540 -817
- data/vendor/local/share/groonga/html/admin.old/js/jquery.flot.license.txt +1 -1
- data/vendor/local/share/groonga/mruby/LEGAL +29 -29
- data/vendor/local/share/license/mruby/AUTHORS +3 -1
- data/vendor/local/share/license/mruby/MITL +1 -1
- data/vendor/local/share/license/mruby/README.md +13 -45
- data/vendor/local/share/license/msgpack/COPYING +4 -13
- data/vendor/local/share/license/msgpack/LICENSE_1_0.txt +23 -0
- data/vendor/local/share/license/msgpack/NOTICE +14 -0
- data/vendor/local/share/license/msgpack/{README → README.md} +4 -4
- data/vendor/local/share/man/ja/man1/groonga.1 +3429 -398
- data/vendor/local/share/man/man1/groonga.1 +3670 -500
- metadata +523 -89
- data/lib/2.0/groonga.so +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/libwinpthread-1.dll +0 -0
- data/vendor/local/include/groonga/groonga/conf.h +0 -42
- data/vendor/local/include/msgpack/adaptor/bool_fwd.hpp +0 -39
- data/vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp +0 -43
- data/vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp +0 -45
- data/vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp +0 -44
- data/vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp +0 -44
- data/vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp +0 -62
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp +0 -53
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp +0 -52
- data/vendor/local/include/msgpack/adaptor/deque_fwd.hpp +0 -40
- data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp +0 -4341
- data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp +0 -84
- data/vendor/local/include/msgpack/adaptor/fixint_fwd.hpp +0 -100
- data/vendor/local/include/msgpack/adaptor/float_fwd.hpp +0 -44
- data/vendor/local/include/msgpack/adaptor/int_fwd.hpp +0 -100
- data/vendor/local/include/msgpack/adaptor/list_fwd.hpp +0 -40
- data/vendor/local/include/msgpack/adaptor/map_fwd.hpp +0 -69
- data/vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp +0 -29
- data/vendor/local/include/msgpack/adaptor/nil_fwd.hpp +0 -51
- data/vendor/local/include/msgpack/adaptor/pair_fwd.hpp +0 -42
- data/vendor/local/include/msgpack/adaptor/raw_fwd.hpp +0 -50
- data/vendor/local/include/msgpack/adaptor/set_fwd.hpp +0 -52
- data/vendor/local/include/msgpack/adaptor/string_fwd.hpp +0 -42
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp +0 -75
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp +0 -75
- data/vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp +0 -40
- data/vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp +0 -42
- data/vendor/local/include/msgpack/adaptor/vector_fwd.hpp +0 -42
- data/vendor/local/include/msgpack_fwd.hpp +0 -28
- data/vendor/local/share/license/msgpack/LICENSE +0 -202
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97152b7def9730a245a4ae5412a0c98bcab42dd5
|
4
|
+
data.tar.gz: e5220e6436865276e824014ef1ea4aa7bdd8bd1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72d0ab4dca7f67896b83dfd17a243d011ba98add41b8e486c586af20f4d2f68c3f23d359a204ac0e44c58c8f1858247b4ccf067cbeffb57766cddc90eacac763
|
7
|
+
data.tar.gz: 7e800163e55e32fc09c380e3e4070f6d42e8046a065ddfd94f0a28530c9ce2cf4a21fef7cca4c2f324cb1ef07b279fa2deaae4b8f04f832aa9df5ace2e80826f
|
data/Rakefile
CHANGED
@@ -157,7 +157,7 @@ windows_architectures = [:x86, :x64]
|
|
157
157
|
|
158
158
|
namespace :build do
|
159
159
|
namespace :windows do
|
160
|
-
ruby_versions = "2.
|
160
|
+
ruby_versions = "2.1.6:2.2.2:2.3.0"
|
161
161
|
|
162
162
|
windows_architectures.each do |architecture|
|
163
163
|
desc "Build gem for Windows #{architecture}"
|
@@ -169,6 +169,7 @@ namespace :build do
|
|
169
169
|
commands = [
|
170
170
|
["git", "clone", "file://#{Dir.pwd}/.git", build_dir],
|
171
171
|
["cd", build_dir],
|
172
|
+
["gem", "install", "json"],
|
172
173
|
["bundle"],
|
173
174
|
["rake", "cross", "native", "gem", "RUBY_CC_VERSION=#{ruby_versions}"],
|
174
175
|
]
|
data/bin/grndump
CHANGED
@@ -29,6 +29,7 @@ options.dump_schema = true
|
|
29
29
|
options.dump_indexes = true
|
30
30
|
options.dump_tables = true
|
31
31
|
options.order_by = "id"
|
32
|
+
options.max_records = -1
|
32
33
|
option_parser = OptionParser.new do |parser|
|
33
34
|
parser.version = Groonga::BINDINGS_VERSION
|
34
35
|
parser.banner += " DB_PATH"
|
@@ -79,6 +80,13 @@ option_parser = OptionParser.new do |parser|
|
|
79
80
|
"(#{options.order_by})") do |type|
|
80
81
|
options.order_by = type
|
81
82
|
end
|
83
|
+
|
84
|
+
parser.on("--max-records=NUMBER", Integer,
|
85
|
+
"max NUMBER of records to dump.",
|
86
|
+
"you can use -1 to dump all records.",
|
87
|
+
"(#{options.max_records})") do |number|
|
88
|
+
options.max_records = number
|
89
|
+
end
|
82
90
|
end
|
83
91
|
args = option_parser.parse!(ARGV)
|
84
92
|
|
@@ -99,6 +107,7 @@ dumper_options = {
|
|
99
107
|
:tables => options.tables,
|
100
108
|
:exclude_tables => options.exclude_tables,
|
101
109
|
:order_by => options.order_by,
|
110
|
+
:max_records => options.max_records,
|
102
111
|
}
|
103
112
|
database_dumper = Groonga::DatabaseDumper.new(dumper_options)
|
104
113
|
database_dumper.dump
|
@@ -0,0 +1,72 @@
|
|
1
|
+
How to Cross compile Rroonga
|
2
|
+
===
|
3
|
+
|
4
|
+
# For Debian GNU/Linux like Linux distribution Users
|
5
|
+
|
6
|
+
## apt
|
7
|
+
|
8
|
+
* mingw-w64
|
9
|
+
* build-essential
|
10
|
+
|
11
|
+
## prepare ruby and rubygems
|
12
|
+
|
13
|
+
```bash
|
14
|
+
$ rbenv install 1.9.3-p547
|
15
|
+
$ gem install rubygems-update
|
16
|
+
$ update_rubygems
|
17
|
+
$ gem install bundler
|
18
|
+
$ rbenv install 2.0.0-p576
|
19
|
+
$ gem install bundler
|
20
|
+
$ rbenv install 2.1.3
|
21
|
+
$ gem install bundler
|
22
|
+
```
|
23
|
+
|
24
|
+
## bundle install
|
25
|
+
|
26
|
+
```bash
|
27
|
+
$ rbenv local 1.9.3-p547
|
28
|
+
$ bundle install [--path vendor/bundle]
|
29
|
+
$ rbenv local 2.0.0-p576
|
30
|
+
$ bundle install [--path vendor/bundle]
|
31
|
+
$ rbenv local 2.1.3
|
32
|
+
$ bundle install [--path vendor/bundle]
|
33
|
+
```
|
34
|
+
|
35
|
+
## rake-compiler
|
36
|
+
|
37
|
+
```bash
|
38
|
+
$ rbenv local 1.9.3-p547
|
39
|
+
$ bundle exec rake-compiler cross-ruby HOST=i686-w64-mingw32 VERSION=1.9.3-p547 [EXTS=--without-extensions]
|
40
|
+
$ bundle exec rake-compiler cross-ruby HOST=x86_64-w64-mingw32 VERSION=1.9.3-p547 [EXTS=--without-extensions]
|
41
|
+
$ rbenv local 2.0.0-p576
|
42
|
+
$ bundle exec rake-compiler cross-ruby HOST=i686-w64-mingw32 VERSION=2.0.0-p576 [EXTS=--without-extensions]
|
43
|
+
$ bundle exec rake-compiler cross-ruby HOST=x86_64-w64-mingw32 VERSION=2.0.0-p576 [EXTS=--without-extensions]
|
44
|
+
[$ rbenv local 2.1.3]
|
45
|
+
$ bundle exec rake-compiler cross-ruby HOST=i686-w64-mingw32 VERSION=2.1.3 [EXTS=--without-extensions]
|
46
|
+
$ bundle exec rake-compiler cross-ruby HOST=x86_64-w64-mingw32 VERSION=2.1.3 [EXTS=--without-extensions]
|
47
|
+
```
|
48
|
+
|
49
|
+
## cross compile
|
50
|
+
|
51
|
+
```bash
|
52
|
+
$ rbenv local 1.9.3-p547
|
53
|
+
$ bundle exec rake:build
|
54
|
+
$ bundle exec rake RUBY_CC_VERSION=1.9.3:2.0.0:2.1.3 cross clean native gem
|
55
|
+
$ bundle exec rake clean:groonga
|
56
|
+
$ bundle exec rake RUBY_CC_VERSION=1.9.3:2.0.0:2.1.3 cross RROONGA_USE_GROONGA_X64=true clean native gem
|
57
|
+
```
|
58
|
+
|
59
|
+
# For rake-compiler-dock
|
60
|
+
|
61
|
+
`rake-compiler-dock` depends `docker` and some platform requires docker client such as `docker-machine`.
|
62
|
+
Please install `docker` and docker client before cross compiling with `rake-compiler-dock`.
|
63
|
+
|
64
|
+
## cross compiling with rake-compiler-dock
|
65
|
+
|
66
|
+
execute following rake task:
|
67
|
+
|
68
|
+
```bash
|
69
|
+
$ bundle exec rake build:windows
|
70
|
+
```
|
71
|
+
|
72
|
+
Then, `pkg` directory is created. And cross compiled gems move into `pkg` directory.
|
data/doc/text/install.md
ADDED
@@ -0,0 +1,121 @@
|
|
1
|
+
# Install
|
2
|
+
|
3
|
+
This document describes how to install Rroonga.
|
4
|
+
|
5
|
+
You can install Rroonga by RubyGems. It is the standard way for Ruby
|
6
|
+
libraries.
|
7
|
+
|
8
|
+
Rroonga is depends on Groonga. So you need to install both Groonga and
|
9
|
+
Rroonga. You can't install Groonga by RubyGems because it isn't Ruby
|
10
|
+
library. But don't worry. Rroonga provides the following options for
|
11
|
+
easy to install:
|
12
|
+
|
13
|
+
* Rroonga downloads, builds and installs Groonga automatically. You
|
14
|
+
don't need to do them explicitly.
|
15
|
+
* Rroonga uses Groonga installed by your packaging system.
|
16
|
+
|
17
|
+
The following sections describe the above in detail.
|
18
|
+
|
19
|
+
## Install with auto Groonga build
|
20
|
+
|
21
|
+
Rroonga searches Groonga on install. If Rroonga can't find Groonga,
|
22
|
+
Rroonga downloads, builds and installs Groonga automatically.
|
23
|
+
|
24
|
+
Type the following command to install Rroonga and Groonga. You don't
|
25
|
+
need to install Groonga explicitly:
|
26
|
+
|
27
|
+
% gem install rroonga
|
28
|
+
|
29
|
+
## Install with Groonga package
|
30
|
+
|
31
|
+
You can use Groonga package on you packaging system instead of building
|
32
|
+
Groonga by yourself. There are the following advantages for this option:
|
33
|
+
|
34
|
+
* It reduces installation time.
|
35
|
+
* It doesn't fail on building Groonga.
|
36
|
+
|
37
|
+
### Windows
|
38
|
+
|
39
|
+
Rroonga gem for Windows includes both pre-compiled Rroonga and Groonga
|
40
|
+
in the gem. So what you need to do is you just install rroonga gem.
|
41
|
+
|
42
|
+
Type the following command on Ruby console:
|
43
|
+
|
44
|
+
> gem install rroonga
|
45
|
+
|
46
|
+
This document assumes that you're using [RubyInstaller for
|
47
|
+
Windows](http://rubyinstaller.org/) .
|
48
|
+
|
49
|
+
### OS X
|
50
|
+
|
51
|
+
There are Groonga packages for OS X environment.
|
52
|
+
|
53
|
+
#### MacPorts
|
54
|
+
|
55
|
+
If you're using [MacPorts](http://www.macports.org/) , type the
|
56
|
+
following
|
57
|
+
commands on your terminal:
|
58
|
+
|
59
|
+
% sudo port install groonga
|
60
|
+
% sudo gem install rroonga
|
61
|
+
|
62
|
+
#### Homebrew
|
63
|
+
|
64
|
+
If you're using [Homebrew](http://brew.sh/) , type the following
|
65
|
+
commands
|
66
|
+
on your terminal:
|
67
|
+
|
68
|
+
% brew install groonga
|
69
|
+
% gem install rroonga
|
70
|
+
|
71
|
+
### Debian GNU/Linux
|
72
|
+
|
73
|
+
You can install the Groonga package by apt. See [Groonga
|
74
|
+
documentation](http://groonga.org/docs/install/debian.html) how to set
|
75
|
+
apt-line up.
|
76
|
+
|
77
|
+
Type the following commands on your terminal after you finish to set
|
78
|
+
apt-line up.
|
79
|
+
|
80
|
+
% sudo apt-get install -y libgroonga-dev
|
81
|
+
% sudo gem install rroonga
|
82
|
+
|
83
|
+
### Ubuntu
|
84
|
+
|
85
|
+
You can install the Groonga package by apt. See [Groonga
|
86
|
+
documentation](http://groonga.org/docs/install/ubuntu.html) how to set
|
87
|
+
apt-line up.
|
88
|
+
|
89
|
+
Type the following commands on your terminal after you finish to set
|
90
|
+
apt-line up.
|
91
|
+
|
92
|
+
% sudo apt-get install -y libgroonga-dev
|
93
|
+
% sudo gem install rroonga
|
94
|
+
|
95
|
+
### CentOS
|
96
|
+
|
97
|
+
You can install the Groonga package by yum. See [Groonga
|
98
|
+
documentation](http://groonga.org/docs/install/centos.html) how to set
|
99
|
+
yum repository up.
|
100
|
+
|
101
|
+
But you need to install Ruby 1.9.3 or later by yourself. Both CentOS 5
|
102
|
+
and 6 ship Ruby 1.8. Rroonga doesn't support Ruby 1.8.
|
103
|
+
|
104
|
+
Type the following commands on your terminal after you finish to set
|
105
|
+
yum
|
106
|
+
repository up and installing Ruby 1.9.3 or later.
|
107
|
+
|
108
|
+
% sudo yum install groonga-devel -y
|
109
|
+
% gem install rroonga
|
110
|
+
|
111
|
+
### Fedora
|
112
|
+
|
113
|
+
You can install the Groonga package by yum. The Groonga package is
|
114
|
+
included in the official Fedora repository.
|
115
|
+
|
116
|
+
% sudo yum install groonga-devel -y
|
117
|
+
% sudo gem install rroonga
|
118
|
+
|
119
|
+
## Links
|
120
|
+
|
121
|
+
* [2. Install - Groonga documentation](http://groonga.org/docs/install.html)
|
data/doc/text/news.md
ADDED
@@ -0,0 +1,1451 @@
|
|
1
|
+
# NEWS
|
2
|
+
|
3
|
+
## 6.0.0: 2016-03-06 {#version-6-0-0}
|
4
|
+
|
5
|
+
### Improvements
|
6
|
+
|
7
|
+
* Supported Groonga 6.0.0. Groonga 5.1.2 or older aren't supported.
|
8
|
+
|
9
|
+
* Supported `-` operator as {Groonga::Operator::AND_NOT}.
|
10
|
+
|
11
|
+
* `grndump`: Added `:max_records` option.
|
12
|
+
[Patch by Genki Takiuchi]
|
13
|
+
|
14
|
+
* {Groonga::Table#select}: Supported integer and time as function
|
15
|
+
call arguments.
|
16
|
+
|
17
|
+
* {Groonga::Table#select}: Disabled auto conversion to record ID
|
18
|
+
from number object in condition block. If you want to specify
|
19
|
+
record ID as right hand side value, you need to pass
|
20
|
+
{Groonga::Record}. The number object is treated as key not ID from
|
21
|
+
this release. Because we couldn't specify Int/UInt family type key
|
22
|
+
as number object. The number object was always treated as ID not
|
23
|
+
key.
|
24
|
+
|
25
|
+
It's backward compatible change but we introduced the
|
26
|
+
change. Because we marked this behavior as a bug.
|
27
|
+
|
28
|
+
* Supported `require "rroonga"` for `Bundler.require`.
|
29
|
+
[Patch by Fumiaki MATSUSHIMA]
|
30
|
+
|
31
|
+
* Added {Groonga::Plugin.names}.
|
32
|
+
|
33
|
+
* Added {Groonga::Config#delete}.
|
34
|
+
|
35
|
+
* Added {Groonga::Config#each}.
|
36
|
+
|
37
|
+
* Added {Groonga::Index}. It has index column and section.
|
38
|
+
|
39
|
+
* Added {Groonga::Column#find_indexes}.
|
40
|
+
It returns an array of {Groonga::Index}.
|
41
|
+
|
42
|
+
* Mark {Groonga::Column#indexes} as deprecated.
|
43
|
+
Use {Groonga::Column#find_indexes} instead.
|
44
|
+
|
45
|
+
* Added {Groonga.error_message}.
|
46
|
+
|
47
|
+
* Supported method style function call in {Groonga::Table#select}
|
48
|
+
block. It's Rubyish API.
|
49
|
+
|
50
|
+
Example:
|
51
|
+
|
52
|
+
@shops.select do |record|
|
53
|
+
record.location.geo_in_rectangle("35.7185,139.7912",
|
54
|
+
"35.7065,139.8069")
|
55
|
+
end
|
56
|
+
|
57
|
+
### Thanks
|
58
|
+
|
59
|
+
* Genki Takiuchi
|
60
|
+
|
61
|
+
* Fumiaki MATSUSHIMA
|
62
|
+
|
63
|
+
## 5.1.1: 2016-01-18 {#version-5-1-1}
|
64
|
+
|
65
|
+
### Improvements
|
66
|
+
|
67
|
+
* Supported Groonga 5.1.1. Groonga 5.0.9 or older aren't supported.
|
68
|
+
* Supported accessor in {Groonga::Table#geo_sort}.
|
69
|
+
* Improved performance of searching with empty condition.
|
70
|
+
* Added {Groonga::Object#accessor?}.
|
71
|
+
* Added {Groonga::Object#key_accessor?}.
|
72
|
+
* Added {Groonga::Database#reindex}.
|
73
|
+
* Added {Groonga::TableKeySupport#reindex}.
|
74
|
+
* Added {Groonga::FixSizeColumn#reindex}.
|
75
|
+
* Added {Groonga::VariableSizeColumn#reindex}.
|
76
|
+
* Added {Groonga::IndexColumn#reindex}.
|
77
|
+
* Added {Groonga.package_label}.
|
78
|
+
* Renamed {Groonga::Conf} to {Groonga::Config}.
|
79
|
+
* Renamed {Groonga::Context#conf} to {Groonga::Context#config}.
|
80
|
+
|
81
|
+
## 5.0.9: 2015-11-10 {#version-5-0-9}
|
82
|
+
|
83
|
+
### Improvements
|
84
|
+
|
85
|
+
* Supported Groonga 5.0.9. Groonga 5.0.8 or older aren't supported.
|
86
|
+
* Added {Groonga::Context#conf} that returns {Groonga::Conf}.
|
87
|
+
* Added {Groonga::Conf#[]} that returns a database level configuration value.
|
88
|
+
* Added {Groonga::Conf#[]=} that sets a database level configuration value.
|
89
|
+
* Added {Groonga::Table#geo_sort=} that sorts by geo point.
|
90
|
+
|
91
|
+
## 5.0.8: 2015-10-07 {#version-5-0-8}
|
92
|
+
|
93
|
+
### Improvements
|
94
|
+
|
95
|
+
* Changed to use `gmake` preferentially for auto Groonga build.
|
96
|
+
* Supported Groonga 5.0.8. Groonga 5.0.7 or older aren't supported.
|
97
|
+
* Added {Groonga::Context#opened?} that checks whether object with
|
98
|
+
the specified ID is opened or not.
|
99
|
+
* Supported calling a function in {Groonga::Table#select} by
|
100
|
+
`record.call("function", arg1, arg2, ...)`.
|
101
|
+
* Windows: Changed to cross compile system to
|
102
|
+
[rake-compiler-dock](https://github.com/rake-compiler/rake-compiler-dock)
|
103
|
+
from Vagrant based cross compile system.
|
104
|
+
[GitHub#108] [Patch by Hiroshi Hatake]
|
105
|
+
|
106
|
+
### Thanks
|
107
|
+
|
108
|
+
* Hiroshi Hatake
|
109
|
+
|
110
|
+
## 5.0.5: 2015-09-09 {#version-5-0-5}
|
111
|
+
|
112
|
+
### Improvements
|
113
|
+
|
114
|
+
* Supported Groonga 5.0.7. Groonga 5.0.6 or older aren't supported.
|
115
|
+
* Added {Groonga::Object#selector_only_procedure?}.
|
116
|
+
* Supported {Groonga::Table#open_cursor} with `:order_by => :key`
|
117
|
+
against {Groonga::DoubleArrayTrie}.
|
118
|
+
* Added {Groonga::Database#unmap}.
|
119
|
+
* Added {Groonga::Thread.limit}.
|
120
|
+
* Added {Groonga::Thread.limit=}.
|
121
|
+
* Added {Groonga::Thread.limit_getter=}.
|
122
|
+
* Added {Groonga::Thread.limit_setter=}.
|
123
|
+
* Added {Groonga::WindowsEventLogger.register}.
|
124
|
+
* Added {Groonga::Logger.max_level}.
|
125
|
+
* Added {Groonga::Logger.max_level=}.
|
126
|
+
|
127
|
+
### Fixes
|
128
|
+
|
129
|
+
* `grndump`: Fixed an error when `--order-by=key` is specified
|
130
|
+
against database that has `Groonga::Array` or `Groonga::Hash`.
|
131
|
+
|
132
|
+
## 5.0.4: 2015-07-13 {#version-5-0-4}
|
133
|
+
|
134
|
+
### Improvements
|
135
|
+
|
136
|
+
* Supported Groonga 5.0.5. Groonga 5.0.4 or older aren't supported.
|
137
|
+
* Added {Groonga::Flushable#flush} to bind `grn_obj_flush()` and `grn_obj_flush_recursive()`.
|
138
|
+
* Included {Groonga::Flushable} module to {Groonga::Table}.
|
139
|
+
* Included {Groonga::Flushable} module to {Groonga::Column}.
|
140
|
+
* Included {Groonga::Flushable} module to {Groonga::Database}.
|
141
|
+
|
142
|
+
## 5.0.3: 2015-06-10 {#version-5-0-3}
|
143
|
+
|
144
|
+
### Improvements
|
145
|
+
|
146
|
+
* Removed deprecated option "rubyforge_project" from .gemspec.
|
147
|
+
[GitHub#95][Patch by takiy33]
|
148
|
+
* [groonga-database-inspect] Added column value type.
|
149
|
+
* [groonga-database-inspect] Added sources of index column.
|
150
|
+
* [groonga-database-inspect] Added the number of sources of index column.
|
151
|
+
* [groonga-database-inspect] Added `--log-path` option.
|
152
|
+
* [groonga-database-inspect] Reduced memory usage.
|
153
|
+
* [windows] Updated bundled Groonga version to 5.0.4.
|
154
|
+
|
155
|
+
### Thanks
|
156
|
+
|
157
|
+
* takiy33
|
158
|
+
|
159
|
+
## 5.0.2: 2015-05-18 {#version-5-0-2}
|
160
|
+
|
161
|
+
### Improvements
|
162
|
+
|
163
|
+
* Added {Groonga::Plugin.ruby_suffix}.
|
164
|
+
* {Groonga::Hash} is used as the default table type when `:key_type`
|
165
|
+
is specified in {Groonga::Schema}. {Groonga::Array} was used as
|
166
|
+
the default table type. It's a backward incompatible change. But
|
167
|
+
nobody will not stumped. Because `:key_type` is specified but
|
168
|
+
`:type` isn't specified case is a bug of user's program.
|
169
|
+
* Added {Groonga::Logger.log}.
|
170
|
+
* Added {Groonga::Logger.rotate_threshold_size}.
|
171
|
+
* Added {Groonga::Logger.rotate_threshold_size=}.
|
172
|
+
* Added {Groonga::QueryLogger.log}.
|
173
|
+
* Added {Groonga::QueryLogger.rotate_threshold_size}.
|
174
|
+
* Added {Groonga::QueryLogger.rotate_threshold_size=}.
|
175
|
+
* Implemented {Groonga::QueryLogger::Flags.parse}.
|
176
|
+
|
177
|
+
## 5.0.1: 2015-04-14 {#version-5-0-1}
|
178
|
+
|
179
|
+
### Improvements
|
180
|
+
|
181
|
+
* Supported Groonga 5.0.2. Groonga 5.0.1 or older aren't supported.
|
182
|
+
* Added {Groonga::Expression#estimate_size}.
|
183
|
+
* Added closed check in `#encoding`. [GitHub#54] [Reported by yui-knk]
|
184
|
+
* [windows] Supported Ruby 2.2.
|
185
|
+
* Supported `Groonga::Normalizer.normalize("")`. [GitHub#55]
|
186
|
+
[Reported by Tasuku SUENAGA]
|
187
|
+
* Added {Groonga::ScorerError}.
|
188
|
+
* Added shortcuts for `TokenRegexp` to `Groonga::Schema`.
|
189
|
+
* Added {Groonga::Operator::REGEXP}.
|
190
|
+
* Added {Groonga::Plugin.unregister}.
|
191
|
+
* Added {Groonga::Context#unregister_plugin}.
|
192
|
+
* Changed {Groonga::Operator} to class from module. It's a backward
|
193
|
+
incompatible change but nobody will not be effected.
|
194
|
+
* Removed unused `:id` option from the followings:
|
195
|
+
* {Groonga::Column#clear_lock}
|
196
|
+
* {Groonga::Column#locked?}
|
197
|
+
* {Groonga::Table#clear_lock}
|
198
|
+
* {Groonga::Table#locked?}
|
199
|
+
* Added {Groonga::EqualOperator#exec}.
|
200
|
+
* Added {Groonga::NotEqualOperator#exec}.
|
201
|
+
* Added {Groonga::LessOperator#exec}.
|
202
|
+
* Added {Groonga::GreaterOperator#exec}.
|
203
|
+
* Added {Groonga::LessEqualOperator#exec}.
|
204
|
+
* Added {Groonga::GreaterEqualOperator#exec}.
|
205
|
+
* Added {Groonga::MatchOperator#exec}.
|
206
|
+
* Added {Groonga::PrefixOperator#exec}.
|
207
|
+
* Added {Groonga::RegexpOperator#exec}.
|
208
|
+
* Added {Groonga::ProcedureType::TOKEN_FILTER}.
|
209
|
+
* Added {Groonga::ProcedureType::SCORER}.
|
210
|
+
* Added {Groonga::Operator#to_s}.
|
211
|
+
* Supported {Groonga::IndexColumn#estimate_size} against query.
|
212
|
+
* Supported {Groonga::IndexColumn#estimate_size} against lexicon cursor.
|
213
|
+
* Added {Groonga::Object#table?}.
|
214
|
+
* Added {Groonga::Object#procedure?}.
|
215
|
+
* Added {Groonga::Object#function_procedure?}.
|
216
|
+
* Added {Groonga::Object#selector_procedure?}.
|
217
|
+
* Added {Groonga::Object#scorer_procedure?}.
|
218
|
+
* Supported regular expression in {Groonga::Table#select} block.
|
219
|
+
|
220
|
+
### Thanks
|
221
|
+
|
222
|
+
* yui-knk
|
223
|
+
* Tasuku SUENAGA
|
224
|
+
|
225
|
+
## 5.0.0: 2015-02-16 {#version-5-0-0}
|
226
|
+
|
227
|
+
### Improvements
|
228
|
+
|
229
|
+
* Supported Groonga 5.0.0. Groonga 4.1.1 or older aren't supported.
|
230
|
+
* Added flags for {Groonga::Normalizer.normalize}.
|
231
|
+
[GitHub#44] [Patch by Tasuku SUENAGA a.k.a. gunyarakun]
|
232
|
+
|
233
|
+
Groonga::Normalizer.normalize("AbC Def gh") #=> "abcdefgh"
|
234
|
+
Groonga::Normalizer.normalize("AbC Def gh", :remove_blank => true) #=> "abcdefgh"
|
235
|
+
Groonga::Normalizer.normalize("AbC Def gh", :remove_blank => false) #=> "abc def gh"
|
236
|
+
|
237
|
+
* Supported drilldown by multiple keys in {Groonga::Table#group}.
|
238
|
+
* Supported calculation for drilldown in {Groonga::Table#group}.
|
239
|
+
|
240
|
+
### Thanks
|
241
|
+
|
242
|
+
* Tasuku SUENAGA a.k.a. gunyarakun
|
243
|
+
|
244
|
+
## 4.0.8: 2015-01-08 {#version-4-0-8}
|
245
|
+
|
246
|
+
### Improvements
|
247
|
+
|
248
|
+
* Supported Groonga 4.0.9. Groonga 4.0.8 or older aren't supported.
|
249
|
+
* Added {Groonga::Column#truncate}. [GitHub#41] [Patch by Hiroshi Hatake]
|
250
|
+
* Added {Groonga::Database#recover}.
|
251
|
+
|
252
|
+
### Fixes
|
253
|
+
|
254
|
+
* Fixed a typo in {Groonga::GeoPoint#==}.
|
255
|
+
|
256
|
+
### Thanks
|
257
|
+
|
258
|
+
* Hiroshi Hatake
|
259
|
+
|
260
|
+
## 4.0.7: 2014-12-12 {#version-4-0-7}
|
261
|
+
|
262
|
+
### Improvements
|
263
|
+
|
264
|
+
* Supported Groonga 4.0.8. Groonga 4.0.7 or older aren't supported.
|
265
|
+
* Added `:reuse_posting_object` option to
|
266
|
+
{Groonga::IndexCursor#each}. The option improves performance by
|
267
|
+
reducing memory allocation. The option is disabled by default because
|
268
|
+
reusing the same object isn't Rubyish.
|
269
|
+
* Added {Groonga::IndexColumn#estimate_size}. [GitHub#38]
|
270
|
+
* Accepted string for integer, unsigned integer and float type key.
|
271
|
+
|
272
|
+
## 4.0.6: 2014-11-06 {#version-4-0-6}
|
273
|
+
|
274
|
+
### Improvements
|
275
|
+
|
276
|
+
* Supported Groonga 4.0.7. [GitHub#28]
|
277
|
+
* Changed {Groonga::Context#support_lzo?} always returns `false`.
|
278
|
+
* Added {Groonga::Context#support_lz4?}.
|
279
|
+
* Supported `:lz4` in {Groonga::Table#define_column} options.
|
280
|
+
* Supported `:lz4` in {Groonga::VariableSizeColumn#compressed?} options.
|
281
|
+
* Added {Groonga::LZ4Error}.
|
282
|
+
* [grndump] Supported `COMPRESS_ZLIB` and `COMPRESS_LZ4` flags.
|
283
|
+
* Added {Groonga::Table::KeySupport#token_filters}.
|
284
|
+
* Added {Groonga::Table::KeySupport#token_filters=}.
|
285
|
+
* Supported `:token_filters` in {Groonga::Hash.create} options.
|
286
|
+
* Supported `:token_filters` in {Groonga::PatriciaTrie.create} options.
|
287
|
+
* Supported `:token_filters` in {Groonga::DoubleArrayTrie.create} options.
|
288
|
+
* Supported `:token_filters` in {Groonga::Schema.create_table} options.
|
289
|
+
* Added {Groonga::TokenFilterError}.
|
290
|
+
* [grndump] Supported token filters.
|
291
|
+
* Added {Groonga::Expression#keywords}. [GitHub#30]
|
292
|
+
* Stopped to require logger object as the first argument of
|
293
|
+
{Groonga::Logger.register} when block is specified.
|
294
|
+
|
295
|
+
### Fixes
|
296
|
+
|
297
|
+
* [doc] Removed deprecated example.
|
298
|
+
[GitHub#26] [Patch by ongaeshi]
|
299
|
+
* Fixed a bug that a column assignment raises an error when
|
300
|
+
you assign value with type A and then assign value type B again.
|
301
|
+
[GitHub#27] [Patch by Daisuke Goto]
|
302
|
+
* Fixed a memory leak in {Groonga::PatriciaTrie#open_near_cursor}.
|
303
|
+
* Fixed a bug that you can access a column renamed by
|
304
|
+
{Groonga::Column#rename} with old name.
|
305
|
+
[GitHub#29] [Patch by Daisuke Goto]
|
306
|
+
* [doc] Fixed wrong option name of {Groonga::Logger.register}.
|
307
|
+
|
308
|
+
### Thanks
|
309
|
+
|
310
|
+
* ongaeshi
|
311
|
+
* Daisuke Goto
|
312
|
+
|
313
|
+
## 4.0.5: 2014-10-05 {#version-4-0-5}
|
314
|
+
|
315
|
+
### Improvements
|
316
|
+
|
317
|
+
* [windows] Added cross build task.
|
318
|
+
* Added {Groonga::DoubleArrayTrie#update}.
|
319
|
+
[GitHub#24] [Patch by Masafumi Yokoyama]
|
320
|
+
* Added {Groonga::Record#rename}.
|
321
|
+
* [windows] Disabled debug flags.
|
322
|
+
|
323
|
+
### Fixes
|
324
|
+
|
325
|
+
* Added `:id => true` option to {Groonga::Table::KeySupport#delete}.
|
326
|
+
`Groonga::Table::KeySupport#delete` accepts both ID and key. If passed
|
327
|
+
value is integer, it is handled as ID. But we can use `Int32` as key.
|
328
|
+
In the case, we can't delete a record by key. Therefore, we added
|
329
|
+
`Groonga::Table::KeySupport#delete(id, :id => true)` API. It introduces
|
330
|
+
a backward incompatibility, but it is OK because the current API is a
|
331
|
+
bug.
|
332
|
+
|
333
|
+
### Thanks
|
334
|
+
|
335
|
+
* Masafumi Yokoyama
|
336
|
+
|
337
|
+
## 4.0.4: 2014-08-29 {#version-4-0-4}
|
338
|
+
|
339
|
+
### Improvements
|
340
|
+
|
341
|
+
* Supported Groonga 4.0.4 or later. Groonga 4.0.3 or older are not supported.
|
342
|
+
* Added {Groonga::ProcedureType} that has constants as GRN_PROC_XXX.
|
343
|
+
* Added {Groonga::Procedure#type} as grn_proc_get_type().
|
344
|
+
|
345
|
+
procedure = Groonga["TokenBigram"]
|
346
|
+
p procedure.type == Groonga::ProcedureType::TOKENIZER #=> true
|
347
|
+
|
348
|
+
* Avoided a crash when {Groonga::Record#inspect} is called on exit.
|
349
|
+
[GitHub#18] [Reported by Ippei Obayashi]
|
350
|
+
* Updated Free Software Foundation address. [Masafumi Yokoyama]
|
351
|
+
* Supported reference weight vector. It requires Groonga 4.0.4 or later.
|
352
|
+
* Updated homepage in gemspec to use ranguba.org. [Masafumi Yokoyama]
|
353
|
+
* Reduce memory usage without GC.
|
354
|
+
|
355
|
+
### Fixes
|
356
|
+
|
357
|
+
* Fixed a GC related crash when GC is run while {Groonga::Table#group}.
|
358
|
+
|
359
|
+
### Thanks
|
360
|
+
|
361
|
+
* Ippei Obayashi
|
362
|
+
* uu59
|
363
|
+
* cosmo0920
|
364
|
+
|
365
|
+
## 4.0.3: 2014-06-04 {#version-4-0-3}
|
366
|
+
|
367
|
+
### Fixes
|
368
|
+
|
369
|
+
* [windows] Fixed a bug that Rroonga reports load error by
|
370
|
+
bundling the fixed version Groonga package.
|
371
|
+
[groonga-dev,02398][Reported by Masafumi Yokoyama]
|
372
|
+
|
373
|
+
### Thanks
|
374
|
+
|
375
|
+
* Masafumi Yokoyama
|
376
|
+
|
377
|
+
## 4.0.2: 2014-05-29 {#version-4-0-2}
|
378
|
+
|
379
|
+
### Improvements
|
380
|
+
|
381
|
+
* Removed needless `--key_type` option in dump.
|
382
|
+
[Reported by Genki Takiuchi]
|
383
|
+
* Added sources information to {Groonga::IndexColumn#inspect}.
|
384
|
+
* Enabled `with_section` flag for multiple column index by default.
|
385
|
+
See {Groonga::Schema::TableDefinition#index}.
|
386
|
+
* Enabled `with_position` flag for index of a table that has a default
|
387
|
+
tokenizer by default. You need to specify `:with_position => false`
|
388
|
+
explicitly to disable `with_position` flag for `TokenDelimit`.
|
389
|
+
`TokenDelimit` is a tokenizer that doesn't need `with_position` flag.
|
390
|
+
See {Groonga::Schema.create_table}.
|
391
|
+
|
392
|
+
### Fixes
|
393
|
+
|
394
|
+
* [GitHub#16] Fixed a memory leak of {Groonga::Table#column}.
|
395
|
+
[Reported by rutice]
|
396
|
+
|
397
|
+
### Thanks
|
398
|
+
|
399
|
+
* rutice
|
400
|
+
* Genki Takiuchi
|
401
|
+
|
402
|
+
## 4.0.1: 2014-04-04 {#version-4-0-1}
|
403
|
+
|
404
|
+
### Improvements
|
405
|
+
|
406
|
+
* Supported Groonga 4.0.1. Groonga 4.0.0 or older are not supported.
|
407
|
+
* Supported no weight match column case.
|
408
|
+
|
409
|
+
table.select do |record|
|
410
|
+
match_target = record.match_target do |target|
|
411
|
+
target.column
|
412
|
+
end
|
413
|
+
match_target =~ keyword
|
414
|
+
end
|
415
|
+
|
416
|
+
* Supported weight vector.
|
417
|
+
* grndump: Changed to use `--normalizer` instead of `KEY_NORMALIZE`.
|
418
|
+
Old Groonga can't restore dumped database.
|
419
|
+
* {Groonga::IndexColumn#search}: Added `mode` option.
|
420
|
+
* {Groonga::IndexColumn#search}: Added `weight` option.
|
421
|
+
* Accepted String as option key.
|
422
|
+
|
423
|
+
### Fixes
|
424
|
+
|
425
|
+
* Fixed a bug that index dump drops index options in Ruby syntax.
|
426
|
+
|
427
|
+
|
428
|
+
## 4.0.0: 2014-02-09 {#version-4-0-0}
|
429
|
+
|
430
|
+
### Improvements
|
431
|
+
|
432
|
+
* Supported Groonga 4.0.0. Groonga 3.1.2 or older are not supported.
|
433
|
+
* Added install document. [Patch by ongaeshi]
|
434
|
+
|
435
|
+
### Thanks
|
436
|
+
|
437
|
+
* ongaeshi
|
438
|
+
|
439
|
+
|
440
|
+
## 3.1.2: 2014-01-29 {#version-3-1-2}
|
441
|
+
|
442
|
+
### Improvements
|
443
|
+
|
444
|
+
* Supported Groonga 3.1.2. Groonga 3.1.1 or older are not supported.
|
445
|
+
* Added {Groonga::Table#support_value?}.
|
446
|
+
* Added {Groonga::Record#support_value?}.
|
447
|
+
* Added `_value` value to {Groonga::Record#attributes} result.
|
448
|
+
[groonga-dev,02046] [Suggested by ongaeshi]
|
449
|
+
* Added column values to {Groonga::Record#inspect} result.
|
450
|
+
[groonga-dev,02048] [Suggested by ongaeshi]
|
451
|
+
* grndump: Added `--dump-indexes` option that controls schema for
|
452
|
+
indexes output. It is useful to dump only schema for indexes.
|
453
|
+
* Added {Groonga.lock_timeout}.
|
454
|
+
* Added {Groonga.lock_timeout=}.
|
455
|
+
|
456
|
+
### Thanks
|
457
|
+
|
458
|
+
* ongaeshi
|
459
|
+
|
460
|
+
## 3.1.1: 2013-12-29 {#version-3-1-1}
|
461
|
+
|
462
|
+
### Improvements
|
463
|
+
|
464
|
+
* Supported Groonga 3.1.1.
|
465
|
+
* [groonga-database-inspect] Added `--no-tables` option for hiding
|
466
|
+
all table information.
|
467
|
+
* [groonga-database-inspect] Added `--no-columns` option for hiding
|
468
|
+
all column information.
|
469
|
+
* [doc] Updated English mailing list to use Groonga-talk.
|
470
|
+
[GitHub#14] [Patch by Masafumi Yokoyama]
|
471
|
+
* {Groonga::Expression#append_operation} supports operator name.
|
472
|
+
* {Groonga::Expression#append_constant} supports operator name.
|
473
|
+
* {Groonga::Expression#append_object} supports operator name.
|
474
|
+
|
475
|
+
### Thanks
|
476
|
+
|
477
|
+
* Masafumi Yokoyama
|
478
|
+
|
479
|
+
## 3.1.0: 2013-11-29 {#version-3-1-0}
|
480
|
+
|
481
|
+
### Improvements
|
482
|
+
|
483
|
+
* Reduced build failure by automatically Groonga build.
|
484
|
+
[Reported by SHIMADA Koji]
|
485
|
+
* Added `groonga-database-inspect` command that inspects passed database.
|
486
|
+
[Suggested by Genki Takiuchi]
|
487
|
+
* {Groonga::Database#tables} ignores missing objects rather than raising
|
488
|
+
an exception. Because the method is interested in only existing tables.
|
489
|
+
|
490
|
+
### Fixes
|
491
|
+
|
492
|
+
* Fixed a bug that {Groonga::Expression#parse} doesn't accept all
|
493
|
+
mode and operators.
|
494
|
+
|
495
|
+
### Thanks
|
496
|
+
|
497
|
+
* SHIMADA Koji
|
498
|
+
* Genki Takiuchi
|
499
|
+
|
500
|
+
## 3.0.9: 2013-10-29 {#version-3-0-9}
|
501
|
+
|
502
|
+
### Improvements
|
503
|
+
|
504
|
+
* Supported Groonga 3.0.9.
|
505
|
+
* Supported showing error message on error in {Groonga::Object#remove}.
|
506
|
+
|
507
|
+
### Fixes
|
508
|
+
|
509
|
+
* Fixed a crash bug that is caused by assigning `nil` as source of
|
510
|
+
index column.
|
511
|
+
|
512
|
+
## 3.0.8: 2013-09-29 {#version-3-0-8}
|
513
|
+
|
514
|
+
### Improvements
|
515
|
+
|
516
|
+
* Supported groonga 3.0.8.
|
517
|
+
* Supported x64-mingw32 Ruby.
|
518
|
+
* Supported Ruby 2.1.0 preview1.
|
519
|
+
|
520
|
+
## 3.0.7: 2013-09-19 {#version-3-0-7}
|
521
|
+
|
522
|
+
### Improvements
|
523
|
+
|
524
|
+
* Added {Groonga::Table::KeySupport#tokenize}. It requires groonga
|
525
|
+
3.0.8. Groonga 3.0.8 is not released yet.
|
526
|
+
* Changed return object of {Groonga::Context#select} to groonga-client gem's
|
527
|
+
return object. It is a backward imcompatible change. Some APIs are changed.
|
528
|
+
For example, `drill_down` is renamed to `drilldowns`. See
|
529
|
+
"Groonga::Client::Response::Select":http://rubydoc.info/gems/groonga-client/Groonga/Client/Response/Select
|
530
|
+
about rerturn object details.
|
531
|
+
** Added groonga-client gem, groogna-command gem, gqtp gem dependencies.
|
532
|
+
|
533
|
+
### Fixes
|
534
|
+
|
535
|
+
* Fixed a bug that auto groonga installation is failed.
|
536
|
+
[GitHub#12][Patch by Keita Haga]
|
537
|
+
|
538
|
+
### Thanks
|
539
|
+
|
540
|
+
* Keita Haga
|
541
|
+
|
542
|
+
## 3.0.6: 2013-09-13 {#version-3-0-6}
|
543
|
+
|
544
|
+
### Improvements
|
545
|
+
|
546
|
+
* Supported accessing reference column that referes a table that uses
|
547
|
+
Int8/UInt8/Int16/UInt16 key.
|
548
|
+
|
549
|
+
## 3.0.5: 2013-07-29 {#version-3-0-5}
|
550
|
+
|
551
|
+
### Improvements
|
552
|
+
|
553
|
+
* [dumper] supported dumping of DoubleArrayTrie.
|
554
|
+
* Supported Int8/UInt8/Int16/UInt16 to Ruby conversion.
|
555
|
+
[groonga-dev,01524][Reported by Masaharu YOSHIOKA]
|
556
|
+
* Added memory pool mechanism to reduce GC easily.
|
557
|
+
{Groonga::Context#push_memory_pool} and {Groonga::Context#pop_memory_pool}
|
558
|
+
are added.
|
559
|
+
You can close temporary table objects automatically:
|
560
|
+
|
561
|
+
context.push_memory_pool do
|
562
|
+
# create tempoeray table objects by select, group, sort and so on...
|
563
|
+
end
|
564
|
+
# created tempoeray table objects are closed automatically
|
565
|
+
|
566
|
+
* Supported max int32 over Fixnum
|
567
|
+
[Reported by xtuaok]
|
568
|
+
|
569
|
+
### Fixes
|
570
|
+
|
571
|
+
* [dumper] fixed a bug that no column table isn't dumped.
|
572
|
+
|
573
|
+
### Thanks
|
574
|
+
|
575
|
+
* Masaharu YOSHIOKA
|
576
|
+
* xtuaok
|
577
|
+
|
578
|
+
## 3.0.4: 2013-07-04 {#version-3-0-4}
|
579
|
+
|
580
|
+
### Fixes
|
581
|
+
|
582
|
+
* Fixed a rroogna 3.0.3 gem package for Windows.
|
583
|
+
|
584
|
+
## 3.0.3: 2013-07-04 {#version-3-0-3}
|
585
|
+
|
586
|
+
### Improvements
|
587
|
+
|
588
|
+
* Required groonga >= 3.0.5.
|
589
|
+
* Added an error check for creating a result table of {Groonga::Table#select}.
|
590
|
+
* Added {Groonga::Operator::AND_NOT}.
|
591
|
+
* Deprecated {Groonga::Operator::BUT} because groonga deprecated it.
|
592
|
+
Use {Groonga::Operator::AND_NOT} instead.
|
593
|
+
* Added {Groonga::Array#unblock}.
|
594
|
+
* Added `:max_n_sub_records` option to {Groonga::Table#group}.
|
595
|
+
* Added {Groonga::Table#each_sub_record}.
|
596
|
+
* Supported groonga to Ruby conversion for vector value.
|
597
|
+
* Added `:reference => true` option to {Groonga::Expression#define_variable}
|
598
|
+
that defines reference type variable.
|
599
|
+
* Added {Groonga::Record#sub_records} that returns sub records for the record.
|
600
|
+
Sub records is a {Groonga::SubRecords} instance.
|
601
|
+
|
602
|
+
### Fixes
|
603
|
+
|
604
|
+
* Fixed {Groonga::Expression#[]} return type. It returns {Groonga::Variable}
|
605
|
+
instead of value itself. CAUTION: It is a backward incompatible change.
|
606
|
+
|
607
|
+
## 3.0.2: 2013-05-29 {#version-3-0-2}
|
608
|
+
|
609
|
+
### Improvements
|
610
|
+
|
611
|
+
* Required groonga >= 3.0.4.
|
612
|
+
* Supported set/get a vector of Time.
|
613
|
+
* [grndump] Stopped to dump index only tables. They are needless.
|
614
|
+
* Added {Groonga::Record#to_json}.
|
615
|
+
* Added {Groonga::IndexColumn#add}.
|
616
|
+
* Added {Groonga::IndexColumn#delete}.
|
617
|
+
* Added {Groonga::IndexColumn#update}.
|
618
|
+
* Deprecated `Groonga::IndexColumn#[]=`. Use {Groonga::IndexColumn#add},
|
619
|
+
{Groonga::IndexColumn#delete} or {Groonga::IndexColumn#update} instead.
|
620
|
+
* Added {Groonga::Table#have_n_sub_records_space?}.
|
621
|
+
* [grndump] Don't dump "register PLUGIN" when schema dump is disabled.
|
622
|
+
|
623
|
+
### Fixes
|
624
|
+
|
625
|
+
* [grndump]
|
626
|
+
Fixed a bug that reference tables may be dumpped before referenced tables.
|
627
|
+
|
628
|
+
## 3.0.1: 2013-05-01 {#version-3-0-1}
|
629
|
+
|
630
|
+
### Improvements
|
631
|
+
|
632
|
+
* Required groonga >= 3.0.3.
|
633
|
+
* Supported assigning weight to value. See {Groonga::Table#set_column_value},
|
634
|
+
{Groonga::Record#initialize} and {Groonga::Record#[]=} for details.
|
635
|
+
* Renamed to {Groonga::QueryLogger.path} from {Groonga::Logger.query_log_path}.
|
636
|
+
* Renamed to {Groonga::QueryLogger.path=} from {Groonga::Logger.query_log_path=}.
|
637
|
+
* Renamed to {Groonga::Logger.path} from {Groonga::Logger.log_path}.
|
638
|
+
* Renamed to {Groonga::Logger.path=} from {Groonga::Logger.log_path=}.
|
639
|
+
* Added missing "Packnga >= 0.9.7" requirement. [Reported by takkanm]
|
640
|
+
|
641
|
+
### Fixes
|
642
|
+
|
643
|
+
* Fixed a memory leak on error.
|
644
|
+
|
645
|
+
### Thanks
|
646
|
+
|
647
|
+
* takkanm
|
648
|
+
|
649
|
+
## 3.0.0: 2013-03-29 {#version-3-0-0}
|
650
|
+
|
651
|
+
### Improvements
|
652
|
+
|
653
|
+
* Required groonga >= 3.0.2.
|
654
|
+
* Added block support to {Groonga::Context#create_database}. If a
|
655
|
+
block is given, created database is closed on block exit.
|
656
|
+
* [experimental] Added {Groonga::Array#push}.
|
657
|
+
* [experimental] Added {Groonga::Array#pull}.
|
658
|
+
* Added more closed object checks.
|
659
|
+
[GitHub #8][Reported by KITAITI Makoto]
|
660
|
+
* Added block support to {Groonga::Context#restore}. If a block is
|
661
|
+
given, command and its response are yielded.
|
662
|
+
|
663
|
+
### Thanks
|
664
|
+
|
665
|
+
* KITAITI Makoto
|
666
|
+
|
667
|
+
## 2.1.3: 2013-01-29 {#version-2-1-3}
|
668
|
+
|
669
|
+
### Improvements
|
670
|
+
|
671
|
+
* Removed Groonga::View removed in groonga 2.1.2.
|
672
|
+
* [doc] Added tutorial in English.
|
673
|
+
** for English:http://ranguba.org/rroonga/en/file.tutorial.html
|
674
|
+
** for Japanese:http://ranguba.org/rroonga/ja/file.tutorial.html
|
675
|
+
* [context] Added Context#restore. This method restores command dumped
|
676
|
+
by "grndump" command. Please see example below:
|
677
|
+
|
678
|
+
dumped_commands = File.read("dump.grn")
|
679
|
+
context.restore(dumped_commands)
|
680
|
+
|
681
|
+
* Supported new logger API in groonga. Old API isn't used anymore.
|
682
|
+
* For installing groonga with this gem:
|
683
|
+
** Stopped to install documentation about groonga. See "Web site":http://groonga.org/docs/ instead.
|
684
|
+
** Stopped to build static library because it isn't used by rroonga.
|
685
|
+
|
686
|
+
### Fixes
|
687
|
+
|
688
|
+
* [dumper] Reduced needless new lines in dumped commands.
|
689
|
+
|
690
|
+
* For ranguba project:
|
691
|
+
** [template] Removed needless block for sponsor by rubyforge.
|
692
|
+
** [template] Removed needless piwik tag.
|
693
|
+
** [template] Fixed URLs of references in Japanese.
|
694
|
+
|
695
|
+
## 2.1.2: 2013-01-04 {#version-2-1-2}
|
696
|
+
|
697
|
+
### Fixes
|
698
|
+
|
699
|
+
* Fixed GC related crash. Table's domain and range are also marked.
|
700
|
+
|
701
|
+
## 2.1.1: 2012-12-29 {#version-2-1-1}
|
702
|
+
|
703
|
+
### Improvements
|
704
|
+
|
705
|
+
* Required groonga 2.1.1 because groonga 2.1.0 has a serious bug
|
706
|
+
related to key normalization.
|
707
|
+
|
708
|
+
## 2.1.0: 2012-12-29 {#version-2-1-0}
|
709
|
+
|
710
|
+
### Improvements
|
711
|
+
|
712
|
+
* Required groonga 2.1.0.
|
713
|
+
* Supported mass record deletion with block.
|
714
|
+
[groonga-dev,01138][Suggested by ongaeshi]
|
715
|
+
* Added Groonga::Normalizer.normalize (experimental). It normalize string.
|
716
|
+
e.g.)
|
717
|
+
|
718
|
+
Groonga::Normalizer.normalize("AbC") # => "abc"
|
719
|
+
|
720
|
+
Now, it removes any spaces by default, but it will be customized soon.
|
721
|
+
* Supported :normalizer option in DoubleArrayTrie, PatriciaTrie, Hash,
|
722
|
+
Schema when creating tables.
|
723
|
+
* [table] Added using normalizer accessor.
|
724
|
+
* [table] Used normalizer for checking key normalization is enabled or not.
|
725
|
+
* Added groonga-index-dump tool (experimental).
|
726
|
+
This tool dumps infomations for each index from DB.
|
727
|
+
Dumped informations are contained at "INDEX_NAME.dump" files in
|
728
|
+
"TARGET_TABLE_NAME.index_INDEX_COLUMN_NAME".
|
729
|
+
e.g.)
|
730
|
+
|
731
|
+
$ cat index-dump.sdf
|
732
|
+
table_create --name Video --flags TABLE_HASH_KEY --key_type UInt32
|
733
|
+
table_create --name Tag --flags TABLE_HASH_KEY --key_type ShortText
|
734
|
+
column_create --table Video --name title --flags COLUMN_SCALAR --type ShortText
|
735
|
+
column_create --table Video --name tags --flags COLUMN_VECTOR --type Tag
|
736
|
+
column_create --table Tag --name index_tags --flags COLUMN_INDEX --type Video --source tags
|
737
|
+
load --table Video
|
738
|
+
[
|
739
|
+
{"_key":1,"title":"groonga Demo","tags":["IT","Server","groonga"]},
|
740
|
+
{"_key":2,"title":"Ultra Baseball","tags":["Sports","Baseball"]},
|
741
|
+
]
|
742
|
+
$ groonga --file index-dump.sdf -n index-dump.db
|
743
|
+
$ groonga-index-dump --output-directory=path/to/index/ index-dump.db
|
744
|
+
$ cd path/to/index/
|
745
|
+
$ ls Tag.index_tags
|
746
|
+
Baseball.dump IT.dump Server.dump Sports.dump groonga.dump
|
747
|
+
$ cat path/to/index/Tag.index_tags/groonga.dump
|
748
|
+
index: Tag.index_tags term: <groonga> domain: Tag range: Video have_section: false have_weight: false have_position: false
|
749
|
+
weight position term_frequency record
|
750
|
+
0 2 1 Video[ 1 ].tags
|
751
|
+
|
752
|
+
* Added flag options to Groonga::IndexColumn#open_cursor.
|
753
|
+
The flag options are :with_section, :with_weight, :with_position.
|
754
|
+
They are enabled by default if each option is specified in creating
|
755
|
+
a index column.
|
756
|
+
* [Snippet] Showed the error message when specified context wasn't
|
757
|
+
associated with a database by Groonga::Database#open or #create.
|
758
|
+
* [inspect] Supported to display index column related flags for index
|
759
|
+
column only.
|
760
|
+
"index column related flags" are WITH_SECTION, WITH_WEIGHT and
|
761
|
+
WITH_POSITION.
|
762
|
+
* [inspect] Added default tokenizer and normalizer infomation.
|
763
|
+
* Supported Groonga::QueryLogger. This class is used to log query log.
|
764
|
+
Please see its reference for detail.
|
765
|
+
|
766
|
+
### Changes
|
767
|
+
|
768
|
+
* Move groonga-query-log-extract to groonga-query-log.
|
769
|
+
Please install groogna-query-log gem to use this tool.
|
770
|
+
how to install:
|
771
|
+
|
772
|
+
gem install groonga-query-log
|
773
|
+
|
774
|
+
* Returned Groonga::Array instead of Array by Table#sort.
|
775
|
+
[GitHub: #8][Suggested by Genki Takiuchi]
|
776
|
+
CAUTION: This is backward incompatible change. You need to use
|
777
|
+
record.value to get the original record.
|
778
|
+
The following code shows how to use old style:
|
779
|
+
|
780
|
+
result_since_2_1_0 = table.sort(["sort_key"])
|
781
|
+
result_before_2_1_0 = result_since_2_1_0.collect do |record|
|
782
|
+
record.value
|
783
|
+
end
|
784
|
+
|
785
|
+
### Thanks
|
786
|
+
|
787
|
+
* ongaeshi
|
788
|
+
* Genki Takiuchi
|
789
|
+
|
790
|
+
## 2.0.8: 2012-12-02 {#version-2-0-8}
|
791
|
+
|
792
|
+
### Improvements
|
793
|
+
|
794
|
+
* Required groonga 2.0.9.
|
795
|
+
|
796
|
+
## 2.0.7: 2012-11-29 {#version-2-0-7}
|
797
|
+
|
798
|
+
### Improvements
|
799
|
+
|
800
|
+
* Added `Groonga::Posting#record`. This method returns the record for
|
801
|
+
the record ID in table.
|
802
|
+
* Added `Groonga::Posting#term`. This method returns the record for the
|
803
|
+
term ID in table.
|
804
|
+
* Supported `GRN_OBJ_KEY_VAR_SIZE` for `Groonga::Type#inspect`.
|
805
|
+
`GRN_OBJ_KEY_CAR_SIZE` specifies its column is variable size.
|
806
|
+
* [Type] Added reader methods to `Groonga::Type` (`#size` and `#flags`).
|
807
|
+
* [Type] Added predicate methods to `Groonga::Type`.
|
808
|
+
Added methods are `#fixed_size?`, `#variable_size?`, `#unsigned_integer?`,
|
809
|
+
`#integer?`, `#float?` and `#geo_point?`.
|
810
|
+
|
811
|
+
### Changes
|
812
|
+
|
813
|
+
* Removed query log related codes.
|
814
|
+
This feature moved to groonga-query-log gem and it is relased soon.
|
815
|
+
|
816
|
+
## 2.0.6: 2012-10-25 {#version-2-0-6}
|
817
|
+
|
818
|
+
### Improvements
|
819
|
+
|
820
|
+
* [dump] Put index columns at the bottom (after loads).
|
821
|
+
It is for using offline index construction.
|
822
|
+
* Added term_extract in Table#select by `table.select {|record|
|
823
|
+
record.key.term_extract(text)}` syntax.
|
824
|
+
* Supported `:allow_leading_not` as a option of `#select`.
|
825
|
+
You should use this option carefully. It takes a long time to search
|
826
|
+
all records which doesn't include a word. In addition, when the
|
827
|
+
number of records is large, to search them with this option is
|
828
|
+
slowly.
|
829
|
+
|
830
|
+
### Changes
|
831
|
+
|
832
|
+
* Changed option name for debug build in extconf.rb from `--with-debug`
|
833
|
+
to `--enable-debug-log`.
|
834
|
+
|
835
|
+
### Fixes
|
836
|
+
|
837
|
+
* Fixed display collapse in the references.
|
838
|
+
|
839
|
+
## 2.0.5: 2012-09-28 {#version-2-0-5}
|
840
|
+
|
841
|
+
### Improvements
|
842
|
+
|
843
|
+
* Supported groonga 2.0.7.
|
844
|
+
* Removed the workaround to install rroonga with old groonga.
|
845
|
+
* Added more error checks.
|
846
|
+
* Added Database#tables. [Suggested by @temitan]
|
847
|
+
* Supported Enumerator for #each on Database, Table, TableCursor and
|
848
|
+
IndexCursor.
|
849
|
+
* Added WGS84GeoPoint and TokyoGeoPoint.
|
850
|
+
* [dumper] supported dumping of WGS84GeoPoint and TokyoGeoPoint.
|
851
|
+
* [dumper] worked on non UTF-8 extenal output encoding environment.
|
852
|
+
* [dumper] sorted table and column names.
|
853
|
+
* [dumper] ignored invalid byte.
|
854
|
+
* [grndump] showed the warning for invalid character.
|
855
|
+
* [grndump] supported database that is created by old groonga.
|
856
|
+
* Added `Groonga::Context#ruby_encoding`.
|
857
|
+
* Added many documents in codes but showed no references.
|
858
|
+
|
859
|
+
### Fixes
|
860
|
+
|
861
|
+
* Added missing backslash escape for groonga command.
|
862
|
+
|
863
|
+
### Thanks
|
864
|
+
|
865
|
+
* @temitan
|
866
|
+
|
867
|
+
## 2.0.4: 2012-05-02 {#version-2-0-4}
|
868
|
+
|
869
|
+
### Fixes
|
870
|
+
|
871
|
+
* Fixed a bug that weight of match target is ignored.
|
872
|
+
|
873
|
+
## 2.0.3: 2012-05-02 {#version-2-0-3}
|
874
|
+
|
875
|
+
### Improvements
|
876
|
+
|
877
|
+
* Supported groonga 2.0.2.
|
878
|
+
* `Groonga::Table#each` supports options that are same as
|
879
|
+
`Groonga::Table#open_cursor`'s one.
|
880
|
+
* [grndump] added `--order-by=id` option. With this option, dumped
|
881
|
+
records are sorted by ID instead of key. You can restore records
|
882
|
+
without ID change if you don't delete any records. [#1341]
|
883
|
+
* Supported building on Windows with RubyInstaller for Windows with DevKit.
|
884
|
+
[GitHub#6] [Patch by @ongaeshi]
|
885
|
+
* Supported similar search by `table.select {|record|
|
886
|
+
record.column.similar_search(text)}` syntax.
|
887
|
+
|
888
|
+
### Fixes
|
889
|
+
|
890
|
+
* Fixed a GC related crach bug.
|
891
|
+
|
892
|
+
### Thanks
|
893
|
+
|
894
|
+
* @ongaeshi
|
895
|
+
|
896
|
+
## 2.0.2: 2012-03-29 {#version-2-0-2}
|
897
|
+
|
898
|
+
### Improvements
|
899
|
+
|
900
|
+
* Supported groonga 2.0.1.
|
901
|
+
* Added "logos":http://groonga.rubyforge.org/#logo .
|
902
|
+
|
903
|
+
### Fixes
|
904
|
+
|
905
|
+
* Fixed a Groonga::Snipet related crach bug caused by GC.
|
906
|
+
|
907
|
+
## 2.0.0: 2012-03-22 {#version-2-0-0}
|
908
|
+
|
909
|
+
### Improvements
|
910
|
+
|
911
|
+
* Supported groonga 2.0.0.
|
912
|
+
* [gem][windows] Removed mswin packages.
|
913
|
+
|
914
|
+
### Fixes
|
915
|
+
|
916
|
+
* [test] Fixed version test failure. [GitHub#4] [Reported by @takkanm]
|
917
|
+
* Fixed a Groonga::Expression related crach bug caused by GC.
|
918
|
+
* [doc] Fixed broken HTML output. [groonga-dev,00699]
|
919
|
+
[Reported by Hirano]
|
920
|
+
|
921
|
+
### Thanks
|
922
|
+
|
923
|
+
* @takkanm
|
924
|
+
* Hirano
|
925
|
+
|
926
|
+
## 1.3.1: 2012-01-29 {#version-1-3-1}
|
927
|
+
|
928
|
+
### Improvements
|
929
|
+
|
930
|
+
* Supported groonga 1.3.0.
|
931
|
+
* [schema] Supported Int8, Int16, UInt8 and UInt16.
|
932
|
+
* [schema] Supported TokyoGeoPoint and WGS84GeoPoint.
|
933
|
+
* [schema][dumper] Supported Boolean and more built-in types.
|
934
|
+
[Reported by @mashiro]
|
935
|
+
* [schema] Supported type object as column type. [#1002]
|
936
|
+
* Added `Groonga::VariableSizeColumn#compressed?`. [#1004]
|
937
|
+
* Added `Groonga::Record#score=`.
|
938
|
+
* Improve performance for encoded string.
|
939
|
+
* Added `Groonga::Command::Builder.escape_value`.
|
940
|
+
|
941
|
+
### Thanks
|
942
|
+
|
943
|
+
* @mashiro
|
944
|
+
|
945
|
+
## 1.3.0: 2011-11-29 {#version-1-3-0}
|
946
|
+
|
947
|
+
### Improvements
|
948
|
+
|
949
|
+
* [schema] Remove also needless db.tables/ directory if it is empty.
|
950
|
+
* [schema] Remove also needless db.tables/table.columns/ directory if it is empty.
|
951
|
+
* Added query log parser.
|
952
|
+
* Added groonga-query-log-extract command.
|
953
|
+
* Added grntest log analyzer.
|
954
|
+
* Added JSON gem dependency.
|
955
|
+
* Supported groonga 1.2.8.
|
956
|
+
* Dropped groonga 1.2.7 or former support.
|
957
|
+
* Added Groonga::Table#defrag.
|
958
|
+
* Added Groonga::Table#rename.
|
959
|
+
* Added Groonga::Column#rename.
|
960
|
+
* Added Groonga::DoubleArrayTrie.
|
961
|
+
* [schema] Supported table rename.
|
962
|
+
* [schema] Supported column rename.
|
963
|
+
* [schema] Supported double array trie.
|
964
|
+
|
965
|
+
### Changes
|
966
|
+
|
967
|
+
* [schema] Don't use named path by default for location aware DB.
|
968
|
+
|
969
|
+
### Fixes
|
970
|
+
|
971
|
+
* Fixed a crash problem on GC.
|
972
|
+
|
973
|
+
## 1.2.9: 2011-09-16
|
974
|
+
|
975
|
+
### Fixes
|
976
|
+
|
977
|
+
* deleted unneed object files.
|
978
|
+
|
979
|
+
## 1.2.8: 2011-09-16
|
980
|
+
|
981
|
+
### Improvements
|
982
|
+
|
983
|
+
* supported `!=` expression for column in block of `Groonga::Table#select`.
|
984
|
+
* accepted Hash like object as options.
|
985
|
+
* supported vector in dump in Ruby syntax.
|
986
|
+
* supported `GRN_CTX_PER_DB` environment variables.
|
987
|
+
(NOTE: You should pay attention to use this variables.)
|
988
|
+
|
989
|
+
## 1.2.7: 2011-08-29
|
990
|
+
|
991
|
+
### Improvements
|
992
|
+
|
993
|
+
* Added Groonga::Snippet#close that frees resource.
|
994
|
+
|
995
|
+
### Fixes
|
996
|
+
|
997
|
+
* Fixed build error on Ruby 1.8.7.
|
998
|
+
|
999
|
+
## 1.2.6: 2011-08-29
|
1000
|
+
|
1001
|
+
### Improvements
|
1002
|
+
|
1003
|
+
* Supported groonga 1.2.5.
|
1004
|
+
* Added Groonga::Record#added? that returns true when the record is just added.
|
1005
|
+
* Added Groonga::VariableSizeColumn#defrag? that defrags the column.
|
1006
|
+
* Added Groonga::Database#defrag that defrags the all variable size columns.
|
1007
|
+
* Supported column name specification by symbol.
|
1008
|
+
|
1009
|
+
### Fixes
|
1010
|
+
|
1011
|
+
* Fixed install *.rb failure by gem install.
|
1012
|
+
* Fixed some memory leaks.
|
1013
|
+
* Fixed crash bug on exit.
|
1014
|
+
|
1015
|
+
## 1.2.5: 2011-08-05
|
1016
|
+
|
1017
|
+
### Improvements
|
1018
|
+
|
1019
|
+
* Re-supported tar.gz distribution.
|
1020
|
+
* Added Groonga::Context#close.
|
1021
|
+
* Added Groonga::Context#closed?.
|
1022
|
+
* Deprecated Groonga::ObjectClosed. Use Groonga::Closed instead.
|
1023
|
+
* grndump: Added --exclude-table option that specifies not dumped tables.
|
1024
|
+
* dump: Removed path equality check.
|
1025
|
+
|
1026
|
+
### Fixes
|
1027
|
+
|
1028
|
+
* dump: Fixed wrong index table type.
|
1029
|
+
* Re-supported auto groonga install.
|
1030
|
+
|
1031
|
+
## 1.2.4: 2011-06-29
|
1032
|
+
|
1033
|
+
### Improvements
|
1034
|
+
|
1035
|
+
* Supported groonga 1.2.3.
|
1036
|
+
|
1037
|
+
### Fixes
|
1038
|
+
|
1039
|
+
* Re-supported auto groonga install.
|
1040
|
+
* Added missing pkg-config gem dependency.
|
1041
|
+
|
1042
|
+
## 1.2.3: 2011-06-27
|
1043
|
+
|
1044
|
+
### Fixes
|
1045
|
+
|
1046
|
+
* remove object files in gem packages.
|
1047
|
+
* fix charactor corruption in reference.
|
1048
|
+
|
1049
|
+
## 1.2.2: 2011-06-27
|
1050
|
+
|
1051
|
+
### Improvements
|
1052
|
+
|
1053
|
+
* created "Developers" page in English.
|
1054
|
+
* added description for tasks of "html:publish" and "publish".
|
1055
|
+
|
1056
|
+
### Changes
|
1057
|
+
|
1058
|
+
* Groonga::Record#attributes return same attributes object for duplicate records.
|
1059
|
+
* added document for Groonga::Record#attributes.
|
1060
|
+
* changed tool name in document page for creating document.
|
1061
|
+
* moved NEWS*.rdoc and tutorial.texttile to doc/text/.
|
1062
|
+
|
1063
|
+
### Fixes
|
1064
|
+
|
1065
|
+
* fixed the tutorial path in index page.
|
1066
|
+
* fixed the path of tutorial in index page in English.
|
1067
|
+
* follow the groonga downlowd URL change. [mallowlabs]
|
1068
|
+
|
1069
|
+
### Thanks
|
1070
|
+
|
1071
|
+
* mallowlabs
|
1072
|
+
|
1073
|
+
## 1.2.1: 2011-06-07
|
1074
|
+
|
1075
|
+
### Improvements
|
1076
|
+
|
1077
|
+
* added document of Groonga::Table#pagination.
|
1078
|
+
* added grndump in package.
|
1079
|
+
* corresponded recursive reference of Records by Groonga::Record#attributes.
|
1080
|
+
(experimental) [mooz]
|
1081
|
+
* Groonga::Record#attributes supported data including _score.
|
1082
|
+
* corresponded Windows for 64-bit.
|
1083
|
+
(but there's not 64-bit ruby, so rroonga for 64-bit windows cannot run.)
|
1084
|
+
* added Groonga::Posting.
|
1085
|
+
* added :delimit, :token_delimiter for alias of TokenDelimit.
|
1086
|
+
* Groonga::DatabaseDumper#dump corresponded lexicon table.
|
1087
|
+
* Groonga::DatabaseDumper#dump corresponded data including plugin.
|
1088
|
+
* added Groonga::IndexColumn#open_cursor. [yoshihara]
|
1089
|
+
* added Groonga::IndexCursor. [yoshihara]
|
1090
|
+
* added Groonga::Object#builtin?. [yoshihara]
|
1091
|
+
|
1092
|
+
### Changes
|
1093
|
+
|
1094
|
+
* check existence of column before removing it.
|
1095
|
+
* removed grn expression document.
|
1096
|
+
|
1097
|
+
### Thanks
|
1098
|
+
|
1099
|
+
* mooz
|
1100
|
+
* yoshihara
|
1101
|
+
|
1102
|
+
## 1.2.0: 2011-04-01
|
1103
|
+
|
1104
|
+
### Improvements
|
1105
|
+
|
1106
|
+
* Supported groonga 1.2.0.
|
1107
|
+
* Added `Groonga::Accessor#local_name`.
|
1108
|
+
* Added `Groonga::IndexColumn#with_section?`.
|
1109
|
+
* Added `Groonga::IndexColumn#with_weight?`.
|
1110
|
+
* Added `Groonga::IndexColumn#with_position?`.
|
1111
|
+
* `Groonga::Schema.dump` supported groonga command format dump.
|
1112
|
+
* Added grndump command.
|
1113
|
+
* `Groonga::Database#each` supports order customize.
|
1114
|
+
* Added `Groonga::Context#match_escalation_threshold`.
|
1115
|
+
* Added `Groonga::Context#match_escalation_threshold=`.
|
1116
|
+
* Improved error message.
|
1117
|
+
* Supported Rubyish name like `:short_text` instead of the
|
1118
|
+
official type name like "ShortText" in `Groonga::Schema`.
|
1119
|
+
|
1120
|
+
## 1.1.0: 2011-02-09
|
1121
|
+
|
1122
|
+
### Improvements
|
1123
|
+
|
1124
|
+
* Supported groonga 1.1.0.
|
1125
|
+
* Added Groonga::Plugin.register.
|
1126
|
+
|
1127
|
+
## 1.0.9: 2011-01-29
|
1128
|
+
|
1129
|
+
### Improvements
|
1130
|
+
|
1131
|
+
* Supported gem creation on Windows. [Patch by ongaeshi]
|
1132
|
+
* Supported generated directory that is created by Groonga::Schema removal
|
1133
|
+
when table or column is removed.
|
1134
|
+
* Added Groonga::Context#create_database.
|
1135
|
+
* Added Groonga::Context#open_database.
|
1136
|
+
* Added Groonga::Column#indexes.
|
1137
|
+
* Supported a notation for specifying index column as match target in
|
1138
|
+
Groonga::Table#select:
|
1139
|
+
|
1140
|
+
table.select do |record|
|
1141
|
+
record.match("query") do |match_record|
|
1142
|
+
(match_record.index("Terms.title") * 1000) |
|
1143
|
+
(match_record.index("Terms.description") * 100)
|
1144
|
+
match_record.content
|
1145
|
+
end
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
* Supported prefix search in Groonga::Table#select:
|
1149
|
+
|
1150
|
+
table.select do |record|
|
1151
|
+
record.name.prefix_search("groo")
|
1152
|
+
end
|
1153
|
+
|
1154
|
+
* Supported suffix search in Groonga::Table#select:
|
1155
|
+
|
1156
|
+
table.select do |record|
|
1157
|
+
record.name.suffix_search("nga")
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
* Supported :default_tokenizer schema dump.
|
1161
|
+
* Supported :key_normalize schema dump.
|
1162
|
+
* Supported pseudo columns by Groonga::Table#have_column?.
|
1163
|
+
* Supported pseudo columns by Groonga::Record#have_column?.
|
1164
|
+
|
1165
|
+
### Changes
|
1166
|
+
|
1167
|
+
* Renamed Groonga::Operatoion to Groonga::Operator.
|
1168
|
+
(Groonga::Operation is deprecated but still usable.)
|
1169
|
+
|
1170
|
+
### Fixes
|
1171
|
+
|
1172
|
+
* Fixed a crash bug when not default Groonga::Context is used in
|
1173
|
+
Groonga::Table#select.
|
1174
|
+
* Fixed a crash bug when an exception is occurred.
|
1175
|
+
|
1176
|
+
### Thanks
|
1177
|
+
|
1178
|
+
* ongaeshi
|
1179
|
+
|
1180
|
+
## 1.0.8: 2010-12-25
|
1181
|
+
|
1182
|
+
### Improvements
|
1183
|
+
|
1184
|
+
* Improved Groonga::Schema's n-gram tokenizer detect process.
|
1185
|
+
|
1186
|
+
### Fixes
|
1187
|
+
|
1188
|
+
* Fixed GC problem caused by match_target in select.
|
1189
|
+
|
1190
|
+
## 1.0.7: 2010-12-19
|
1191
|
+
|
1192
|
+
### Fixes
|
1193
|
+
|
1194
|
+
* Supported pkg-config installed by RubyGems on Ruby 1.8. [Reported by @kamipo]
|
1195
|
+
* Fixed a memory leak in Groonga::Table#columns.
|
1196
|
+
|
1197
|
+
### Thanks
|
1198
|
+
|
1199
|
+
* @kamipo
|
1200
|
+
|
1201
|
+
## 1.0.5: 2010-11-29
|
1202
|
+
|
1203
|
+
### Improvements
|
1204
|
+
|
1205
|
+
* Added snail_case type name aliases for built-in groonga types
|
1206
|
+
to Groonga::Schema.
|
1207
|
+
|
1208
|
+
### Fixes
|
1209
|
+
|
1210
|
+
* Fixed a crash bug on GC. [Ryo Onodera]
|
1211
|
+
|
1212
|
+
## 1.0.4: 2010-11-29
|
1213
|
+
|
1214
|
+
### Improvements
|
1215
|
+
|
1216
|
+
* Supported groonga 1.0.4.
|
1217
|
+
* Added Groonga::UnsupportedCommandVersion.
|
1218
|
+
* Added Groonga::Record#support_sub_records?.
|
1219
|
+
* Added Groonga::Record#eql?とGroonga::Record#hash.
|
1220
|
+
(treat two the same table and the same record ID object as the same Hash key.)
|
1221
|
+
* Supported pkg-config gem.
|
1222
|
+
* Supported generic #record_id object handle for custom record object
|
1223
|
+
in Groonga::Table#select.
|
1224
|
+
* Added Groonga::Record#record_id.
|
1225
|
+
* Added Groonga::Table#support_key?.
|
1226
|
+
* Added Groonga::Record#support_key?.
|
1227
|
+
* Added Groonga::Record#support_key?.
|
1228
|
+
* Added Groonga::Column#reference_key?.
|
1229
|
+
* Added Groonga::Column#index_column?.
|
1230
|
+
* Added Groonga::Schema#dump.
|
1231
|
+
* Supported multi columns index creation in Groonga::Schema.
|
1232
|
+
* Supported meaningful path in Groonga::Schema.
|
1233
|
+
* Made reference table omissible when index column definition
|
1234
|
+
in Groonga::Schema.
|
1235
|
+
* Added Groonga::Schema.remove_column.
|
1236
|
+
* Added convenience timestamps methods to define "created_at" and
|
1237
|
+
"updated_at" columns in Groonga::Schema.
|
1238
|
+
* Added Groonga::Context#support_zlib?.
|
1239
|
+
* Added Groonga::Context#support_lzo?.
|
1240
|
+
* Added Groonga::Database#touch.
|
1241
|
+
* Added Groonga::Table#exist?.
|
1242
|
+
* Added Groonga::Record#valid?.
|
1243
|
+
* Added Groonga::Column#vector?.
|
1244
|
+
* Added Groonga::Column#scalar?.
|
1245
|
+
* Added Groonga::Record#vector_column?.
|
1246
|
+
* Added Groonga::Record#scalar_column?.
|
1247
|
+
* Accepted any object that has record_raw_id method for record ID required
|
1248
|
+
location. Groonga::Record isn't required.
|
1249
|
+
* Added Groonga::Record#record_raw_id.
|
1250
|
+
* Accepted any object that as to_ary method for reference vector column value.
|
1251
|
+
|
1252
|
+
## Changes
|
1253
|
+
|
1254
|
+
* Used :key as the default value of `:order_by` of
|
1255
|
+
`Groonga::PatriciaTrie#open_cursor`.
|
1256
|
+
* Removed a deprecated Groonga::TableKeySupport#find.
|
1257
|
+
* Used ShortText as the default key type of
|
1258
|
+
Groonga::Hash#create and Groonga::PatriciaTrie#create.
|
1259
|
+
* Renamed Groonga::Schema#load to Groonga::Schema#restore.
|
1260
|
+
* Supported pkg-config 1.0.7.
|
1261
|
+
* Added Groonga::Column#index? and deprecated Groonga::Column#index_column?.
|
1262
|
+
* Added Groonga::Column#reference? and deprecated
|
1263
|
+
Groonga::Column#reference_column?.
|
1264
|
+
|
1265
|
+
### Fixes
|
1266
|
+
|
1267
|
+
* Fixed index for key isn't be able to define.
|
1268
|
+
* Fixed a crash problem on GC.
|
1269
|
+
|
1270
|
+
## 1.0.1: 2010-09-12
|
1271
|
+
|
1272
|
+
### Fixes
|
1273
|
+
|
1274
|
+
* Fixed wrong flag used on creating a table. [Reported by ono matope]
|
1275
|
+
|
1276
|
+
### Thanks
|
1277
|
+
|
1278
|
+
* ono matope
|
1279
|
+
|
1280
|
+
## 1.0.0: 2010-08-29
|
1281
|
+
|
1282
|
+
* Supported groonga 1.0.0.
|
1283
|
+
* Added Groonga::CASError.
|
1284
|
+
* Added :order_by option to Groonga::Table#open_cursor.
|
1285
|
+
* Added Groonga::PatriciaTrie#open_prefix_cursor that creates a cursor
|
1286
|
+
to retrieve each records by prefix search.
|
1287
|
+
* Added Groonga::PatriciaTrie#open_rk_cursor that creats a cursor to
|
1288
|
+
retrieve katakana keys from roman letters and/or hiragana.
|
1289
|
+
* Added Groonga::PatriciaTrie#open_near_cursor that creates a cursor to
|
1290
|
+
retrieve records order by distance from key.
|
1291
|
+
* Supported _key as index source.
|
1292
|
+
|
1293
|
+
## 0.9.5: 2010-07-20
|
1294
|
+
|
1295
|
+
* Supported groonga 0.7.4.
|
1296
|
+
* Imporoved Groonga::Table#select:
|
1297
|
+
* Supported weight match:
|
1298
|
+
|
1299
|
+
Here is an example to match source column or title column and
|
1300
|
+
title column has high score:
|
1301
|
+
|
1302
|
+
table.select do |record|
|
1303
|
+
(record.title * 10 | record.source) =~ "query"
|
1304
|
+
end
|
1305
|
+
|
1306
|
+
* Supported and representation for and conditions:
|
1307
|
+
|
1308
|
+
Here are examples that represents the same condition:
|
1309
|
+
|
1310
|
+
table.select do |record|
|
1311
|
+
conditions = []
|
1312
|
+
conditions << record.title =~ "query"
|
1313
|
+
conditions << record.updated_at > Time.parse("2010-07-29T21:14:29+09:00")
|
1314
|
+
conditions
|
1315
|
+
end
|
1316
|
+
|
1317
|
+
table.select do |record|
|
1318
|
+
(record.title =~ "query") &
|
1319
|
+
(record.updated_at > Time.parse("2010-07-29T21:14:29+09:00"))
|
1320
|
+
end
|
1321
|
+
|
1322
|
+
* Provided groonga runtime version: Groonga::VERSION
|
1323
|
+
* Added Groonga::Table#support_sub_records?
|
1324
|
+
* Supported pagination: Groonga::Table#paginate, Groonga::Pagination
|
1325
|
+
|
1326
|
+
## 0.9.4: 2010-04-22
|
1327
|
+
|
1328
|
+
* Fixed release miss.
|
1329
|
+
|
1330
|
+
## 0.9.3: 2010-04-22
|
1331
|
+
|
1332
|
+
* Fixed release miss.
|
1333
|
+
|
1334
|
+
## 0.9.2: 2010-04-22
|
1335
|
+
|
1336
|
+
* Supported groonga 0.1.9.
|
1337
|
+
* Many.
|
1338
|
+
|
1339
|
+
## 0.9.1: 2010-02-09
|
1340
|
+
|
1341
|
+
* Supported groonga 0.1.6
|
1342
|
+
|
1343
|
+
## 0.9.0: 2010-02-09
|
1344
|
+
|
1345
|
+
* Supported groonga 0.1.5
|
1346
|
+
* Added API
|
1347
|
+
* Groonga::Object#context
|
1348
|
+
* Groonga::Record#n_sub_records
|
1349
|
+
* Groonga::Context#send
|
1350
|
+
* Groonga::Context#receive
|
1351
|
+
* Groonga::PatriciaTrie#prefix_search [Tasuku SUENAGA]
|
1352
|
+
* Groonga::Object#path [Ryo Onodera]
|
1353
|
+
* Groonga::Object#lock [Tasuku SUENAGA]
|
1354
|
+
* Groonga::Object#unlock [Tasuku SUENAGA]
|
1355
|
+
* Groonga::Object#locked? [Tasuku SUENAGA]
|
1356
|
+
* Groonga::Object#temporary?
|
1357
|
+
* Groonga::Object#persistent?
|
1358
|
+
* Groonga::ObjectClosed
|
1359
|
+
* Groonga::Context.[]
|
1360
|
+
* Groonga::Table#column_value
|
1361
|
+
* Groonga::Table#set_column_value
|
1362
|
+
* Changed API
|
1363
|
+
* Groonga::Table#select, Groonga::Column#select
|
1364
|
+
* They also accept Groonga::Expression
|
1365
|
+
* Added :syntax option that specifies grn expression syntax
|
1366
|
+
* Groonga::Table#open_cursor
|
1367
|
+
* Added :offset option that specifies offset.
|
1368
|
+
* Added :limit option that specifies max number of records.
|
1369
|
+
* Changed Groonga::Expression.parse options:
|
1370
|
+
* (nil (default) -> :column) -> (nil (default) -> :query)
|
1371
|
+
* :column -> removed
|
1372
|
+
* :table -> :query
|
1373
|
+
* :table_query -> :query
|
1374
|
+
* :expression -> :script
|
1375
|
+
* :language -> :script
|
1376
|
+
* Groonga::Table#define_column, Groonga::Table#define_index_column
|
1377
|
+
* Defined column becomes persistent table by default
|
1378
|
+
* Groonga::Table#[] -> Groonga::Table#value
|
1379
|
+
* Groonga::Table#[]= -> Groonga::Table#set_value
|
1380
|
+
* Groonga::Table#find -> Groonga::Table#[]
|
1381
|
+
* Groonga::Table#find -> obsolete
|
1382
|
+
* Groonga::Table#[]= -> removed
|
1383
|
+
* Groonga::TableKeySupport#[]= is alias of Groonga::TableKeySupport#add
|
1384
|
+
* Changed exception class to Groonga::NoSuchColumn from
|
1385
|
+
Groonga::InvalidArgument when Groonga::Record accesses nonexistent
|
1386
|
+
a column.
|
1387
|
+
* Bug fixes
|
1388
|
+
* Fixed a bug that context isn't passed to schema [dara]
|
1389
|
+
* Fixed a bug that Groonga::PatriciaTrie#tag_keys doesn't return
|
1390
|
+
that last text. [Ryo Onodera]
|
1391
|
+
* Added --with-debug option to extconf.rb for debug build.
|
1392
|
+
* Fixed a bug that Ruby 1.9.1 may fail extconf.rb.
|
1393
|
+
|
1394
|
+
### Thanks
|
1395
|
+
|
1396
|
+
* dara
|
1397
|
+
* Ryo Onodera
|
1398
|
+
* Tasuku SUENAGA
|
1399
|
+
|
1400
|
+
## 0.0.7: 2009-10-02
|
1401
|
+
|
1402
|
+
* Supported groonga 0.1.4
|
1403
|
+
* Added API
|
1404
|
+
* Groonga::PatriciaTrie#scan
|
1405
|
+
* Groonga::PatriciaTrie#tag_keys
|
1406
|
+
* Groonga::Expression#snippet
|
1407
|
+
* Groonga::Object#append
|
1408
|
+
* Groonga::Object#prepend
|
1409
|
+
|
1410
|
+
## 0.0.6: 2009-07-31
|
1411
|
+
|
1412
|
+
* Supported groonga 0.1.1.
|
1413
|
+
* Fixed documents [id:mat_aki]
|
1414
|
+
* Supported groonga expression for searching.
|
1415
|
+
* Added API
|
1416
|
+
* Groonga::Table#union!
|
1417
|
+
* Groonga::Table#intersect!
|
1418
|
+
* Groonga::Table#differene!
|
1419
|
+
* Groonga::Table#merge!
|
1420
|
+
* Provided tar.gz [id:m_seki]
|
1421
|
+
* Fixed memory leaks
|
1422
|
+
|
1423
|
+
## 0.0.3: 2009-07-18
|
1424
|
+
|
1425
|
+
* Added Groonga::TableKeySupport#has_key? [#26145] [Tasuku SUENAGA]
|
1426
|
+
* Groonga::Record#[] raises an exception for nonexistent
|
1427
|
+
column name. [#26146] [Tasuku SUENAGA]
|
1428
|
+
* Supported 32bit environment [niku]
|
1429
|
+
* Added a test for N-gram index search [dara]
|
1430
|
+
* Added APIs
|
1431
|
+
* Groonga::Record#incemrent!
|
1432
|
+
* Groonga::Record#decemrent!
|
1433
|
+
* Groonga::Record#lock
|
1434
|
+
* Groonga::Table#lock
|
1435
|
+
* Groonga::Schema: A DSL for schema definition
|
1436
|
+
* Groonga::Expression
|
1437
|
+
|
1438
|
+
## 0.0.2: 2009-06-04
|
1439
|
+
|
1440
|
+
* Supported groonga 0.0.8 [mori]
|
1441
|
+
* Improved preformance: cache key, value, domain and range
|
1442
|
+
* Improved API
|
1443
|
+
* Added documents
|
1444
|
+
* Supported Ruby 1.9
|
1445
|
+
* Bug fixes:
|
1446
|
+
* Fixed install process [Tasuku SUENAGA]
|
1447
|
+
* Fixed memory leaks
|
1448
|
+
|
1449
|
+
## 0.0.1: 2009-04-30
|
1450
|
+
|
1451
|
+
* Initial release!
|