rroonga 6.0.5-x64-mingw32 → 6.0.7-x64-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/doc/text/news.md +15 -0
- data/ext/groonga/rb-grn-column.c +23 -17
- data/ext/groonga/rb-grn-context.c +24 -22
- data/ext/groonga/rb-grn-exception.c +2 -256
- data/ext/groonga/rb-grn-index-column.c +21 -9
- data/ext/groonga/rb-grn-object.c +98 -62
- data/ext/groonga/rb-grn-table-sort-keys.c +1 -1
- data/ext/groonga/rb-grn-table.c +2 -2
- data/ext/groonga/rb-grn-variable-size-column.c +13 -7
- data/ext/groonga/rb-grn.h +1 -2
- data/ext/groonga/rb-groonga.c +3 -2
- 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/rroonga-build.rb +3 -3
- data/test/test-fix-size-column.rb +1 -1
- data/test/test-schema.rb +1 -1
- data/test/test-variable-size-column.rb +1 -1
- data/vendor/local/bin/grndb.exe +0 -0
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga-suggest-create-dataset.exe +0 -0
- data/vendor/local/bin/groonga.exe +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 → libmsgpackc.dll} +0 -0
- data/vendor/local/bin/libonig-5.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.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/include/groonga/groonga.h +2 -0
- data/vendor/local/include/groonga/groonga/column.h +29 -0
- data/vendor/local/include/groonga/groonga/dump.h +1 -1
- data/vendor/local/include/groonga/groonga/error.h +29 -0
- data/vendor/local/include/groonga/groonga/groonga.h +6 -1
- data/vendor/local/include/msgpack/adaptor/adaptor_base.hpp +4 -70
- data/vendor/local/include/msgpack/adaptor/adaptor_base_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/array_ref.hpp +4 -161
- data/vendor/local/include/msgpack/adaptor/array_ref_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/bool.hpp +2 -53
- data/vendor/local/include/msgpack/adaptor/boost/fusion.hpp +1 -146
- data/vendor/local/include/msgpack/adaptor/boost/msgpack_variant.hpp +4 -416
- data/vendor/local/include/msgpack/adaptor/boost/msgpack_variant_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/boost/optional.hpp +2 -83
- data/vendor/local/include/msgpack/adaptor/boost/string_ref.hpp +2 -74
- data/vendor/local/include/msgpack/adaptor/carray.hpp +15 -0
- data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +2 -144
- data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +3 -53
- data/vendor/local/include/msgpack/adaptor/check_container_size_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +5 -127
- data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +5 -78
- data/vendor/local/include/msgpack/adaptor/cpp11/array_unsigned_char.hpp +5 -78
- data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +5 -83
- data/vendor/local/include/msgpack/adaptor/cpp11/reference_wrapper.hpp +5 -57
- data/vendor/local/include/msgpack/adaptor/cpp11/shared_ptr.hpp +5 -71
- data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +5 -165
- data/vendor/local/include/msgpack/adaptor/cpp11/unique_ptr.hpp +5 -71
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +5 -171
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +5 -161
- data/vendor/local/include/msgpack/adaptor/define.hpp +3 -17
- data/vendor/local/include/msgpack/adaptor/define_decl.hpp +142 -0
- data/vendor/local/include/msgpack/adaptor/deque.hpp +3 -96
- data/vendor/local/include/msgpack/adaptor/ext.hpp +3 -223
- data/vendor/local/include/msgpack/adaptor/ext_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/fixint.hpp +4 -285
- data/vendor/local/include/msgpack/adaptor/fixint_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/float.hpp +2 -110
- data/vendor/local/include/msgpack/adaptor/int.hpp +4 -415
- data/vendor/local/include/msgpack/adaptor/int_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/list.hpp +2 -93
- data/vendor/local/include/msgpack/adaptor/map.hpp +3 -291
- data/vendor/local/include/msgpack/adaptor/map_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +2 -6
- data/vendor/local/include/msgpack/adaptor/msgpack_tuple_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/nil.hpp +3 -70
- data/vendor/local/include/msgpack/adaptor/nil_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/pair.hpp +2 -70
- data/vendor/local/include/msgpack/adaptor/raw.hpp +3 -92
- data/vendor/local/include/msgpack/adaptor/raw_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/set.hpp +2 -175
- data/vendor/local/include/msgpack/adaptor/size_equal_only.hpp +17 -0
- data/vendor/local/include/msgpack/adaptor/size_equal_only_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/string.hpp +2 -73
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +2 -2
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +2 -2
- data/vendor/local/include/msgpack/adaptor/v4raw.hpp +3 -92
- data/vendor/local/include/msgpack/adaptor/v4raw_decl.hpp +16 -0
- data/vendor/local/include/msgpack/adaptor/vector.hpp +2 -108
- data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +2 -75
- data/vendor/local/include/msgpack/adaptor/vector_char.hpp +2 -76
- data/vendor/local/include/msgpack/adaptor/vector_unsigned_char.hpp +2 -76
- data/vendor/local/include/msgpack/cpp_config.hpp +4 -111
- data/vendor/local/include/msgpack/cpp_config_decl.hpp +16 -0
- data/vendor/local/include/msgpack/fbuffer.h +1 -1
- data/vendor/local/include/msgpack/fbuffer.hpp +5 -48
- data/vendor/local/include/msgpack/fbuffer_decl.hpp +16 -0
- data/vendor/local/include/msgpack/gcc_atomic.hpp +33 -0
- data/vendor/local/include/msgpack/iterator.hpp +3 -23
- data/vendor/local/include/msgpack/iterator_decl.hpp +17 -0
- data/vendor/local/include/msgpack/meta.hpp +3 -36
- data/vendor/local/include/msgpack/meta_decl.hpp +17 -0
- data/vendor/local/include/msgpack/object.hpp +5 -799
- data/vendor/local/include/msgpack/object_decl.hpp +17 -0
- data/vendor/local/include/msgpack/object_fwd.hpp +4 -180
- data/vendor/local/include/msgpack/object_fwd_decl.hpp +17 -0
- data/vendor/local/include/msgpack/pack.hpp +4 -1077
- data/vendor/local/include/msgpack/pack_decl.hpp +16 -0
- data/vendor/local/include/msgpack/predef.h +6 -1
- data/vendor/local/include/msgpack/predef/architecture.h +3 -1
- data/vendor/local/include/msgpack/predef/architecture/alpha.h +3 -4
- data/vendor/local/include/msgpack/predef/architecture/arm.h +3 -4
- data/vendor/local/include/msgpack/predef/architecture/blackfin.h +3 -4
- data/vendor/local/include/msgpack/predef/architecture/convex.h +3 -5
- data/vendor/local/include/msgpack/predef/architecture/ia64.h +3 -3
- data/vendor/local/include/msgpack/predef/architecture/m68k.h +3 -4
- data/vendor/local/include/msgpack/predef/architecture/mips.h +3 -4
- data/vendor/local/include/msgpack/predef/architecture/parisc.h +3 -4
- data/vendor/local/include/msgpack/predef/architecture/ppc.h +3 -4
- data/vendor/local/include/msgpack/predef/architecture/pyramid.h +3 -4
- data/vendor/local/include/msgpack/predef/architecture/rs6k.h +4 -4
- data/vendor/local/include/msgpack/predef/architecture/sparc.h +3 -4
- data/vendor/local/include/msgpack/predef/architecture/superh.h +3 -4
- data/vendor/local/include/msgpack/predef/architecture/sys370.h +3 -4
- data/vendor/local/include/msgpack/predef/architecture/sys390.h +3 -4
- data/vendor/local/include/msgpack/predef/architecture/x86.h +6 -6
- data/vendor/local/include/msgpack/predef/architecture/x86/32.h +4 -4
- data/vendor/local/include/msgpack/predef/architecture/x86/64.h +4 -4
- data/vendor/local/include/msgpack/predef/architecture/z.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler.h +3 -1
- data/vendor/local/include/msgpack/predef/compiler/borland.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/clang.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/comeau.h +4 -5
- data/vendor/local/include/msgpack/predef/compiler/compaq.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/diab.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/digitalmars.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/dignus.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/edg.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/ekopath.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/gcc.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/gcc_xml.h +3 -3
- data/vendor/local/include/msgpack/predef/compiler/greenhills.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/hp_acc.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/iar.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/ibm.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/intel.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/kai.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/llvm.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/metaware.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/metrowerks.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/microtec.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/mpw.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/palm.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/pgi.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/sgi_mipspro.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/sunpro.h +17 -8
- data/vendor/local/include/msgpack/predef/compiler/tendra.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/visualc.h +3 -4
- data/vendor/local/include/msgpack/predef/compiler/watcom.h +3 -4
- data/vendor/local/include/msgpack/predef/detail/_cassert.h +1 -1
- data/vendor/local/include/msgpack/predef/detail/_exception.h +1 -1
- data/vendor/local/include/msgpack/predef/detail/test_def.h +71 -0
- data/vendor/local/include/msgpack/predef/hardware.h +16 -0
- data/vendor/local/include/msgpack/predef/hardware/simd.h +119 -0
- data/vendor/local/include/msgpack/predef/hardware/simd/arm.h +57 -0
- data/vendor/local/include/msgpack/predef/hardware/simd/arm/versions.h +32 -0
- data/vendor/local/include/msgpack/predef/hardware/simd/ppc.h +69 -0
- data/vendor/local/include/msgpack/predef/hardware/simd/ppc/versions.h +51 -0
- data/vendor/local/include/msgpack/predef/hardware/simd/x86.h +123 -0
- data/vendor/local/include/msgpack/predef/hardware/simd/x86/versions.h +129 -0
- data/vendor/local/include/msgpack/predef/hardware/simd/x86_amd.h +87 -0
- data/vendor/local/include/msgpack/predef/hardware/simd/x86_amd/versions.h +51 -0
- data/vendor/local/include/msgpack/predef/language.h +3 -1
- data/vendor/local/include/msgpack/predef/language/objc.h +3 -4
- data/vendor/local/include/msgpack/predef/language/stdc.h +3 -4
- data/vendor/local/include/msgpack/predef/language/stdcpp.h +8 -11
- data/vendor/local/include/msgpack/predef/library.h +3 -1
- data/vendor/local/include/msgpack/predef/library/c.h +3 -1
- data/vendor/local/include/msgpack/predef/library/c/gnu.h +3 -4
- data/vendor/local/include/msgpack/predef/library/c/uc.h +3 -4
- data/vendor/local/include/msgpack/predef/library/c/vms.h +3 -4
- data/vendor/local/include/msgpack/predef/library/c/zos.h +3 -4
- data/vendor/local/include/msgpack/predef/library/std.h +3 -1
- data/vendor/local/include/msgpack/predef/library/std/cxx.h +3 -4
- data/vendor/local/include/msgpack/predef/library/std/dinkumware.h +3 -4
- data/vendor/local/include/msgpack/predef/library/std/libcomo.h +3 -4
- data/vendor/local/include/msgpack/predef/library/std/modena.h +3 -4
- data/vendor/local/include/msgpack/predef/library/std/msl.h +3 -4
- data/vendor/local/include/msgpack/predef/library/std/roguewave.h +3 -4
- data/vendor/local/include/msgpack/predef/library/std/sgi.h +3 -4
- data/vendor/local/include/msgpack/predef/library/std/stdcpp3.h +3 -4
- data/vendor/local/include/msgpack/predef/library/std/stlport.h +3 -4
- data/vendor/local/include/msgpack/predef/library/std/vacpp.h +3 -4
- data/vendor/local/include/msgpack/predef/make.h +2 -2
- data/vendor/local/include/msgpack/predef/os.h +3 -1
- data/vendor/local/include/msgpack/predef/os/aix.h +3 -4
- data/vendor/local/include/msgpack/predef/os/amigaos.h +3 -4
- data/vendor/local/include/msgpack/predef/os/android.h +3 -4
- data/vendor/local/include/msgpack/predef/os/beos.h +3 -4
- data/vendor/local/include/msgpack/predef/os/bsd.h +11 -3
- data/vendor/local/include/msgpack/predef/os/bsd/bsdi.h +3 -3
- data/vendor/local/include/msgpack/predef/os/bsd/dragonfly.h +3 -3
- data/vendor/local/include/msgpack/predef/os/bsd/free.h +3 -3
- data/vendor/local/include/msgpack/predef/os/bsd/net.h +3 -3
- data/vendor/local/include/msgpack/predef/os/bsd/open.h +3 -3
- data/vendor/local/include/msgpack/predef/os/cygwin.h +4 -5
- data/vendor/local/include/msgpack/predef/os/haiku.h +3 -4
- data/vendor/local/include/msgpack/predef/os/hpux.h +3 -4
- data/vendor/local/include/msgpack/predef/os/ios.h +3 -3
- data/vendor/local/include/msgpack/predef/os/irix.h +3 -4
- data/vendor/local/include/msgpack/predef/os/linux.h +3 -4
- data/vendor/local/include/msgpack/predef/os/macos.h +3 -4
- data/vendor/local/include/msgpack/predef/os/os400.h +3 -4
- data/vendor/local/include/msgpack/predef/os/qnxnto.h +3 -4
- data/vendor/local/include/msgpack/predef/os/solaris.h +3 -4
- data/vendor/local/include/msgpack/predef/os/unix.h +3 -3
- data/vendor/local/include/msgpack/predef/os/vms.h +3 -4
- data/vendor/local/include/msgpack/predef/os/windows.h +3 -3
- data/vendor/local/include/msgpack/predef/other.h +3 -1
- data/vendor/local/include/msgpack/predef/other/endian.h +4 -5
- data/vendor/local/include/msgpack/predef/platform.h +3 -1
- data/vendor/local/include/msgpack/predef/platform/mingw.h +3 -4
- data/vendor/local/include/msgpack/predef/platform/windows_desktop.h +4 -3
- data/vendor/local/include/msgpack/predef/platform/windows_phone.h +4 -3
- data/vendor/local/include/msgpack/predef/platform/windows_runtime.h +4 -3
- data/vendor/local/include/msgpack/predef/platform/windows_store.h +4 -3
- data/vendor/local/include/msgpack/predef/version.h +2 -2
- data/vendor/local/include/msgpack/predef/version_number.h +1 -2
- data/vendor/local/include/msgpack/preprocessor/arithmetic/dec.hpp +1 -0
- data/vendor/local/include/msgpack/preprocessor/config/config.hpp +5 -2
- data/vendor/local/include/msgpack/preprocessor/facilities/identity.hpp +4 -0
- data/vendor/local/include/msgpack/preprocessor/library.hpp +1 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/for.hpp +19 -1
- data/vendor/local/include/msgpack/preprocessor/seq/detail/is_empty.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/seq/for_each.hpp +57 -10
- data/vendor/local/include/msgpack/preprocessor/seq/for_each_i.hpp +58 -10
- data/vendor/local/include/msgpack/preprocessor/seq/replace.hpp +18 -2
- data/vendor/local/include/msgpack/preprocessor/seq/rest_n.hpp +18 -2
- data/vendor/local/include/msgpack/preprocessor/seq/size.hpp +1 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/eat.hpp +10 -1
- data/vendor/local/include/msgpack/sbuffer.hpp +4 -139
- data/vendor/local/include/msgpack/sbuffer_decl.hpp +17 -0
- data/vendor/local/include/msgpack/sysdep.h +9 -5
- data/vendor/local/include/msgpack/type.hpp +2 -0
- data/vendor/local/include/msgpack/unpack.hpp +5 -1698
- data/vendor/local/include/msgpack/unpack_decl.hpp +16 -0
- data/vendor/local/include/msgpack/v1/adaptor/adaptor_base.hpp +116 -0
- data/vendor/local/include/msgpack/v1/adaptor/adaptor_base_decl.hpp +86 -0
- data/vendor/local/include/msgpack/v1/adaptor/array_ref.hpp +305 -0
- data/vendor/local/include/msgpack/v1/adaptor/array_ref_decl.hpp +55 -0
- data/vendor/local/include/msgpack/v1/adaptor/bool.hpp +66 -0
- data/vendor/local/include/msgpack/v1/adaptor/boost/fusion.hpp +160 -0
- data/vendor/local/include/msgpack/v1/adaptor/boost/msgpack_variant.hpp +441 -0
- data/vendor/local/include/msgpack/v1/adaptor/boost/msgpack_variant_decl.hpp +62 -0
- data/vendor/local/include/msgpack/v1/adaptor/boost/optional.hpp +96 -0
- data/vendor/local/include/msgpack/v1/adaptor/boost/string_ref.hpp +87 -0
- data/vendor/local/include/msgpack/v1/adaptor/carray.hpp +253 -0
- data/vendor/local/include/msgpack/v1/adaptor/char_ptr.hpp +92 -0
- data/vendor/local/include/msgpack/v1/adaptor/check_container_size.hpp +67 -0
- data/vendor/local/include/msgpack/v1/adaptor/check_container_size_decl.hpp +44 -0
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/array.hpp +138 -0
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/array_char.hpp +90 -0
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/array_unsigned_char.hpp +90 -0
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/forward_list.hpp +94 -0
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/reference_wrapper.hpp +68 -0
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/shared_ptr.hpp +82 -0
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/tuple.hpp +175 -0
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/unique_ptr.hpp +82 -0
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/unordered_map.hpp +182 -0
- data/vendor/local/include/msgpack/v1/adaptor/cpp11/unordered_set.hpp +172 -0
- data/vendor/local/include/msgpack/v1/adaptor/define.hpp +21 -0
- data/vendor/local/include/msgpack/v1/adaptor/define_decl.hpp +23 -0
- data/vendor/local/include/msgpack/v1/adaptor/deque.hpp +108 -0
- data/vendor/local/include/msgpack/{adaptor → v1/adaptor}/detail/cpp03_define_array.hpp +6 -71
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp03_define_array_decl.hpp +135 -0
- data/vendor/local/include/msgpack/{adaptor → v1/adaptor}/detail/cpp03_define_map.hpp +7 -61
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp03_define_map_decl.hpp +135 -0
- data/vendor/local/include/msgpack/{adaptor → v1/adaptor}/detail/cpp03_msgpack_tuple.hpp +1095 -579
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple_decl.hpp +317 -0
- data/vendor/local/include/msgpack/{adaptor → v1/adaptor}/detail/cpp11_define_array.hpp +5 -71
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_define_array_decl.hpp +39 -0
- data/vendor/local/include/msgpack/{adaptor → v1/adaptor}/detail/cpp11_define_map.hpp +7 -62
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_define_map_decl.hpp +37 -0
- data/vendor/local/include/msgpack/{adaptor → v1/adaptor}/detail/cpp11_msgpack_tuple.hpp +30 -85
- data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple_decl.hpp +120 -0
- data/vendor/local/include/msgpack/v1/adaptor/ext.hpp +236 -0
- data/vendor/local/include/msgpack/v1/adaptor/ext_decl.hpp +38 -0
- data/vendor/local/include/msgpack/v1/adaptor/fixint.hpp +283 -0
- data/vendor/local/include/msgpack/v1/adaptor/fixint_decl.hpp +46 -0
- data/vendor/local/include/msgpack/v1/adaptor/float.hpp +123 -0
- data/vendor/local/include/msgpack/v1/adaptor/int.hpp +426 -0
- data/vendor/local/include/msgpack/v1/adaptor/int_decl.hpp +49 -0
- data/vendor/local/include/msgpack/v1/adaptor/list.hpp +106 -0
- data/vendor/local/include/msgpack/v1/adaptor/map.hpp +314 -0
- data/vendor/local/include/msgpack/v1/adaptor/map_decl.hpp +36 -0
- data/vendor/local/include/msgpack/v1/adaptor/msgpack_tuple.hpp +21 -0
- data/vendor/local/include/msgpack/v1/adaptor/msgpack_tuple_decl.hpp +21 -0
- data/vendor/local/include/msgpack/v1/adaptor/nil.hpp +76 -0
- data/vendor/local/include/msgpack/v1/adaptor/nil_decl.hpp +44 -0
- data/vendor/local/include/msgpack/v1/adaptor/pair.hpp +83 -0
- data/vendor/local/include/msgpack/v1/adaptor/raw.hpp +106 -0
- data/vendor/local/include/msgpack/v1/adaptor/raw_decl.hpp +36 -0
- data/vendor/local/include/msgpack/v1/adaptor/set.hpp +188 -0
- data/vendor/local/include/msgpack/v1/adaptor/size_equal_only.hpp +118 -0
- data/vendor/local/include/msgpack/v1/adaptor/size_equal_only_decl.hpp +52 -0
- data/vendor/local/include/msgpack/v1/adaptor/string.hpp +87 -0
- data/vendor/local/include/msgpack/v1/adaptor/tr1/unordered_map.hpp +171 -0
- data/vendor/local/include/msgpack/v1/adaptor/tr1/unordered_set.hpp +165 -0
- data/vendor/local/include/msgpack/v1/adaptor/v4raw.hpp +105 -0
- data/vendor/local/include/msgpack/v1/adaptor/v4raw_decl.hpp +34 -0
- data/vendor/local/include/msgpack/v1/adaptor/vector.hpp +121 -0
- data/vendor/local/include/msgpack/v1/adaptor/vector_bool.hpp +90 -0
- data/vendor/local/include/msgpack/v1/adaptor/vector_char.hpp +114 -0
- data/vendor/local/include/msgpack/v1/adaptor/vector_unsigned_char.hpp +114 -0
- data/vendor/local/include/msgpack/v1/cpp_config.hpp +129 -0
- data/vendor/local/include/msgpack/v1/cpp_config_decl.hpp +131 -0
- data/vendor/local/include/msgpack/{detail → v1/detail}/cpp03_zone.hpp +10 -21
- data/vendor/local/include/msgpack/v1/detail/cpp03_zone_decl.hpp +46 -0
- data/vendor/local/include/msgpack/{detail → v1/detail}/cpp11_zone.hpp +10 -18
- data/vendor/local/include/msgpack/v1/detail/cpp11_zone_decl.hpp +47 -0
- data/vendor/local/include/msgpack/v1/fbuffer.hpp +60 -0
- data/vendor/local/include/msgpack/v1/fbuffer_decl.hpp +32 -0
- data/vendor/local/include/msgpack/v1/iterator.hpp +40 -0
- data/vendor/local/include/msgpack/v1/iterator_decl.hpp +40 -0
- data/vendor/local/include/msgpack/v1/meta.hpp +47 -0
- data/vendor/local/include/msgpack/v1/meta_decl.hpp +52 -0
- data/vendor/local/include/msgpack/v1/object.hpp +865 -0
- data/vendor/local/include/msgpack/v1/object_decl.hpp +112 -0
- data/vendor/local/include/msgpack/v1/object_fwd.hpp +252 -0
- data/vendor/local/include/msgpack/v1/object_fwd_decl.hpp +76 -0
- data/vendor/local/include/msgpack/v1/pack.hpp +1602 -0
- data/vendor/local/include/msgpack/v1/pack_decl.hpp +91 -0
- data/vendor/local/include/msgpack/v1/preprocessor.hpp +19 -0
- data/vendor/local/include/msgpack/v1/sbuffer.hpp +149 -0
- data/vendor/local/include/msgpack/v1/sbuffer_decl.hpp +33 -0
- data/vendor/local/include/msgpack/v1/unpack.hpp +1672 -0
- data/vendor/local/include/msgpack/v1/unpack_decl.hpp +461 -0
- data/vendor/local/include/msgpack/v1/version.hpp +36 -0
- data/vendor/local/include/msgpack/v1/versioning.hpp +69 -0
- data/vendor/local/include/msgpack/v1/vrefbuffer.hpp +292 -0
- data/vendor/local/include/msgpack/v1/vrefbuffer_decl.hpp +39 -0
- data/vendor/local/include/msgpack/v1/zbuffer.hpp +159 -0
- data/vendor/local/include/msgpack/v1/zbuffer_decl.hpp +37 -0
- data/vendor/local/include/msgpack/v1/zone.hpp +21 -0
- data/vendor/local/include/msgpack/v1/zone_decl.hpp +21 -0
- data/vendor/local/include/msgpack/v2/adaptor/adaptor_base.hpp +58 -0
- data/vendor/local/include/msgpack/v2/adaptor/adaptor_base_decl.hpp +52 -0
- data/vendor/local/include/msgpack/v2/adaptor/array_ref_decl.hpp +36 -0
- data/vendor/local/include/msgpack/v2/adaptor/boost/msgpack_variant_decl.hpp +42 -0
- data/vendor/local/include/msgpack/v2/adaptor/check_container_size_decl.hpp +39 -0
- data/vendor/local/include/msgpack/v2/adaptor/define_decl.hpp +23 -0
- data/vendor/local/include/msgpack/v2/adaptor/detail/cpp03_define_array_decl.hpp +31 -0
- data/vendor/local/include/msgpack/v2/adaptor/detail/cpp03_define_map_decl.hpp +31 -0
- data/vendor/local/include/msgpack/v2/adaptor/detail/cpp03_msgpack_tuple_decl.hpp +43 -0
- data/vendor/local/include/msgpack/v2/adaptor/detail/cpp11_define_array_decl.hpp +32 -0
- data/vendor/local/include/msgpack/v2/adaptor/detail/cpp11_define_map_decl.hpp +31 -0
- data/vendor/local/include/msgpack/v2/adaptor/detail/cpp11_msgpack_tuple_decl.hpp +59 -0
- data/vendor/local/include/msgpack/v2/adaptor/ext_decl.hpp +34 -0
- data/vendor/local/include/msgpack/v2/adaptor/fixint_decl.hpp +43 -0
- data/vendor/local/include/msgpack/v2/adaptor/int_decl.hpp +54 -0
- data/vendor/local/include/msgpack/v2/adaptor/map_decl.hpp +33 -0
- data/vendor/local/include/msgpack/v2/adaptor/msgpack_tuple_decl.hpp +21 -0
- data/vendor/local/include/msgpack/v2/adaptor/nil_decl.hpp +42 -0
- data/vendor/local/include/msgpack/v2/adaptor/raw_decl.hpp +33 -0
- data/vendor/local/include/msgpack/v2/adaptor/size_equal_only_decl.hpp +35 -0
- data/vendor/local/include/msgpack/v2/adaptor/v4raw_decl.hpp +34 -0
- data/vendor/local/include/msgpack/v2/cpp_config_decl.hpp +84 -0
- data/vendor/local/include/msgpack/v2/detail/cpp03_zone_decl.hpp +31 -0
- data/vendor/local/include/msgpack/v2/detail/cpp11_zone_decl.hpp +31 -0
- data/vendor/local/include/msgpack/v2/fbuffer_decl.hpp +32 -0
- data/vendor/local/include/msgpack/v2/iterator_decl.hpp +33 -0
- data/vendor/local/include/msgpack/v2/meta_decl.hpp +46 -0
- data/vendor/local/include/msgpack/v2/object.hpp +33 -0
- data/vendor/local/include/msgpack/v2/object_decl.hpp +49 -0
- data/vendor/local/include/msgpack/v2/object_fwd.hpp +109 -0
- data/vendor/local/include/msgpack/v2/object_fwd_decl.hpp +73 -0
- data/vendor/local/include/msgpack/v2/pack_decl.hpp +55 -0
- data/vendor/local/include/msgpack/v2/sbuffer_decl.hpp +33 -0
- data/vendor/local/include/msgpack/v2/unpack.hpp +1625 -0
- data/vendor/local/include/msgpack/v2/unpack_decl.hpp +348 -0
- data/vendor/local/include/msgpack/v2/vrefbuffer_decl.hpp +29 -0
- data/vendor/local/include/msgpack/v2/zbuffer_decl.hpp +29 -0
- data/vendor/local/include/msgpack/v2/zone_decl.hpp +21 -0
- data/vendor/local/include/msgpack/version_master.h +2 -2
- data/vendor/local/include/msgpack/versioning.hpp +3 -3
- data/vendor/local/include/msgpack/vrefbuffer.hpp +4 -279
- data/vendor/local/include/msgpack/vrefbuffer_decl.hpp +16 -0
- data/vendor/local/include/msgpack/zbuffer.hpp +3 -153
- data/vendor/local/include/msgpack/zbuffer_decl.hpp +16 -0
- data/vendor/local/include/msgpack/zone.hpp +3 -7
- data/vendor/local/include/msgpack/zone_decl.hpp +16 -0
- data/vendor/local/lib/groonga/plugins/functions/number.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/number.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/number.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/number.la +3 -3
- 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 +3 -3
- data/vendor/local/lib/groonga/plugins/functions/time.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/time.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/time.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/time.la +3 -3
- 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 +3 -3
- 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 +3 -3
- 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 +3 -3
- 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 +3 -3
- 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 +3 -3
- 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 +3 -3
- data/vendor/local/lib/groonga/scripts/ruby/expression.rb +1 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters.rb +10 -0
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +3 -3
- 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/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libonig.la +2 -2
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
- data/vendor/local/lib/pkgconfig/msgpack.pc +2 -2
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/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 +0 -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 +3 -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 -4
- 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 +82 -1244
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news/5.x.txt +1250 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_list.txt +393 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/string_substring.txt +27 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/vector_slice.txt +27 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +0 -4
- data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +25 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/client.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/community.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +7 -8
- 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 +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/development.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/genindex.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/index.html +44 -41
- data/vendor/local/share/doc/groonga/en/html/install.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/install/others.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +10 -11
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/limitations.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/news.html +257 -1703
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +54 -48
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +18 -12
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +65 -59
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +64 -58
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +61 -55
- data/vendor/local/share/doc/groonga/en/html/news/5.x.html +1426 -0
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +44 -41
- data/vendor/local/share/doc/groonga/en/html/reference/alias.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +33 -32
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +7 -7
- 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/request_timeout.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_list.html +991 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/commands/query_expand.html +33 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +33 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +69 -69
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +113 -113
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +33 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +53 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +43 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +33 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +43 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +33 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +45 -45
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +7 -7
- 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 +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +18 -16
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/fuzzy_search.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/number_classify.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/record_number.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/reference/functions/string_substring.html +162 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_hour.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_minute.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_month.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_second.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_week.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_year.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_slice.html +162 -0
- 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 +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +12 -12
- 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 +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/server/http.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/server/memcached.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/server/package.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/spec.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +0 -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 +3 -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 -4
- 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 +82 -1244
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/5.x.txt +1250 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_list.txt +393 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/string_substring.txt +27 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/vector_slice.txt +27 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +0 -4
- data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +25 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/client.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/community.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +7 -8
- 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 +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/development.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/index.html +44 -41
- data/vendor/local/share/doc/groonga/ja/html/install.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +10 -11
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news.html +248 -1638
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +54 -48
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +18 -12
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +65 -59
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +64 -58
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +61 -55
- data/vendor/local/share/doc/groonga/ja/html/news/5.x.html +1368 -0
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +44 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +33 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +7 -7
- 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/request_timeout.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_list.html +1014 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/query_expand.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +69 -69
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +113 -113
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +53 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +45 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +7 -7
- 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 +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +18 -16
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/fuzzy_search.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/number_classify.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/record_number.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_substring.html +163 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_hour.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_minute.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_month.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_second.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_week.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_year.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_slice.html +163 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/spec.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +7 -7
- data/vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh +7 -1
- data/vendor/local/share/groonga/examples/dictionary/html/index.html +1 -1
- data/vendor/local/share/license/msgpack/README.md +6 -7
- metadata +200 -16
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.la +0 -41
- data/vendor/local/lib/libmsgpackc.la +0 -41
@@ -0,0 +1,1426 @@
|
|
1
|
+
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
4
|
+
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
7
|
+
<head>
|
8
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
|
+
|
10
|
+
<title>News - 5.x — Groonga v6.0.7 documentation</title>
|
11
|
+
|
12
|
+
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
13
|
+
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
14
|
+
|
15
|
+
<script type="text/javascript">
|
16
|
+
var DOCUMENTATION_OPTIONS = {
|
17
|
+
URL_ROOT: '../',
|
18
|
+
VERSION: '6.0.7',
|
19
|
+
COLLAPSE_INDEX: false,
|
20
|
+
FILE_SUFFIX: '.html',
|
21
|
+
HAS_SOURCE: true
|
22
|
+
};
|
23
|
+
</script>
|
24
|
+
<script type="text/javascript" src="../_static/jquery.js"></script>
|
25
|
+
<script type="text/javascript" src="../_static/underscore.js"></script>
|
26
|
+
<script type="text/javascript" src="../_static/doctools.js"></script>
|
27
|
+
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
28
|
+
<link rel="top" title="Groonga v6.0.7 documentation" href="../index.html" />
|
29
|
+
</head>
|
30
|
+
<body role="document">
|
31
|
+
<div class="header">
|
32
|
+
<h1 class="title">
|
33
|
+
<a id="top-link" href="../index.html">
|
34
|
+
<span class="project">groonga</span>
|
35
|
+
<span class="separator">-</span>
|
36
|
+
<span class="description">An open-source fulltext search engine and column store.</span>
|
37
|
+
</a>
|
38
|
+
</h1>
|
39
|
+
|
40
|
+
<div class="other-language-links">
|
41
|
+
<ul>
|
42
|
+
<li><a href="../../../ja/html/news/5.x.html">日本語</a></li>
|
43
|
+
</ul>
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
|
47
|
+
|
48
|
+
<div class="related" role="navigation" aria-label="related navigation">
|
49
|
+
<h3>Navigation</h3>
|
50
|
+
<ul>
|
51
|
+
<li class="right" style="margin-right: 10px">
|
52
|
+
<a href="../genindex.html" title="General Index"
|
53
|
+
accesskey="I">index</a></li>
|
54
|
+
<li class="nav-item nav-item-0"><a href="../index.html">Groonga v6.0.7 documentation</a> »</li>
|
55
|
+
</ul>
|
56
|
+
</div>
|
57
|
+
|
58
|
+
<div class="document">
|
59
|
+
<div class="documentwrapper">
|
60
|
+
<div class="bodywrapper">
|
61
|
+
<div class="body" role="main">
|
62
|
+
|
63
|
+
<div class="section" id="news-5-x">
|
64
|
+
<h1>News - 5.x<a class="headerlink" href="#news-5-x" title="Permalink to this headline">¶</a></h1>
|
65
|
+
<div class="section" id="release-5-1-2-2016-01-29">
|
66
|
+
<span id="release-5-1-2"></span><h2>Release 5.1.2 - 2016-01-29<a class="headerlink" href="#release-5-1-2-2016-01-29" title="Permalink to this headline">¶</a></h2>
|
67
|
+
<div class="section" id="improvements">
|
68
|
+
<h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
|
69
|
+
<ul class="simple">
|
70
|
+
<li>Improved performance for sequential search against constant value
|
71
|
+
such as <code class="docutils literal"><span class="pre">true</span></code> and <code class="docutils literal"><span class="pre">29</span></code>.</li>
|
72
|
+
<li>Improved performance for sequential search against binary operation
|
73
|
+
with constant value such as <code class="docutils literal"><span class="pre">x</span> <span class="pre">==</span> <span class="pre">29</span></code> and <code class="docutils literal"><span class="pre">x</span> <span class="pre"><</span> <span class="pre">29</span></code>.</li>
|
74
|
+
<li>[<a class="reference internal" href="../reference/commands/select.html"><span class="doc">select</span></a>] Changed score type to <code class="docutils literal"><span class="pre">Float</span></code>
|
75
|
+
from <code class="docutils literal"><span class="pre">Int32</span></code> when <a class="reference internal" href="../reference/command/command_version.html"><span class="doc">Command version</span></a> is 2.
|
76
|
+
The current default command version is 1. Command version 2 is
|
77
|
+
experimental. So this change isn't affected to normal users.
|
78
|
+
[GitHub#450][Patch by Naoya Murakami]</li>
|
79
|
+
<li>[grn_ts] Supported match operator.</li>
|
80
|
+
<li>[<a class="reference internal" href="../reference/executables/grndb.html"><span class="doc">grndb</span></a>] Added <code class="docutils literal"><span class="pre">--target</span></code> option to
|
81
|
+
<code class="docutils literal"><span class="pre">check</span></code> command. It reduces check target.</li>
|
82
|
+
<li>[Windows] Updated bundled msgpack to 1.3.0 from 1.0.1.</li>
|
83
|
+
<li>[Windows] Updated bundled MeCab to 0.996 from 0.98.</li>
|
84
|
+
<li>[<code class="docutils literal"><span class="pre">grn_hash_size()</span></code>] Added a new API that returns the number of
|
85
|
+
records in the hash table.</li>
|
86
|
+
<li>[<code class="docutils literal"><span class="pre">GRN_HASH_TINY</span></code>] Added a new flag to create tiny hash table.</li>
|
87
|
+
<li>[<code class="docutils literal"><span class="pre">grn_dump_table_create_flags()</span></code>] Added a new API that converts
|
88
|
+
<code class="docutils literal"><span class="pre">flags</span></code> value of a table to <code class="docutils literal"><span class="pre">flags</span></code> parameter format of
|
89
|
+
<a class="reference internal" href="../reference/commands/table_create.html"><span class="doc">table_create</span></a>.</li>
|
90
|
+
<li>[<code class="docutils literal"><span class="pre">grn_dump_column_create_flags()</span></code>] Added a new API that converts
|
91
|
+
<code class="docutils literal"><span class="pre">flags</span></code> value of a column to <code class="docutils literal"><span class="pre">flags</span></code> parameter format of
|
92
|
+
<a class="reference internal" href="../reference/commands/column_create.html"><span class="doc">column_create</span></a>.</li>
|
93
|
+
<li>[<code class="docutils literal"><span class="pre">grn_plugin_get_names()</span></code>] Added a new API that returns all plugin
|
94
|
+
names in a database.</li>
|
95
|
+
<li>[<code class="docutils literal"><span class="pre">grn_column_get_all_index_data()</span></code>] Added a new API that returns
|
96
|
+
all index data for a table or data column.</li>
|
97
|
+
<li>[<a class="reference internal" href="../reference/commands/schema.html"><span class="doc">schema</span></a>] Added indexes information to
|
98
|
+
indexed tables and data columns.</li>
|
99
|
+
<li>[<code class="docutils literal"><span class="pre">grn_config_get()</span></code>] Renamed from <code class="docutils literal"><span class="pre">grn_conf_get()</span></code>.</li>
|
100
|
+
<li>[<code class="docutils literal"><span class="pre">grn_config_set()</span></code>] Renamed from <code class="docutils literal"><span class="pre">grn_conf_set()</span></code>.</li>
|
101
|
+
<li>[<code class="docutils literal"><span class="pre">grn_config_delete()</span></code>] Added a new API that deletes a
|
102
|
+
configuration item.</li>
|
103
|
+
<li>[<a class="reference internal" href="../reference/commands/config_set.html"><span class="doc">config_set</span></a>] Added a new command that
|
104
|
+
sets a configuration item.</li>
|
105
|
+
<li>[<a class="reference internal" href="../reference/commands/config_get.html"><span class="doc">config_get</span></a>] Added a new command that
|
106
|
+
gets a configuration item value.</li>
|
107
|
+
<li>[<a class="reference internal" href="../reference/commands/config_delete.html"><span class="doc">config_delete</span></a>] Added a new command that
|
108
|
+
deletes a configuration item.</li>
|
109
|
+
<li>[<code class="docutils literal"><span class="pre">grn_config_cursor_open()</span></code>] Added a new API that opens a new
|
110
|
+
cursor that iterates all configuration items.</li>
|
111
|
+
<li>[<code class="docutils literal"><span class="pre">grn_config_cursor_next()</span></code>] Added a new API that moves to the
|
112
|
+
next configuration item in the cursor.</li>
|
113
|
+
<li>[<code class="docutils literal"><span class="pre">grn_config_cursor_get_key()</span></code>] Added a new API that gets the
|
114
|
+
key of the current configuration item.</li>
|
115
|
+
<li>[<code class="docutils literal"><span class="pre">grn_config_cursor_get_value()</span></code>] Added a new API that gets the
|
116
|
+
value of the current configuration item.</li>
|
117
|
+
<li>[<a class="reference internal" href="../reference/alias.html"><span class="doc">Alias</span></a>] Supported aliasing table and column names.</li>
|
118
|
+
<li>[hash table] Added total key size overflow check.</li>
|
119
|
+
<li>[<a class="reference internal" href="../reference/commands/dump.html"><span class="doc">dump</span></a>] Supported dumping configurations
|
120
|
+
set by <a class="reference internal" href="../reference/commands/config_set.html"><span class="doc">config_set</span></a>.</li>
|
121
|
+
<li>[patricia trie] Improved inspection.
|
122
|
+
[GitHub#452][GitHub#457][Patch by Naoya Murakami]</li>
|
123
|
+
<li>[<code class="docutils literal"><span class="pre">grn_get_global_error_message()</span></code>] Added a new API that gets the
|
124
|
+
current error message in the process.</li>
|
125
|
+
<li>[<a class="reference internal" href="../reference/commands/lock_acquire.html"><span class="doc">lock_acquire</span></a>] Added a new command that
|
126
|
+
acquires a lock of a database, table or column.</li>
|
127
|
+
<li>[<a class="reference internal" href="../reference/commands/lock_release.html"><span class="doc">lock_release</span></a>] Added a new command that
|
128
|
+
releases a lock of a database, table or column.</li>
|
129
|
+
<li>[<a class="reference internal" href="../reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Updated bundled nginx
|
130
|
+
version to 1.9.10 from 1.9.7.</li>
|
131
|
+
</ul>
|
132
|
+
</div>
|
133
|
+
<div class="section" id="fixes">
|
134
|
+
<h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
|
135
|
+
<ul class="simple">
|
136
|
+
<li>Fixed mruby related crash bugs.</li>
|
137
|
+
<li>[Windows] Fixed label in installer.
|
138
|
+
[groonga-dev,03825][Reported by Atsushi Shinoda]</li>
|
139
|
+
<li>[doc] Fixed typos.
|
140
|
+
[GitHub#456][GitHub#458][Patch by tSU_RooT]</li>
|
141
|
+
<li>[<a class="reference internal" href="../server/memcached.html"><span class="doc">Memcached binary protocol</span></a>] Added more description.
|
142
|
+
[GitHub#454][Patch by Hiroyuki Sato]</li>
|
143
|
+
<li>Fixed a bug that <a class="reference internal" href="../reference/command/command_version.html"><span class="doc">Command version</span></a> specified
|
144
|
+
by <code class="docutils literal"><span class="pre">command_version</span></code> parameter in a request isn't reset.</li>
|
145
|
+
</ul>
|
146
|
+
</div>
|
147
|
+
<div class="section" id="thanks">
|
148
|
+
<h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
|
149
|
+
<ul class="simple">
|
150
|
+
<li>Naoya Murakami</li>
|
151
|
+
<li>Atsushi Shinoda</li>
|
152
|
+
<li>tSU_RooT</li>
|
153
|
+
<li>Hiroyuki Sato</li>
|
154
|
+
</ul>
|
155
|
+
</div>
|
156
|
+
</div>
|
157
|
+
<div class="section" id="release-5-1-1-2015-12-29">
|
158
|
+
<span id="release-5-1-1"></span><h2>Release 5.1.1 - 2015-12-29<a class="headerlink" href="#release-5-1-1-2015-12-29" title="Permalink to this headline">¶</a></h2>
|
159
|
+
<div class="section" id="id1">
|
160
|
+
<h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
|
161
|
+
<ul class="simple">
|
162
|
+
<li>[<a class="reference internal" href="../reference/grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a>] Supported <code class="docutils literal"><span class="pre">INDEX_COLUMN</span>
|
163
|
+
<span class="pre">==</span> <span class="pre">VALUE</span></code> as index search with an equal supported index.</li>
|
164
|
+
<li>Reduced the continuous same messages from inverted index module.</li>
|
165
|
+
<li>Supported detecting truncated tables by another process.
|
166
|
+
[GitHub#447] [groonga-dev,03761] [Reported by Yutaro SHIMAMURA]</li>
|
167
|
+
<li>[<a class="reference internal" href="../reference/api/grn_db.html#c.grn_db_recover" title="grn_db_recover"><code class="xref c c-func docutils literal"><span class="pre">grn_db_recover()</span></code></a>] Supported detecting a broken object.</li>
|
168
|
+
<li>Improved performance for sequential scan search by
|
169
|
+
<a class="reference internal" href="../reference/regular_expression.html"><span class="doc">Regular expression</span></a> match with constant pattern
|
170
|
+
such as <code class="docutils literal"><span class="pre">COLUMN</span> <span class="pre">@~</span> <span class="pre">"CONSTANT_PATTERN"</span></code>.</li>
|
171
|
+
</ul>
|
172
|
+
</div>
|
173
|
+
<div class="section" id="id2">
|
174
|
+
<h3>Fixes<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
|
175
|
+
<ul class="simple">
|
176
|
+
<li>Fixed build error on MessagePack support build.
|
177
|
+
[groonga-dev,03708] [Reported by Ryo Sugimoto]</li>
|
178
|
+
<li>[mruby] Fixed a crash bug on error.
|
179
|
+
mruby exception feature is disabled as workaround for now.</li>
|
180
|
+
<li>[<a class="reference internal" href="../reference/commands/thread_limit.html"><span class="doc">thread_limit</span></a>] Fixed a bug that
|
181
|
+
<code class="docutils literal"><span class="pre">thread_limit?max=1</span></code> may not reduce the number of current running
|
182
|
+
threads to <code class="docutils literal"><span class="pre">1</span></code>.</li>
|
183
|
+
<li>[<a class="reference internal" href="../reference/commands/thread_limit.html"><span class="doc">thread_limit</span></a>] Fixed a bug that
|
184
|
+
<code class="docutils literal"><span class="pre">thread_limit?max=1</span></code> may not return.</li>
|
185
|
+
<li>[<a class="reference internal" href="../reference/tuning.html"><span class="doc">Tuning</span></a>] Fixed wrong <code class="docutils literal"><span class="pre">sysctl</span></code> argument.
|
186
|
+
[GitHub#448] [Reported by Hiroyuki Sato]</li>
|
187
|
+
</ul>
|
188
|
+
</div>
|
189
|
+
<div class="section" id="id3">
|
190
|
+
<h3>Thanks<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
|
191
|
+
<ul class="simple">
|
192
|
+
<li>Ryo Sugimoto</li>
|
193
|
+
<li>Yutaro SHIMAMURA</li>
|
194
|
+
<li>Hiroyuki Sato</li>
|
195
|
+
</ul>
|
196
|
+
</div>
|
197
|
+
</div>
|
198
|
+
<div class="section" id="release-5-1-0-2015-11-29">
|
199
|
+
<span id="release-5-1-0"></span><h2>Release 5.1.0 - 2015-11-29<a class="headerlink" href="#release-5-1-0-2015-11-29" title="Permalink to this headline">¶</a></h2>
|
200
|
+
<div class="section" id="id4">
|
201
|
+
<h3>Improvements<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
|
202
|
+
<ul class="simple">
|
203
|
+
<li>[patiricia trie] Added an error check for the max total key
|
204
|
+
size. See <a class="reference internal" href="../limitations.html"><span class="doc">Limitations</span></a> about the max total key size.</li>
|
205
|
+
<li>[<a class="reference internal" href="../reference/executables/grndb.html"><span class="doc">grndb</span></a>] Added a check for broken
|
206
|
+
object. The check can detect a case that the object can't be opened.</li>
|
207
|
+
<li>[<code class="docutils literal"><span class="pre">grn_obj_reindex()</span></code>] Added a new API that recreates existing
|
208
|
+
indexes.</li>
|
209
|
+
<li>[<a class="reference internal" href="../reference/commands/reindex.html"><span class="doc">reindex</span></a>] Added a new command that
|
210
|
+
recreates existing indexes.</li>
|
211
|
+
<li>[inverted index] Improved estimation precision for query.</li>
|
212
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Added fallback
|
213
|
+
mode for sequential search. If sequential search checked many
|
214
|
+
records but didn't find required the number of records, index search
|
215
|
+
is used as fallback.</li>
|
216
|
+
<li>[<code class="docutils literal"><span class="pre">grn_get_package_label()</span></code>] Added a new API that returns package
|
217
|
+
label. It returns <code class="docutils literal"><span class="pre">Groonga</span></code>.</li>
|
218
|
+
<li>[<a class="reference internal" href="../reference/executables/groonga-server-http.html"><span class="doc">Groonga HTTP server</span></a>] Added <code class="docutils literal"><span class="pre">Server:</span>
|
219
|
+
<span class="pre">Groonga/VERSION</span></code> response header.</li>
|
220
|
+
<li>[<a class="reference internal" href="../reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Improved performance
|
221
|
+
by reusing <code class="docutils literal"><span class="pre">grn_ctx</span></code> object.</li>
|
222
|
+
<li>[<code class="docutils literal"><span class="pre">grn_file_reader</span></code>] Added a new API that provides <code class="docutils literal"><span class="pre">fgets()</span></code>
|
223
|
+
feature. It fixes a crash bug of
|
224
|
+
<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>. If
|
225
|
+
<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a> is built with static C runtime
|
226
|
+
by Visual Studio, the crash bug is occurred.</li>
|
227
|
+
<li>[<a class="reference internal" href="../reference/functions/prefix_rk_search.html"><span class="doc">prefix_rk_search</span></a>] Added a new selector
|
228
|
+
that provides prefix RK search feature.</li>
|
229
|
+
<li>[<code class="docutils literal"><span class="pre">grn_obj_is_accessor()</span></code>] Added a new predicate that checks
|
230
|
+
whether the object is an accessor.</li>
|
231
|
+
<li>[<code class="docutils literal"><span class="pre">grn_obj_is_key_accessor()</span></code>] Added a new predicate that checks
|
232
|
+
whether the object is an accessor for <code class="docutils literal"><span class="pre">_key</span></code>
|
233
|
+
<a class="reference internal" href="../reference/columns/pseudo.html"><span class="doc">Pseudo column</span></a>.</li>
|
234
|
+
<li>Supported <a class="reference internal" href="../reference/command/pretty_print.html"><span class="doc">Pretty print</span></a> for JSON output.</li>
|
235
|
+
</ul>
|
236
|
+
</div>
|
237
|
+
<div class="section" id="id5">
|
238
|
+
<h3>Fixes<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
|
239
|
+
<ul class="simple">
|
240
|
+
<li>[inverted index] Fixed a possible infinite loop bug when log level
|
241
|
+
is <code class="docutils literal"><span class="pre">debug</span></code>.</li>
|
242
|
+
<li>Fixed a bug that <code class="docutils literal"><span class="pre">@</span></code> operator (match operator) may not match
|
243
|
+
record that should be matched in sequential search mode.</li>
|
244
|
+
<li>[patricia trie] Fixed a bug that invalid value may be returned for
|
245
|
+
empty string key. [groonga-dev,03632] [Reported by Naoya Murakami]</li>
|
246
|
+
</ul>
|
247
|
+
</div>
|
248
|
+
<div class="section" id="id6">
|
249
|
+
<h3>Thanks<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
|
250
|
+
<ul class="simple">
|
251
|
+
<li>Naoya Murakami</li>
|
252
|
+
</ul>
|
253
|
+
</div>
|
254
|
+
</div>
|
255
|
+
<div class="section" id="release-5-0-9-2015-10-29">
|
256
|
+
<span id="release-5-0-9"></span><h2>Release 5.0.9 - 2015-10-29<a class="headerlink" href="#release-5-0-9-2015-10-29" title="Permalink to this headline">¶</a></h2>
|
257
|
+
<div class="section" id="id7">
|
258
|
+
<h3>Improvements<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
|
259
|
+
<ul class="simple">
|
260
|
+
<li>[inverted index] Reduced log levels of logs for developers.</li>
|
261
|
+
<li>Flushed pending changed on creating new database. It guards database
|
262
|
+
from crash.</li>
|
263
|
+
<li>[<code class="docutils literal"><span class="pre">grn_geo_table_sort()</span></code>] Added a new API that sorts table by
|
264
|
+
geometry index.</li>
|
265
|
+
<li>[experimental] Added expression rewrite mechanism. You can write
|
266
|
+
custom expression rewriter by mruby. Expression rewriter can be used
|
267
|
+
for optimizing an expression, changing conditions in an expression
|
268
|
+
and so on.</li>
|
269
|
+
<li>[experimental] Added database global configuration mechanism. You
|
270
|
+
can put configurations (key and value pairs) into database. For
|
271
|
+
example, it will be used in <a class="reference internal" href="../reference/token_filters.html#token-filter-stop-word"><span class="std std-ref">TokenFilterStopWord</span></a> to custom
|
272
|
+
column name from <code class="docutils literal"><span class="pre">is_stop_word</span></code>.</li>
|
273
|
+
<li>[<code class="docutils literal"><span class="pre">grn_conf_set()</span></code>] Added a new API that sets a configuration.</li>
|
274
|
+
<li>[<code class="docutils literal"><span class="pre">grn_conf_get()</span></code>] Added a new API that gets a configuration.</li>
|
275
|
+
<li>[deb] Changed to <code class="docutils literal"><span class="pre">all</span></code> from <code class="docutils literal"><span class="pre">any</span></code> for
|
276
|
+
<code class="docutils literal"><span class="pre">Architecture</span></code> value.
|
277
|
+
[debian-bugs:799167][Reported by Matthias Klose]</li>
|
278
|
+
<li>[Windows][CMake] Supported building bundled MeCab.
|
279
|
+
[groonga-dev,03562][Reported by Sato]</li>
|
280
|
+
<li>[<a class="reference internal" href="../reference/commands/schema.html"><span class="doc">schema</span></a>] Added a new command that returns
|
281
|
+
schema. Schema is consists with loaded plugins, loaded tokenizers,
|
282
|
+
loaded normalizers, loaded token filters, defined tables and defined
|
283
|
+
columns.</li>
|
284
|
+
<li>[<a class="reference internal" href="../reference/api/plugin.html#c.grn_plugin_win32_base_dir" title="grn_plugin_win32_base_dir"><code class="xref c c-func docutils literal"><span class="pre">grn_plugin_win32_base_dir()</span></code></a>] Deprecated. Use
|
285
|
+
<a class="reference internal" href="../reference/api/plugin.html#c.grn_plugin_windows_base_dir" title="grn_plugin_windows_base_dir"><code class="xref c c-func docutils literal"><span class="pre">grn_plugin_windows_base_dir()</span></code></a> instead.</li>
|
286
|
+
<li>[<a class="reference internal" href="../reference/api/plugin.html#c.grn_plugin_windows_base_dir" title="grn_plugin_windows_base_dir"><code class="xref c c-func docutils literal"><span class="pre">grn_plugin_windows_base_dir()</span></code></a>] Renamed from
|
287
|
+
<a class="reference internal" href="../reference/api/plugin.html#c.grn_plugin_win32_base_dir" title="grn_plugin_win32_base_dir"><code class="xref c c-func docutils literal"><span class="pre">grn_plugin_win32_base_dir()</span></code></a>.</li>
|
288
|
+
<li>[<code class="docutils literal"><span class="pre">grn_obj_is_type()</span></code>] Add a new API that returns true when the
|
289
|
+
passed object is a type object.</li>
|
290
|
+
<li>[<code class="docutils literal"><span class="pre">grn_obj_is_tokenizer_proc()</span></code>] Add a new API that returns true
|
291
|
+
when the passed object is a tokenizer object.</li>
|
292
|
+
<li>[<code class="docutils literal"><span class="pre">grn_obj_is_normalizer_proc()</span></code>] Add a new API that returns true
|
293
|
+
when the passed object is a normalizer object.</li>
|
294
|
+
<li>[<code class="docutils literal"><span class="pre">grn_obj_is_token_filter_proc()</span></code>] Add a new API that returns true
|
295
|
+
when the passed object is a token filter object.</li>
|
296
|
+
<li>[<code class="docutils literal"><span class="pre">grn_ctx_get_all_types()</span></code>] Add a new API that returns all type
|
297
|
+
objects in database.</li>
|
298
|
+
<li>[<code class="docutils literal"><span class="pre">grn_ctx_get_all_tokenizers()</span></code>] Add a new API that returns all
|
299
|
+
tokenizer objects in database.</li>
|
300
|
+
<li>[<code class="docutils literal"><span class="pre">grn_ctx_get_all_normalizers()</span></code>] Add a new API that returns all
|
301
|
+
normalizer objects in database.</li>
|
302
|
+
<li>[<code class="docutils literal"><span class="pre">grn_ctx_get_all_token_filters()</span></code>] Add a new API that returns all
|
303
|
+
token filter objects in database.</li>
|
304
|
+
<li>[<code class="docutils literal"><span class="pre">grn_ctx_output_uint64()</span></code>] Add a new API that outputs 64bit
|
305
|
+
unsigned integer value.</li>
|
306
|
+
<li>[<code class="docutils literal"><span class="pre">grn_ctx_output_null()</span></code>] Add a new API that outputs <code class="docutils literal"><span class="pre">NULL</span></code>.</li>
|
307
|
+
<li>[<code class="docutils literal"><span class="pre">GRN_OBJ_IS_TRUE()</span></code>] Add a new API that returns true when the
|
308
|
+
passed object is true value.</li>
|
309
|
+
<li>[experimental] Enabled grn_ts by default.</li>
|
310
|
+
<li>[<a class="reference internal" href="../install/ubuntu.html"><span class="doc">Ubuntu</span></a>] Added Ubuntu 15.10 Wily Werewolf support.</li>
|
311
|
+
</ul>
|
312
|
+
</div>
|
313
|
+
<div class="section" id="id8">
|
314
|
+
<h3>Fixes<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
|
315
|
+
<ul class="simple">
|
316
|
+
<li>[patricia trie] Fixed a bug that the number of records may be
|
317
|
+
counted up unexpectedly on adding a new entry. [GitHub#417]</li>
|
318
|
+
<li>[patricia trie] Fixed a bug that a variable may be used
|
319
|
+
uninitialized.</li>
|
320
|
+
<li>[patricia trie] Fixed a bug that <code class="docutils literal"><span class="pre">grn_pat_cursor_next()</span></code> may enter
|
321
|
+
an infinite loop. [GitHub#419]</li>
|
322
|
+
<li>[patricia trie] Fixed a bug that deleting an entry may break
|
323
|
+
patricia trie.
|
324
|
+
[GitHub#415][groonga-dev,03515][Reported by Hiroshi Kagami]</li>
|
325
|
+
<li>[patricia trie] Fixed a bug that deleting a nonexistent entry may
|
326
|
+
break patricia trie. [GitHub#420]</li>
|
327
|
+
<li>Fixed a bug that wrong proc type is used for token filter objects.</li>
|
328
|
+
</ul>
|
329
|
+
</div>
|
330
|
+
<div class="section" id="id9">
|
331
|
+
<h3>Thanks<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
|
332
|
+
<ul class="simple">
|
333
|
+
<li>Matthias Klose</li>
|
334
|
+
<li>Hiroshi Kagami</li>
|
335
|
+
<li>Sato</li>
|
336
|
+
</ul>
|
337
|
+
</div>
|
338
|
+
</div>
|
339
|
+
<div class="section" id="release-5-0-8-2015-09-29">
|
340
|
+
<span id="release-5-0-8"></span><h2>Release 5.0.8 - 2015-09-29<a class="headerlink" href="#release-5-0-8-2015-09-29" title="Permalink to this headline">¶</a></h2>
|
341
|
+
<div class="section" id="id10">
|
342
|
+
<h3>Improvements<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3>
|
343
|
+
<ul>
|
344
|
+
<li><p class="first">[Windows] Supported build with MySQL again.</p>
|
345
|
+
</li>
|
346
|
+
<li><p class="first">[<a class="reference internal" href="../reference/grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a>] Changed return value type
|
347
|
+
to <code class="docutils literal"><span class="pre">Bool</span></code> from <code class="docutils literal"><span class="pre">Int32</span></code> for predicate operations such as
|
348
|
+
<a class="reference internal" href="../reference/grn_expr/script_syntax.html#script-syntax-match-operator"><span class="std std-ref">Match operator</span></a> and
|
349
|
+
<a class="reference internal" href="../reference/grn_expr/script_syntax.html#script-syntax-equal-operator"><span class="std std-ref">Equal operator</span></a>.</p>
|
350
|
+
</li>
|
351
|
+
<li><p class="first">[<a class="reference internal" href="../reference/api.html"><span class="doc">API</span></a>] Supported owning other <code class="docutils literal"><span class="pre">grn_obj</span></code> by
|
352
|
+
<code class="docutils literal"><span class="pre">GRN_PTR</span></code> and <code class="docutils literal"><span class="pre">GRN_PVECTOR</span></code> bulk. If you specify <code class="docutils literal"><span class="pre">GRN_OBJ_OWN</span></code>
|
353
|
+
flag to <code class="docutils literal"><span class="pre">GRN_PTR</span></code> and <code class="docutils literal"><span class="pre">GRN_PVECTOR</span></code> bulks, they call
|
354
|
+
<a class="reference internal" href="../reference/api/grn_obj.html#c.grn_obj_close" title="grn_obj_close"><code class="xref c c-func docutils literal"><span class="pre">grn_obj_close()</span></code></a> against <code class="docutils literal"><span class="pre">grn_obj</span></code> that is held by
|
355
|
+
them when they are closed.</p>
|
356
|
+
</li>
|
357
|
+
<li><p class="first">[incompatible][<a class="reference internal" href="../reference/regular_expression.html"><span class="doc">Regular expression</span></a>] Changed to
|
358
|
+
normalize regular expression match target text before matching. It's
|
359
|
+
for consistency and performance.</p>
|
360
|
+
<p>Other operations such as <a class="reference internal" href="../reference/grn_expr/script_syntax.html#script-syntax-prefix-search-operator"><span class="std std-ref">Prefix search operator</span></a>
|
361
|
+
normalize target text.</p>
|
362
|
+
<p>Some simple regular expressions such as <code class="docutils literal"><span class="pre">\Ahello</span></code> can be
|
363
|
+
evaluated by index. It's fast.</p>
|
364
|
+
<p>If target text isn't normalized, you need to use complex regular
|
365
|
+
expressions such as <code class="docutils literal"><span class="pre">\A[Hh]ello</span></code> and <code class="docutils literal"><span class="pre">\A(?i)hello</span></code>. Complex
|
366
|
+
regular expressions can't be evaluated by index. If target text is
|
367
|
+
normalized, you can use simple regular expressions. They may be
|
368
|
+
evaluated by index. It's fast.</p>
|
369
|
+
</li>
|
370
|
+
<li><p class="first">[doc] Improved documents.
|
371
|
+
[GitHub#393][GitHub#396][GitHub#397][GitHub#399][GitHub#403]
|
372
|
+
[GitHub#405][GitHub#409]
|
373
|
+
[Reported by Hiroyuki Sato][Patch by Hiroyuki Sato]</p>
|
374
|
+
</li>
|
375
|
+
<li><p class="first">[<a class="reference internal" href="../reference/functions/highlight_html.html"><span class="doc">highlight_html</span></a>] Improved performance.
|
376
|
+
[groonga-dev,03427] [Reported by Hiroyuki Sato]</p>
|
377
|
+
</li>
|
378
|
+
<li><p class="first">[<a class="reference internal" href="../reference/functions/snippet_html.html"><span class="doc">snippet_html</span></a>] Improved performance.</p>
|
379
|
+
</li>
|
380
|
+
<li><p class="first">[CMake] Stopped to run <code class="docutils literal"><span class="pre">pkg-config</span></code> twice.
|
381
|
+
[Patch by Sergei Golubchik]</p>
|
382
|
+
</li>
|
383
|
+
<li><p class="first">Removed needless check for year in time. B.C. is always invalid time
|
384
|
+
without this change. B.C. is valid time when system (<code class="docutils literal"><span class="pre">mktime()</span></code>)
|
385
|
+
supports it with this change.</p>
|
386
|
+
</li>
|
387
|
+
<li><p class="first">[<a class="reference internal" href="../reference/api/grn_ctx.html#c.grn_ctx_is_opened" title="grn_ctx_is_opened"><code class="xref c c-func docutils literal"><span class="pre">grn_ctx_is_opened()</span></code></a>] Added a new API that checks whether
|
388
|
+
object with the ID is opened or not.</p>
|
389
|
+
</li>
|
390
|
+
<li><p class="first">[<a class="reference internal" href="../reference/api/grn_obj.html#c.grn_obj_remove" title="grn_obj_remove"><code class="xref c c-func docutils literal"><span class="pre">grn_obj_remove()</span></code></a>] Reduced the maximum memory usage. If
|
391
|
+
<a class="reference internal" href="../reference/api/grn_thread.html#c.grn_thread_get_limit" title="grn_thread_get_limit"><code class="xref c c-func docutils literal"><span class="pre">grn_thread_get_limit()</span></code></a> returns <code class="docutils literal"><span class="pre">1</span></code>, it closes temporary
|
392
|
+
opened objects after it finished to use them.</p>
|
393
|
+
</li>
|
394
|
+
<li><p class="first">[doc][<a class="reference internal" href="../reference/commands/table_remove.html"><span class="doc">table_remove</span></a>] Updated with many
|
395
|
+
descriptions.</p>
|
396
|
+
</li>
|
397
|
+
<li><p class="first">[<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Ensured to add the last new
|
398
|
+
line to <a class="reference internal" href="../reference/commands/dump.html"><span class="doc">dump</span></a> result on stand alone mode.</p>
|
399
|
+
</li>
|
400
|
+
<li><p class="first">[<a class="reference internal" href="../reference/log.html#process-log"><span class="std std-ref">Process log</span></a>] Added Groonga version into <code class="docutils literal"><span class="pre">grn_init</span></code> log.</p>
|
401
|
+
</li>
|
402
|
+
<li><p class="first">Opened <a class="reference external" href="https://gitter.im/groonga/public">chat room on Gitter</a>.</p>
|
403
|
+
</li>
|
404
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/status.html"><span class="doc">status</span></a>] Added <code class="docutils literal"><span class="pre">start_time</span></code> as alias of
|
405
|
+
<code class="docutils literal"><span class="pre">starttime</span></code> for consistency. Other keys use <code class="docutils literal"><span class="pre">snake_case</span></code> style.
|
406
|
+
<code class="docutils literal"><span class="pre">starttime</span></code> is deprecated. Use <code class="docutils literal"><span class="pre">start_time</span></code> instead.</p>
|
407
|
+
</li>
|
408
|
+
<li><p class="first">Updated bundled Onigmo.</p>
|
409
|
+
</li>
|
410
|
+
<li><p class="first">[doc][<a class="reference internal" href="../reference/scorers/scorer_tf_at_most.html"><span class="doc">scorer_tf_at_most</span></a>] Documented.</p>
|
411
|
+
</li>
|
412
|
+
<li><p class="first">Supported columns for temporary table. It's only available C API
|
413
|
+
users for now. <a class="reference internal" href="../reference/commands/select.html"><span class="doc">select</span></a> will use this
|
414
|
+
feature in the next release.</p>
|
415
|
+
</li>
|
416
|
+
<li><p class="first">[<code class="docutils literal"><span class="pre">grn_vector_pop_element()</span></code>] Exported.</p>
|
417
|
+
</li>
|
418
|
+
<li><p class="first">[<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Added checks whether
|
419
|
+
acquiring lock is succeeded or not.</p>
|
420
|
+
</li>
|
421
|
+
<li><p class="first">[<a class="reference internal" href="../reference/executables/groonga-suggest-create-dataset.html"><span class="doc">groonga-suggest-create-dataset</span></a>]
|
422
|
+
Changed to use <code class="docutils literal"><span class="pre">--normalizer</span></code> instead of <code class="docutils literal"><span class="pre">KEY_NORMALIZE</span></code> because
|
423
|
+
<code class="docutils literal"><span class="pre">KEY_NORMALIZE</span></code> is deprecated.</p>
|
424
|
+
</li>
|
425
|
+
<li><p class="first">[<code class="docutils literal"><span class="pre">grn_obj_cast()</span></code>] Exported.</p>
|
426
|
+
</li>
|
427
|
+
<li><p class="first">[experimental][<code class="docutils literal"><span class="pre">grn_ii_cursor</span></code>] Exported.</p>
|
428
|
+
</li>
|
429
|
+
<li><p class="first">[experimental][<code class="docutils literal"><span class="pre">grn_ii_cursor_open()</span></code>] Exported.</p>
|
430
|
+
</li>
|
431
|
+
<li><p class="first">[experimental][<code class="docutils literal"><span class="pre">grn_ii_cursor_next()</span></code>] Exported.</p>
|
432
|
+
</li>
|
433
|
+
<li><p class="first">[experimental][<code class="docutils literal"><span class="pre">grn_ii_cursor_close()</span></code>] Exported.</p>
|
434
|
+
</li>
|
435
|
+
<li><p class="first">[<a class="reference internal" href="../reference/grn_expr/script_syntax.html#script-syntax-match-operator"><span class="std std-ref">Match operator</span></a>] Improved index detection.
|
436
|
+
Index its lexicon has a tokenizer is preferred.</p>
|
437
|
+
</li>
|
438
|
+
<li><p class="first">[<a class="reference internal" href="../reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Updated bundled nginx
|
439
|
+
to 1.9.5 that supports HTTP/2. HTTP/2 module is enabled.</p>
|
440
|
+
</li>
|
441
|
+
</ul>
|
442
|
+
</div>
|
443
|
+
<div class="section" id="id11">
|
444
|
+
<h3>Fixes<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
|
445
|
+
<ul class="simple">
|
446
|
+
<li>[<a class="reference internal" href="../reference/grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a>] Fixed a bug that <code class="docutils literal"><span class="pre">&!</span></code>
|
447
|
+
does nothing when right hand side is <code class="docutils literal"><span class="pre">true</span></code>.</li>
|
448
|
+
<li>Fixed performance regression with libtool 2.4.6.
|
449
|
+
[GitHub#406][GitHub#407] [Patch by Hiroyuki Sato]</li>
|
450
|
+
<li>[<a class="reference internal" href="../reference/grn_expr/script_syntax.html#script-syntax-equal-operator"><span class="std std-ref">Equal operator</span></a>] Fixed a bug that section is
|
451
|
+
ignored.</li>
|
452
|
+
</ul>
|
453
|
+
</div>
|
454
|
+
<div class="section" id="id12">
|
455
|
+
<h3>Thanks<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
|
456
|
+
<ul class="simple">
|
457
|
+
<li>Hiroyuki Sato</li>
|
458
|
+
<li>Sergei Golubchik</li>
|
459
|
+
</ul>
|
460
|
+
</div>
|
461
|
+
</div>
|
462
|
+
<div class="section" id="release-5-0-7-2015-08-31">
|
463
|
+
<span id="release-5-0-7"></span><h2>Release 5.0.7 - 2015-08-31<a class="headerlink" href="#release-5-0-7-2015-08-31" title="Permalink to this headline">¶</a></h2>
|
464
|
+
<p>This release includes a bug fix of <a class="reference internal" href="../reference/indexing.html#offline-index-construction"><span class="std std-ref">Offline index construction</span></a>.</p>
|
465
|
+
<p>If you're using any multiple column index (index column with
|
466
|
+
<code class="docutils literal"><span class="pre">WITH_SECTION</span></code> flag) and <a class="reference internal" href="../reference/indexing.html#offline-index-construction"><span class="std std-ref">Offline index construction</span></a>, we
|
467
|
+
recommend that you upgrade your Groonga.</p>
|
468
|
+
<p>This release has an important experimental feature for Windows users.
|
469
|
+
See "sparse file support" entry in the following improvement list for
|
470
|
+
details.</p>
|
471
|
+
<div class="section" id="id13">
|
472
|
+
<h3>Improvements<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
|
473
|
+
<ul>
|
474
|
+
<li><p class="first">[experimental][Windows] Added sparse file support. It's experimental
|
475
|
+
feature. It's disabled by default. You can enable it by specifying
|
476
|
+
<code class="docutils literal"><span class="pre">GRN_IO_USE_SPARSE=yes</span></code> environment variable.</p>
|
477
|
+
<p>It reduces database file size on Windows. Please try the feature and
|
478
|
+
report the result. Groonga developers are interested in the
|
479
|
+
followings:</p>
|
480
|
+
<ul class="simple">
|
481
|
+
<li>Disk usage</li>
|
482
|
+
<li>Performance (Improved? Degraded? No difference?)</li>
|
483
|
+
<li>Memory usage (Especially virtual memory usage)</li>
|
484
|
+
</ul>
|
485
|
+
</li>
|
486
|
+
<li><p class="first">[experimental][<a class="reference internal" href="../reference/commands/logical_shard_list.html"><span class="doc">logical_shard_list</span></a>] Added
|
487
|
+
a command that returns a shard list of the specified logical table.</p>
|
488
|
+
</li>
|
489
|
+
<li><p class="first">[experimental][<a class="reference internal" href="../reference/grn_expr/script_syntax.html#script-syntax-regular-expression-operator"><span class="std std-ref">Regular expression operator</span></a>]
|
490
|
+
Supported regular expression match against vector column without
|
491
|
+
index.</p>
|
492
|
+
</li>
|
493
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported
|
494
|
+
<code class="docutils literal"><span class="pre">--cache</span> <span class="pre">no</span></code> option. It's same as <a class="reference internal" href="../reference/commands/select.html#select-cache"><span class="std std-ref">cache</span></a> option in
|
495
|
+
<a class="reference internal" href="../reference/commands/select.html"><span class="doc">select</span></a>.</p>
|
496
|
+
</li>
|
497
|
+
<li><p class="first">[<a class="reference internal" href="../reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Supported returning
|
498
|
+
the max number of threads feature of
|
499
|
+
<a class="reference internal" href="../reference/commands/thread_limit.html"><span class="doc">thread_limit</span></a>. You can't set the max
|
500
|
+
number of threads.</p>
|
501
|
+
</li>
|
502
|
+
<li><p class="first">[<a class="reference internal" href="../reference/api/grn_db.html#c.grn_db_unmap" title="grn_db_unmap"><code class="xref c c-func docutils literal"><span class="pre">grn_db_unmap()</span></code></a>] Added a new API that unmaps all opened
|
503
|
+
tables and columns. It's a thread unsafe operation. You can't touch
|
504
|
+
the database while <a class="reference internal" href="../reference/api/grn_db.html#c.grn_db_unmap" title="grn_db_unmap"><code class="xref c c-func docutils literal"><span class="pre">grn_db_unmap()</span></code></a> is running.</p>
|
505
|
+
</li>
|
506
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/database_unmap.html"><span class="doc">database_unmap</span></a>] Added a command that
|
507
|
+
unmaps all opened tables and columns in database.</p>
|
508
|
+
</li>
|
509
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/object_exist.html"><span class="doc">object_exist</span></a>] Added a command that
|
510
|
+
checks whether object with the specified name exists or not in
|
511
|
+
database.</p>
|
512
|
+
</li>
|
513
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/column_copy.html"><span class="doc">column_copy</span></a>] Added a command that copies
|
514
|
+
all values from source column to destination column.</p>
|
515
|
+
<p>You can use this command to change column value type, column type,
|
516
|
+
table type and so on.</p>
|
517
|
+
</li>
|
518
|
+
<li><p class="first">Stopped to use non-standard <code class="docutils literal"><span class="pre">__uint32_t</span></code>
|
519
|
+
type. [GitHub#375][Reported by Natanael Copa]</p>
|
520
|
+
</li>
|
521
|
+
<li><p class="first">[experimental][Windows] Supported Windows Event log.</p>
|
522
|
+
</li>
|
523
|
+
<li><p class="first">[mruby] Supported error handling on mruby initialization error.</p>
|
524
|
+
</li>
|
525
|
+
<li><p class="first">[experimental][<a class="reference internal" href="../reference/commands/thread_limit.html"><span class="doc">thread_limit</span></a>] Renamed from
|
526
|
+
<code class="docutils literal"><span class="pre">thread_count</span></code>.</p>
|
527
|
+
</li>
|
528
|
+
<li><p class="first">Supported logging used indexes in <code class="docutils literal"><span class="pre">info</span></code> level and <code class="docutils literal"><span class="pre">debug</span></code>
|
529
|
+
level. It can be used like <code class="docutils literal"><span class="pre">EXPLAIN</span></code> in RDBMS. It's useful to
|
530
|
+
improve slow query.</p>
|
531
|
+
</li>
|
532
|
+
<li><p class="first">[doc] Replaced deprecated <code class="docutils literal"><span class="pre">KEY_NORMALIZE</span></code> flags.
|
533
|
+
[GitHub#378][GitHub#380][GitHub#382] [Patch by Hiroyuki Sato]</p>
|
534
|
+
</li>
|
535
|
+
<li><p class="first">[doc] Removed needless Sphinx configurations.
|
536
|
+
[GitHub#379] [Patch by Ayumu Osanai]</p>
|
537
|
+
</li>
|
538
|
+
<li><p class="first">[experimental][incompatible][<a class="reference internal" href="../reference/grn_expr/script_syntax.html#script-syntax-regular-expression-operator"><span class="std std-ref">Regular expression operator</span></a>]
|
539
|
+
Changed <code class="docutils literal"><span class="pre">.</span></code> match behavior. <code class="docutils literal"><span class="pre">.</span></code> matches new line. It's backward
|
540
|
+
incompatible change.</p>
|
541
|
+
</li>
|
542
|
+
<li><p class="first">[doc][<a class="reference internal" href="../contribution/development/build.html"><span class="doc">How to build Groonga at the repository</span></a>] Added a document about
|
543
|
+
building Groonga as Groonga developer.
|
544
|
+
[GitHub#353] [Suggested by Hiro Yoshioka]</p>
|
545
|
+
</li>
|
546
|
+
</ul>
|
547
|
+
</div>
|
548
|
+
<div class="section" id="id14">
|
549
|
+
<h3>Fixes<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
|
550
|
+
<ul>
|
551
|
+
<li><p class="first">[mruby] Fixed a time overflow bug.</p>
|
552
|
+
</li>
|
553
|
+
<li><p class="first">[<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Fixed a crash bug when
|
554
|
+
PID file can't be created. [GitHub#368] [Reported by Hiroyuki Sato]</p>
|
555
|
+
</li>
|
556
|
+
<li><p class="first">Fixed a bug that <a class="reference internal" href="../reference/indexing.html#offline-index-construction"><span class="std std-ref">Offline index construction</span></a> may generate
|
557
|
+
broken index. It may be caused for multiple column index. In other
|
558
|
+
words, index column with <code class="docutils literal"><span class="pre">WITH_SECTION</span></code> flag may be broken.</p>
|
559
|
+
<p>If you're using <a class="reference internal" href="../reference/indexing.html#online-index-construction"><span class="std std-ref">Online index construction</span></a> for index columns
|
560
|
+
with <code class="docutils literal"><span class="pre">WITH_SECTION</span></code> flag, this bug isn't affected.</p>
|
561
|
+
<p>You can recover this bug by recreating existing multiple column
|
562
|
+
indexes.</p>
|
563
|
+
</li>
|
564
|
+
<li><p class="first">[<a class="reference internal" href="../reference/functions/query.html"><span class="doc">query</span></a>] Fixed a crash bug when
|
565
|
+
<a class="reference internal" href="../reference/functions/query.html"><span class="doc">query</span></a> is used in <a class="reference internal" href="../reference/commands/select.html#select-scorer"><span class="std std-ref">scorer</span></a>.</p>
|
566
|
+
</li>
|
567
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/select.html#select-filter"><span class="std std-ref">filter</span></a>] Fixed a bug that
|
568
|
+
<a class="reference internal" href="../reference/grn_expr/script_syntax.html#script-syntax-bitwise-not"><span class="std std-ref">Bitwise NOT operator</span></a> against unsigned int value doesn't
|
569
|
+
work for comparing to <code class="docutils literal"><span class="pre">-NUMBER_LITERAL</span></code>.</p>
|
570
|
+
<p>For example, the following expression doesn't work:</p>
|
571
|
+
<div class="highlight-none"><div class="highlight"><pre><span></span>~UINT32_COLUMN == -6
|
572
|
+
</pre></div>
|
573
|
+
</div>
|
574
|
+
</li>
|
575
|
+
<li><p class="first">Fixed a bug that <a class="reference internal" href="../reference/grn_expr/script_syntax.html#script-syntax-regular-expression-operator"><span class="std std-ref">Regular expression operator</span></a>
|
576
|
+
doesn't work in multithread.</p>
|
577
|
+
</li>
|
578
|
+
<li><p class="first">Fixed some memory leaks.</p>
|
579
|
+
</li>
|
580
|
+
<li><p class="first">Fixed a build error. [GitHub#381] [Patch by Hiroshi Hatake]</p>
|
581
|
+
</li>
|
582
|
+
</ul>
|
583
|
+
</div>
|
584
|
+
<div class="section" id="id15">
|
585
|
+
<h3>Thanks<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
|
586
|
+
<ul class="simple">
|
587
|
+
<li>Hiroyuki Sato</li>
|
588
|
+
<li>Natanael Copa</li>
|
589
|
+
<li>Ayumu Osanai</li>
|
590
|
+
<li>Hiroshi Hatake</li>
|
591
|
+
<li>Hiro Yoshioka</li>
|
592
|
+
</ul>
|
593
|
+
</div>
|
594
|
+
</div>
|
595
|
+
<div class="section" id="release-5-0-6-2015-07-29">
|
596
|
+
<span id="release-5-0-6"></span><h2>Release 5.0.6 - 2015-07-29<a class="headerlink" href="#release-5-0-6-2015-07-29" title="Permalink to this headline">¶</a></h2>
|
597
|
+
<div class="section" id="id16">
|
598
|
+
<h3>Improvements<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
|
599
|
+
<ul>
|
600
|
+
<li><p class="first">[<a class="reference internal" href="../install/ubuntu.html"><span class="doc">Ubuntu</span></a>] Dropped Ubuntu 14.10 (Utopic Unicorn) support. It had been
|
601
|
+
End of Life on July 23, 2015.</p>
|
602
|
+
</li>
|
603
|
+
<li><p class="first">Supported offline index construction for reference vector. For example, <code class="docutils literal"><span class="pre">load</span></code>
|
604
|
+
data before <code class="docutils literal"><span class="pre">column_create</span></code> an index:</p>
|
605
|
+
<div class="highlight-none"><div class="highlight"><pre><span></span>table_create Entries TABLE_NO_KEY
|
606
|
+
column_create Entries numbers COLUMN_VECTOR Int32
|
607
|
+
|
608
|
+
load --table Entries
|
609
|
+
[
|
610
|
+
["numbers"],
|
611
|
+
[[18, 19, 20]],
|
612
|
+
[[100, 200]]
|
613
|
+
]
|
614
|
+
|
615
|
+
table_create Numbers TABLE_PAT_KEY Int32
|
616
|
+
column_create Numbers entries_numbers COLUMN_INDEX Entries numbers
|
617
|
+
|
618
|
+
select Numbers --output_columns _key
|
619
|
+
</pre></div>
|
620
|
+
</div>
|
621
|
+
</li>
|
622
|
+
<li><p class="first">Supported <code class="docutils literal"><span class="pre">'vector_text_column</span> <span class="pre">@</span> <span class="pre">"element"'</span></code> without index. For example, the
|
623
|
+
<code class="docutils literal"><span class="pre">select</span></code> command in the following commands:</p>
|
624
|
+
<div class="highlight-none"><div class="highlight"><pre><span></span>table_create Memos TABLE_NO_KEY
|
625
|
+
column_create Memos tags COLUMN_VECTOR Text
|
626
|
+
|
627
|
+
load --table Memos
|
628
|
+
[
|
629
|
+
{"tags": ["Groonga", "Rroonga", "Mroonga"]}
|
630
|
+
]
|
631
|
+
|
632
|
+
select Memos --filter 'tags @ "Rroonga"'
|
633
|
+
</pre></div>
|
634
|
+
</div>
|
635
|
+
</li>
|
636
|
+
<li><p class="first">Supported <code class="docutils literal"><span class="pre">'fixed_size_type_vector_column</span> <span class="pre">@</span> <span class="pre">n'</span></code> without index. For example, the
|
637
|
+
<code class="docutils literal"><span class="pre">select</span></code> command in the following commands:</p>
|
638
|
+
<div class="highlight-none"><div class="highlight"><pre><span></span>table_create Memos TABLE_NO_KEY
|
639
|
+
column_create Memos numbers COLUMN_VECTOR Int32
|
640
|
+
|
641
|
+
load --table Memos
|
642
|
+
[
|
643
|
+
{"numbers": [1, 2, 3]}
|
644
|
+
]
|
645
|
+
|
646
|
+
select Memos --filter 'numbers @ 2'
|
647
|
+
</pre></div>
|
648
|
+
</div>
|
649
|
+
</li>
|
650
|
+
<li><p class="first">[<a class="reference internal" href="../install/centos.html"><span class="doc">CentOS</span></a>][<a class="reference internal" href="../server/package.html"><span class="doc">Server packages</span></a>][<a class="reference internal" href="../reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>]
|
651
|
+
Show exit status. [GitHub#357] [Patch by jacob16bit]</p>
|
652
|
+
</li>
|
653
|
+
<li><p class="first">[<a class="reference internal" href="../install/windows.html"><span class="doc">Windows</span></a>][<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Supported <code class="docutils literal"><span class="pre">--pid-path</span></code>.</p>
|
654
|
+
</li>
|
655
|
+
<li><p class="first">[<a class="reference internal" href="../install/windows.html"><span class="doc">Windows</span></a>] Allowed to delete file that is opened by other process.</p>
|
656
|
+
</li>
|
657
|
+
<li><p class="first">Accepted selector only proc. Note that the proc can't be used as function. It means
|
658
|
+
that the proc can't be used with sequential search.</p>
|
659
|
+
</li>
|
660
|
+
<li><p class="first">Supported function call with complex argument. An example complex argument is
|
661
|
+
<code class="docutils literal"><span class="pre">Table["key"].column</span></code>. For example:</p>
|
662
|
+
<div class="highlight-none"><div class="highlight"><pre><span></span>function(_key, Table["key"].column)
|
663
|
+
</pre></div>
|
664
|
+
</div>
|
665
|
+
</li>
|
666
|
+
<li><p class="first">[doc][<a class="reference internal" href="../tutorial.html"><span class="doc">Tutorial</span></a>] Added more description about database creation fails if DB_PATH
|
667
|
+
points to an existing file. [GitHub#354] [Suggested by Hirotaka Takayama]</p>
|
668
|
+
</li>
|
669
|
+
<li><p class="first">[doc][<a class="reference internal" href="../tutorial.html"><span class="doc">Tutorial</span></a>] Described JSON formatting tools.
|
670
|
+
[GitHub#355] [Suggested by tiwawan]</p>
|
671
|
+
</li>
|
672
|
+
<li><p class="first">[experimental] Added an API to get/set the number of threads. It's a experimental API.</p>
|
673
|
+
</li>
|
674
|
+
<li><p class="first">[experimental][<code class="docutils literal"><span class="pre">thread_count</span></code>] Added a command that get/set the number of threads.
|
675
|
+
It's a experimental command.</p>
|
676
|
+
</li>
|
677
|
+
<li><p class="first">[experimental][<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Supported changing the number
|
678
|
+
of threads by <code class="docutils literal"><span class="pre">thread_count</span></code> command. It's a experimental feature.</p>
|
679
|
+
</li>
|
680
|
+
<li><p class="first">[experimental][<a class="reference internal" href="../install/windows.html"><span class="doc">Windows</span></a>] Added Windows event log support.
|
681
|
+
It's a experimental feature.</p>
|
682
|
+
</li>
|
683
|
+
<li><p class="first">[experimental][<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Added Windows event log related
|
684
|
+
option <code class="docutils literal"><span class="pre">--use-windows-event-log</span></code>. It reports logs as Windows events.
|
685
|
+
It's a experimental feature.</p>
|
686
|
+
</li>
|
687
|
+
<li><p class="first">[<a class="reference internal" href="../install/windows.html"><span class="doc">Windows</span></a>] Used Groonga's default encoding for log message.</p>
|
688
|
+
</li>
|
689
|
+
<li><p class="first">Log used indexes in <code class="docutils literal"><span class="pre">INFO</span></code> level. The default level <code class="docutils literal"><span class="pre">NOTICE</span></code>. So the logs aren't
|
690
|
+
showed by default.</p>
|
691
|
+
</li>
|
692
|
+
<li><p class="first">[API] Added <code class="xref c c-func docutils literal"><span class="pre">grn_log_level_to_string()</span></code> and <code class="xref c c-func docutils literal"><span class="pre">grn_log_level_parse()</span></code>.</p>
|
693
|
+
</li>
|
694
|
+
<li><p class="first">[<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Accepted log level name (e.g. <code class="docutils literal"><span class="pre">info</span></code>,
|
695
|
+
<code class="docutils literal"><span class="pre">debug</span></code> and so on) for <code class="docutils literal"><span class="pre">--log-level</span></code> value.</p>
|
696
|
+
</li>
|
697
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/log_level.html"><span class="doc">log_level</span></a>][<a class="reference internal" href="../reference/commands/log_put.html"><span class="doc">log_put</span></a>]
|
698
|
+
Accepted log level name for <code class="docutils literal"><span class="pre">--level</span></code> argument.</p>
|
699
|
+
</li>
|
700
|
+
<li><p class="first">[plugin] Added <code class="xref c c-func docutils literal"><span class="pre">grn_command_input_get_arguments()</span></code>.</p>
|
701
|
+
</li>
|
702
|
+
<li><p class="first">Updated sharding plugins.</p>
|
703
|
+
<ul class="simple">
|
704
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Fixed output format.
|
705
|
+
It has become <a class="reference internal" href="../reference/commands/select.html"><span class="doc">select</span></a> compatible format.</li>
|
706
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported the following parameters.<ul>
|
707
|
+
<li><code class="docutils literal"><span class="pre">--output_columns</span></code></li>
|
708
|
+
<li><code class="docutils literal"><span class="pre">--offset</span></code></li>
|
709
|
+
<li><code class="docutils literal"><span class="pre">--limit</span></code></li>
|
710
|
+
<li><code class="docutils literal"><span class="pre">--drilldown</span></code></li>
|
711
|
+
<li><code class="docutils literal"><span class="pre">--drilldown_sortby</span></code></li>
|
712
|
+
<li><code class="docutils literal"><span class="pre">--drilldown_offset</span></code></li>
|
713
|
+
<li><code class="docutils literal"><span class="pre">--drilldown_limit</span></code></li>
|
714
|
+
</ul>
|
715
|
+
</li>
|
716
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Used the same default output_columns
|
717
|
+
(<code class="docutils literal"><span class="pre">"_id,</span> <span class="pre">_key,</span> <span class="pre">*"</span></code>) as <a class="reference internal" href="../reference/commands/select.html"><span class="doc">select</span></a>.</li>
|
718
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported
|
719
|
+
<a class="reference internal" href="../reference/commands/logical_select.html#logical-select-drilldown-label-calc-types"><span class="std std-ref">drilldown[${LABEL}].calc_types</span></a> and
|
720
|
+
<a class="reference internal" href="../reference/commands/logical_select.html#logical-select-drilldown-label-calc-target"><span class="std std-ref">drilldown[${LABEL}].calc_target</span></a> for labeled drilldown.</li>
|
721
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported cache.</li>
|
722
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Supported logging whether range index is
|
723
|
+
used or not.</li>
|
724
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Show target table name in debug log.</li>
|
725
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Supported cache.</li>
|
726
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported
|
727
|
+
<code class="docutils literal"><span class="pre">'fixed_size_type_vector_column</span> <span class="pre">@</span> <span class="pre">element'</span></code>.</li>
|
728
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Added <code class="docutils literal"><span class="pre">use_range_index</span></code> parameter.
|
729
|
+
It's a parameter for test. It should not be used for production.</li>
|
730
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Log which mode (range-index or
|
731
|
+
select mode) is used.</li>
|
732
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported cache.</li>
|
733
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported nested reference vector
|
734
|
+
accessor.</li>
|
735
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Used range_index value set by
|
736
|
+
<a class="reference internal" href="../reference/commands/logical_parameters.html"><span class="doc">logical_parameters</span></a>.</li>
|
737
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_parameters.html"><span class="doc">logical_parameters</span></a>] Added.</li>
|
738
|
+
</ul>
|
739
|
+
</li>
|
740
|
+
<li><p class="first">Added mruby APIs.</p>
|
741
|
+
<ul class="simple">
|
742
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Accessor#name</span></code>.</li>
|
743
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Column#[]</span></code>.</li>
|
744
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Column#scalar?</span></code>, <code class="docutils literal"><span class="pre">Column#vector?</span></code> and <code class="docutils literal"><span class="pre">Column#index?</span></code>.</li>
|
745
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Context#command_version</span></code> and <code class="docutils literal"><span class="pre">Context#command_version=</span></code> (accessors).</li>
|
746
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Context#with_command_version</span></code>.</li>
|
747
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Database#each_name</span></code>.</li>
|
748
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Groonga::Cache.current</span></code>.</li>
|
749
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Record</span></code>.</li>
|
750
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Table#each</span></code>.</li>
|
751
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">TableCursor#key</span></code>.</li>
|
752
|
+
<li>[mrb] Binded <code class="xref c c-func docutils literal"><span class="pre">grn_command_input_get_arguments()</span></code> to <code class="docutils literal"><span class="pre">CommandInput#arguments</span></code>.</li>
|
753
|
+
<li>[mrb] Binded <a class="reference internal" href="../reference/api/grn_table.html#c.grn_table_group" title="grn_table_group"><code class="xref c c-func docutils literal"><span class="pre">grn_table_group()</span></code></a> to <code class="docutils literal"><span class="pre">Table#group</span></code>.</li>
|
754
|
+
<li>[mrb] Binded <a class="reference internal" href="../reference/api/grn_table.html#c.grn_table_group_flags" title="grn_table_group_flags"><code class="xref c c-func docutils literal"><span class="pre">grn_table_group_flags()</span></code></a> to <code class="docutils literal"><span class="pre">TableGroupFlags</span></code>.</li>
|
755
|
+
<li>[mrb] Binded <code class="docutils literal"><span class="pre">GRN_COMMAND_VERSION_DEFAULT</span></code>.</li>
|
756
|
+
<li>[mrb] Binded <code class="docutils literal"><span class="pre">grn_cache</span></code>.</li>
|
757
|
+
<li>[mrb][estimate_size] Supported <code class="docutils literal"><span class="pre">(...</span> <span class="pre">||</span> <span class="pre">...)</span> <span class="pre">&&</span> <span class="pre">(...</span> <span class="pre">||</span> <span class="pre">...)</span></code> as expression case.</li>
|
758
|
+
<li>[mrb] Supported query log.</li>
|
759
|
+
</ul>
|
760
|
+
</li>
|
761
|
+
</ul>
|
762
|
+
</div>
|
763
|
+
<div class="section" id="id17">
|
764
|
+
<h3>Fixes<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
|
765
|
+
<ul>
|
766
|
+
<li><p class="first">Fixed a memory leak when an error is occurred in <a class="reference internal" href="../reference/api/grn_expr.html#c.grn_expr_exec" title="grn_expr_exec"><code class="xref c c-func docutils literal"><span class="pre">grn_expr_exec()</span></code></a>.
|
767
|
+
For example, unsupported operator (e.g. <code class="docutils literal"><span class="pre">GRN_OP_TERM_EXTRACT</span></code>) is used
|
768
|
+
(<code class="docutils literal"><span class="pre">not</span> <span class="pre">implemented</span> <span class="pre">operator</span> <span class="pre">assigned</span></code> is occurred for the case).</p>
|
769
|
+
</li>
|
770
|
+
<li><p class="first">[bindings/php] Added a missing check for a memory allocation failure.
|
771
|
+
[Reported by Bill Parker]</p>
|
772
|
+
</li>
|
773
|
+
<li><p class="first">[<a class="reference internal" href="../install/centos.html"><span class="doc">CentOS</span></a>][<a class="reference internal" href="../server/package.html"><span class="doc">Server packages</span></a>][logrotate] Fixed syntax error in script.</p>
|
774
|
+
</li>
|
775
|
+
<li><p class="first">[<a class="reference internal" href="../install/centos.html"><span class="doc">CentOS</span></a>][<a class="reference internal" href="../server/package.html"><span class="doc">Server packages</span></a>][logrotate] Fixed wrong daemon running check.</p>
|
776
|
+
</li>
|
777
|
+
<li><p class="first">[<a class="reference internal" href="../install/centos.html"><span class="doc">CentOS</span></a>][<a class="reference internal" href="../server/package.html"><span class="doc">Server packages</span></a>][logrotate] Stop to set owner/group to log files.
|
778
|
+
Because it's not consistent. groonga-httpd creates log files with root
|
779
|
+
owner/group. But logrotated log files are created with groonga
|
780
|
+
owner/group. [GitHub#358] [Reported by jacob16bit]</p>
|
781
|
+
</li>
|
782
|
+
<li><p class="first">[<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Fixed reported the maximum number of threads.</p>
|
783
|
+
</li>
|
784
|
+
<li><p class="first">[<a class="reference internal" href="../reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Remove a needless space in log message:</p>
|
785
|
+
<div class="highlight-none"><div class="highlight"><pre><span></span>|n| grn_fin (0) ->
|
786
|
+
|n| grn_fin (0)
|
787
|
+
^
|
788
|
+
</pre></div>
|
789
|
+
</div>
|
790
|
+
</li>
|
791
|
+
<li><p class="first">Fixed a bug that estimating size by regexp query with anchor (e.g. <code class="docutils literal"><span class="pre">\\\\A</span></code> in
|
792
|
+
<code class="docutils literal"><span class="pre">--filter</span> <span class="pre">'comment</span> <span class="pre">@~</span> <span class="pre">"\\\\Abc"'</span></code>) doesn't work. The feature is used in
|
793
|
+
<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>.</p>
|
794
|
+
</li>
|
795
|
+
<li><p class="first">[<a class="reference internal" href="../reference/command/request_id.html"><span class="doc">Request ID</span></a>] Fixed a memory leak when <code class="docutils literal"><span class="pre">request_id</span></code> byte size >= 24.</p>
|
796
|
+
</li>
|
797
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/lock_clear.html"><span class="doc">lock_clear</span></a>] Fixed a typo in command name in Syntax section.
|
798
|
+
[GitHub#363] [Reported by Christian Kakesa]</p>
|
799
|
+
</li>
|
800
|
+
<li><p class="first">[sharding] Fixed wrong min include detection for month range type.</p>
|
801
|
+
</li>
|
802
|
+
</ul>
|
803
|
+
</div>
|
804
|
+
<div class="section" id="id18">
|
805
|
+
<h3>Thanks<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h3>
|
806
|
+
<ul class="simple">
|
807
|
+
<li>Bill Parker</li>
|
808
|
+
<li>jacob16bit</li>
|
809
|
+
<li>Hirotaka Takayama</li>
|
810
|
+
<li>tiwawan</li>
|
811
|
+
<li>Christian Kakesa</li>
|
812
|
+
</ul>
|
813
|
+
</div>
|
814
|
+
</div>
|
815
|
+
<div class="section" id="release-5-0-5-2015-06-29">
|
816
|
+
<span id="release-5-0-5"></span><h2>Release 5.0.5 - 2015-06-29<a class="headerlink" href="#release-5-0-5-2015-06-29" title="Permalink to this headline">¶</a></h2>
|
817
|
+
<div class="section" id="id19">
|
818
|
+
<h3>Improvements<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
|
819
|
+
<ul>
|
820
|
+
<li><p class="first">Show correct error information such as NoSuchFileOrDirectory when opening a database.</p>
|
821
|
+
</li>
|
822
|
+
<li><p class="first">Don't set the default logger path for library use.</p>
|
823
|
+
<ul class="simple">
|
824
|
+
<li>It's backward incompatible change. But it will not effect to many users.</li>
|
825
|
+
<li>Server use (groonga command, Mroonga, PGroonga and so on) users can get
|
826
|
+
log by default. In server use, developers set up log in their software.</li>
|
827
|
+
<li>Most library use (Rroonga, groonga-gobject and so on) users couldn't get
|
828
|
+
log by default with earlier versions. The default log path is system
|
829
|
+
path such as /var/log/groonga/groonga.log. It's not writable for normal
|
830
|
+
users.</li>
|
831
|
+
</ul>
|
832
|
+
</li>
|
833
|
+
<li><p class="first">[windows] Show error information when memory isn't enough on failing <code class="docutils literal"><span class="pre">CreateFileMapping()</span></code>.</p>
|
834
|
+
</li>
|
835
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/tokenize.html"><span class="doc">tokenize</span></a>] Updated example to show new "force_prefix" value.
|
836
|
+
This value is added since 5.0.4.</p>
|
837
|
+
</li>
|
838
|
+
<li><p class="first">[windows] Show error information when disk has any problem (disk full and so on) on failing <code class="docutils literal"><span class="pre">FlushViewOfFile()</span></code>.</p>
|
839
|
+
</li>
|
840
|
+
<li><p class="first">[API] Added <code class="xref c c-func docutils literal"><span class="pre">grn_obj_flush()</span></code>.</p>
|
841
|
+
</li>
|
842
|
+
<li><p class="first">[API] Added <code class="xref c c-func docutils literal"><span class="pre">grn_obj_flush_recursive()</span></code>.</p>
|
843
|
+
</li>
|
844
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/io_flush.html"><span class="doc">io_flush</span></a>] Added. It flushes memory mapped data to disk.
|
845
|
+
Usually memory data automatically flush by an OS, but you can explicitly flush with
|
846
|
+
this command.</p>
|
847
|
+
</li>
|
848
|
+
<li><p class="first">[mruby] Binded <code class="docutils literal"><span class="pre">grn_obj_remove()</span></code> to Object#remove.</p>
|
849
|
+
</li>
|
850
|
+
<li><p class="first">[mruby] Binded <code class="docutils literal"><span class="pre">grn_table_delete()</span></code> and <code class="docutils literal"><span class="pre">grn_table_delete_by_id()</span></code> to Table#delete.</p>
|
851
|
+
</li>
|
852
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/logical_table_remove.html"><span class="doc">logical_table_remove</span></a>] Added.</p>
|
853
|
+
</li>
|
854
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Added. <code class="docutils literal"><span class="pre">--filter</span></code> is only supported for now.</p>
|
855
|
+
</li>
|
856
|
+
<li><p class="first">[cmake] Supported embedded MeCab tokenizer.</p>
|
857
|
+
</li>
|
858
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Supported month and day mixed shards.
|
859
|
+
In the same month, month shard must have earlier records rather than day
|
860
|
+
shards in the same month. For example:</p>
|
861
|
+
<div class="highlight-none"><div class="highlight"><pre><span></span>XXX_201506 <- includes only 2015-06-01 and 2015-06-02 records
|
862
|
+
XXX_20150603 <- includes only 2015-06-03 records
|
863
|
+
XXX_20150604 <- includes only 2015-06-04 records
|
864
|
+
</pre></div>
|
865
|
+
</div>
|
866
|
+
</li>
|
867
|
+
</ul>
|
868
|
+
</div>
|
869
|
+
<div class="section" id="id20">
|
870
|
+
<h3>Fixes<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h3>
|
871
|
+
<ul class="simple">
|
872
|
+
<li>Fixed wrong macro to include netinet/in.h.
|
873
|
+
[GitHub#348] [Reported by OBATA Akio]</li>
|
874
|
+
<li>[rpm][<a class="reference internal" href="../reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Fixed failing restart.
|
875
|
+
[GitHub#351] [Patch by jacob16bit]</li>
|
876
|
+
</ul>
|
877
|
+
</div>
|
878
|
+
<div class="section" id="id21">
|
879
|
+
<h3>Thanks<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h3>
|
880
|
+
<ul class="simple">
|
881
|
+
<li>OBATA Akio</li>
|
882
|
+
<li>jacob16bit</li>
|
883
|
+
</ul>
|
884
|
+
</div>
|
885
|
+
</div>
|
886
|
+
<div class="section" id="release-5-0-4-2015-05-29">
|
887
|
+
<span id="release-5-0-4"></span><h2>Release 5.0.4 - 2015-05-29<a class="headerlink" href="#release-5-0-4-2015-05-29" title="Permalink to this headline">¶</a></h2>
|
888
|
+
<div class="section" id="id22">
|
889
|
+
<h3>Improvements<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h3>
|
890
|
+
<ul class="simple">
|
891
|
+
<li>[mruby] Changed to use <code class="docutils literal"><span class="pre">inspect</span></code> to show meaningful error message for error value.</li>
|
892
|
+
<li>[mruby] Supported <code class="docutils literal"><span class="pre">Groonga::Bulk#inspect</span></code> to inspect bulk content.</li>
|
893
|
+
<li>[mruby] Supported <code class="docutils literal"><span class="pre">Bulk#value</span></code> to extract the value of record from bulk content.</li>
|
894
|
+
<li>[mruby] Supported estimating size for <code class="docutils literal"><span class="pre">reference_column</span> <span class="pre">==</span> <span class="pre">record_id</span></code> in
|
895
|
+
<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>. In above case, it can be searched
|
896
|
+
more effectively.</li>
|
897
|
+
<li>[<a class="reference internal" href="../reference/functions/sub_filter.html"><span class="doc">sub_filter</span></a>] Supported index column as <code class="docutils literal"><span class="pre">scope</span></code> parameter.</li>
|
898
|
+
<li>[<a class="reference internal" href="../reference/grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a>] Described clearly about numerical
|
899
|
+
value. [GitHub groonga/groonga.org#16] [Suggested by Hiroyuki Sato]</li>
|
900
|
+
<li>[<a class="reference internal" href="../reference/commands/select.html"><span class="doc">select</span></a>] Supported accessing other table's record in filter.
|
901
|
+
You can use <code class="docutils literal"><span class="pre">--filter</span> <span class="pre">'OTHER_TABLE[KEY].COLUMN'</span></code> for example.</li>
|
902
|
+
<li>[<a class="reference internal" href="../reference/commands/select.html"><span class="doc">select</span></a>] Supported operator in table key.
|
903
|
+
You can use <code class="docutils literal"><span class="pre">--filter</span> <span class="pre">'OTHER_TABLE["SOME</span> <span class="pre">STRING"</span> <span class="pre">+</span> <span class="pre">"ANOTHER</span> <span class="pre">STRING"].COLUMN'"</span></code> for example.</li>
|
904
|
+
<li>[example] Used Ruby 2.0 or later API in script for converting dictionary data.</li>
|
905
|
+
<li>Changed to show error message about invalid type of keys about table.</li>
|
906
|
+
<li>[doc] Fixed link from sourceforge.jp to osdn.me or osdn.jp about mailing list preference page.
|
907
|
+
SourceForge.jp is marked as obsoleted because of branding issue since May 11, 2015.</li>
|
908
|
+
<li>[<a class="reference internal" href="../reference/commands/tokenize.html"><span class="doc">tokenize</span></a>] Added <code class="docutils literal"><span class="pre">force_prefix</span></code> value to each token information. [Patch by Naoya Murakami]</li>
|
909
|
+
<li>Supported to search by shorter words such as 2 or less characters for <a class="reference internal" href="../reference/tokenizers.html#token-trigram"><span class="std std-ref">TokenTrigram</span></a>.
|
910
|
+
[Patch by Naoya Murakami]</li>
|
911
|
+
<li>[deb] Added service file for Systemd into groonga-httpd and groonga-server-gqtp packages.</li>
|
912
|
+
<li>[<a class="reference internal" href="../reference/commands/select.html"><span class="doc">select</span></a>] Ignored <code class="docutils literal"><span class="pre">--query</span></code> when its
|
913
|
+
value consists of only space characters. Space characters include
|
914
|
+
full-width space (<code class="docutils literal"><span class="pre">U+3000</span> <span class="pre">IDEOGRAPHIC</span> <span class="pre">SPACE</span></code> in
|
915
|
+
Unicode). [Suggested by TomyGX]</li>
|
916
|
+
</ul>
|
917
|
+
</div>
|
918
|
+
<div class="section" id="id23">
|
919
|
+
<h3>Fixes<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h3>
|
920
|
+
<ul class="simple">
|
921
|
+
<li>Fixed a crash bug when empty key is specified for <code class="docutils literal"><span class="pre">drilldown[label].keys</span></code>.</li>
|
922
|
+
<li>Fixed a bug that the return value of <code class="docutils literal"><span class="pre">grn_parse_query_flags</span></code> is not properly checked.
|
923
|
+
[GitHub#336] [Reported by Hiroaki Nakamura]</li>
|
924
|
+
<li>Fixed a build error on some BSD systems. They doesn't have <code class="docutils literal"><span class="pre">-i</span></code> option for <code class="docutils literal"><span class="pre">sed</span></code>.</li>
|
925
|
+
<li>Fixed a build error on Solaris. It is changed to initialize by <code class="docutils literal"><span class="pre">sizeof(msghdr)</span></code> in <code class="docutils literal"><span class="pre">memset()</span></code> because
|
926
|
+
<code class="docutils literal"><span class="pre">msg_control</span></code>, <code class="docutils literal"><span class="pre">msg_controllen</span></code> and <code class="docutils literal"><span class="pre">msg_flags</span></code> doesn't exist on Solaris by default.</li>
|
927
|
+
<li>[<a class="reference internal" href="../reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] Fixed a typo. [GitHub#338] [Reported by Hiroyuki Sato]</li>
|
928
|
+
<li>[<a class="reference internal" href="../reference/output.html"><span class="doc">Output</span></a>] Fixed markup. [GitHub groonga/groonga.org#17]
|
929
|
+
[Reported by Hiroyuki Sato]</li>
|
930
|
+
<li>Reduced getenv() in each <code class="docutils literal"><span class="pre">grn_ii_cursor_set_min()</span></code>. This fixes performance
|
931
|
+
regression on Windows.</li>
|
932
|
+
<li>Fixed a build error on OpenBSD. [groonga-dev,03255] [Reported by fbnteqr]</li>
|
933
|
+
<li>[<a class="reference internal" href="../reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Fixed a bug that same message is
|
934
|
+
logged.</li>
|
935
|
+
<li>Fixed a crash bug which is caused by double free memory.</li>
|
936
|
+
<li>Fixed a memory leak. It's occurred when <code class="docutils literal"><span class="pre">--match_columns</span></code> and <code class="docutils literal"><span class="pre">--query</span></code> are
|
937
|
+
used for non indexed text field and text fields have a value that isn't bulk
|
938
|
+
embeddable. Normally, 32byte over size text isn't bulk embeddable, so this bug
|
939
|
+
doesn't affect to the case if only small text less than 32byte are stored.</li>
|
940
|
+
<li>[<a class="reference internal" href="../reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] [TokenRegexp] Fixed a bug that it can't be searched
|
941
|
+
correctly when query contains characters which are treated as blank character.
|
942
|
+
For example, the newline - "\n" is typical one.</li>
|
943
|
+
</ul>
|
944
|
+
</div>
|
945
|
+
<div class="section" id="id24">
|
946
|
+
<h3>Thanks<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h3>
|
947
|
+
<ul class="simple">
|
948
|
+
<li>Hiroaki Nakamura</li>
|
949
|
+
<li>Hiroyuki Sato</li>
|
950
|
+
<li>Naoya Murakami</li>
|
951
|
+
<li>fbnteqr</li>
|
952
|
+
<li>TomyGX</li>
|
953
|
+
</ul>
|
954
|
+
</div>
|
955
|
+
</div>
|
956
|
+
<div class="section" id="release-5-0-3-2015-04-29">
|
957
|
+
<span id="release-5-0-3"></span><h2>Release 5.0.3 - 2015-04-29<a class="headerlink" href="#release-5-0-3-2015-04-29" title="Permalink to this headline">¶</a></h2>
|
958
|
+
<div class="section" id="id25">
|
959
|
+
<h3>Improvements<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h3>
|
960
|
+
<ul class="simple">
|
961
|
+
<li>[<a class="reference internal" href="../reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][<a class="reference internal" href="../reference/regular_expression.html"><span class="doc">Regular expression</span></a>]
|
962
|
+
Skip the last one character token.</li>
|
963
|
+
<li>[mruby] Supported regexp pattern for estimating size.</li>
|
964
|
+
<li>[mruby] Supported size estimation for accessor.</li>
|
965
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Removed <code class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_ENABLED</span></code>
|
966
|
+
environment variable which is introduced since Groonga 5.0.2.
|
967
|
+
Use <code class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_THRESHOLD=0</span></code> to disable range index search
|
968
|
+
feature.</li>
|
969
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported negative limit and offset.</li>
|
970
|
+
<li>[<a class="reference internal" href="../install/windows.html"><span class="doc">Windows</span></a>] Used <a class="reference external" href="https://github.com/groonga/groonga-admin">Groonga Admin</a> in package.</li>
|
971
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Changed threshold meaning:<ul>
|
972
|
+
<li>threshold <= 0.0: always use range index</li>
|
973
|
+
<li>threshold >= 1.0: never use range index</li>
|
974
|
+
</ul>
|
975
|
+
</li>
|
976
|
+
<li>[<a class="reference internal" href="../reference/commands/dump.html"><span class="doc">dump</span></a>] Supported plugin.</li>
|
977
|
+
<li>[<a class="reference internal" href="../reference/commands/dump.html"><span class="doc">dump</span></a>] Added the following options:<ul>
|
978
|
+
<li><code class="docutils literal"><span class="pre">--dump_plugins</span> <span class="pre">[yes(default)/no]</span></code></li>
|
979
|
+
<li><code class="docutils literal"><span class="pre">--dump_schema</span> <span class="pre">[yes(default)/no]</span></code></li>
|
980
|
+
<li><code class="docutils literal"><span class="pre">--dump_records</span> <span class="pre">[yes(default)/no]</span></code></li>
|
981
|
+
<li><code class="docutils literal"><span class="pre">--dump_indexes</span> <span class="pre">[yes(default)/no]</span></code></li>
|
982
|
+
</ul>
|
983
|
+
</li>
|
984
|
+
<li>[API] Added <code class="xref c c-func docutils literal"><span class="pre">grn_plugin_get_ruby_suffix()</span></code>.</li>
|
985
|
+
<li>[<a class="reference internal" href="../reference/commands/dump.html"><span class="doc">dump</span></a>] Fixed order to put index columns after reference columns
|
986
|
+
because index column may refer reference columns.</li>
|
987
|
+
<li>[<a class="reference internal" href="../reference/commands/dump.html"><span class="doc">dump</span></a>] Don't dump records of lexicon.</li>
|
988
|
+
<li>[<a class="reference internal" href="../reference/commands/dump.html"><span class="doc">dump</span></a>] Show <code class="docutils literal"><span class="pre">_id</span></code> for <code class="docutils literal"><span class="pre">TABLE_NO_KEY</span></code> again.</li>
|
989
|
+
<li>[<a class="reference internal" href="../reference/commands/dump.html"><span class="doc">dump</span></a>] Used offline index construnction.</li>
|
990
|
+
<li>Increased max hash key size from 4KiB (4096Byte) to 64KiB - 1 (65535Byte).</li>
|
991
|
+
<li>Increased max cache key size from 4KiB (4096Byte) to 64KiB - 1 (65535Byte).</li>
|
992
|
+
<li>Improved performance for nested index search.</li>
|
993
|
+
<li>Used index for nonexistent reference column value.</li>
|
994
|
+
<li>[experimental] Added plugin functions/vector. It includes <a class="reference internal" href="../reference/functions/vector_size.html"><span class="doc">vector_size</span></a> function.</li>
|
995
|
+
<li>[<a class="reference internal" href="../install/windows.html"><span class="doc">Windows</span></a>] Updated Visual Studio version
|
996
|
+
[GitHub groonga/meetup#4] [Reported by Hiroyuki Mizuhara]</li>
|
997
|
+
<li>[<a class="reference internal" href="../reference/commands/cache_limit.html"><span class="doc">cache_limit</span></a>] Expired old caches when the max N caches is decreased.
|
998
|
+
[Suggested by Gurunavi, Inc.]</li>
|
999
|
+
<li>Show more information such as errno for errors.</li>
|
1000
|
+
<li>[windows] Used secure functions on Windows.</li>
|
1001
|
+
<li>Added the following APIs to change log rotate threshold in file size.<ul>
|
1002
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_default_logger_set_rotate_threshold_size()</span></code></li>
|
1003
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_default_logger_get_rotate_threshold_size()</span></code></li>
|
1004
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_default_query_logger_set_rotate_threshold_size()</span></code></li>
|
1005
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_default_query_logger_get_rotate_threshold_size()</span></code></li>
|
1006
|
+
</ul>
|
1007
|
+
</li>
|
1008
|
+
<li>[experimental] Supported log rotation. The feature is disabled by default.
|
1009
|
+
You can enable log rotation by the following options:<ul>
|
1010
|
+
<li><code class="docutils literal"><span class="pre">--log-rotate-threshold-size</span></code></li>
|
1011
|
+
<li><code class="docutils literal"><span class="pre">--query-log-rotate-threshold-size</span></code></li>
|
1012
|
+
</ul>
|
1013
|
+
</li>
|
1014
|
+
<li>[<a class="reference internal" href="../server/gqtp.html"><span class="doc">GQTP</span></a>] Documented about GQTP server.</li>
|
1015
|
+
<li>[<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Documented groonga executable file partially.</li>
|
1016
|
+
<li>Supported Ubuntu 15.04 (Vivid Vervet).</li>
|
1017
|
+
<li>Supported Debian 8.0 (Jessie).</li>
|
1018
|
+
<li>[<a class="reference internal" href="../reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Updated bundled nginx version to the latest mainline (1.8.0).</li>
|
1019
|
+
</ul>
|
1020
|
+
</div>
|
1021
|
+
<div class="section" id="id26">
|
1022
|
+
<h3>Fixes<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h3>
|
1023
|
+
<ul class="simple">
|
1024
|
+
<li>[windows] Fixed a bug that <a class="reference internal" href="../reference/indexing.html#offline-index-construction"><span class="std std-ref">Offline index construction</span></a> is
|
1025
|
+
failed for large data (at least 1GB or larger) with Groonga built by
|
1026
|
+
Microsoft Visual C++. [Reported by Hideki ARAI]</li>
|
1027
|
+
<li>[mruby] Made <code class="docutils literal"><span class="pre">\\</span></code> index searchable in regular expression.</li>
|
1028
|
+
<li>Fixed a bug that <code class="docutils literal"><span class="pre">GRN_II_CURSOR_SET_MIN_ENABLE=yes</span></code> doesn't return some matched records.</li>
|
1029
|
+
<li>[sharding] Fixed a bug that partial range is handled as all range.</li>
|
1030
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Fixed a bug that <code class="docutils literal"><span class="pre">:order</span> <span class="pre">=></span> <span class="pre">"descending"</span></code> doesn't work.</li>
|
1031
|
+
<li>[<a class="reference internal" href="../reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Re-supported counting with range index.</li>
|
1032
|
+
<li>Fixed a bug causing malfunction of <code class="xref c c-func docutils literal"><span class="pre">grn_pat_del()</span></code>
|
1033
|
+
and added a test for invalid patricia trie node add case.
|
1034
|
+
[groonga-dev,03177] [Reported by yuya sako]</li>
|
1035
|
+
</ul>
|
1036
|
+
</div>
|
1037
|
+
<div class="section" id="id27">
|
1038
|
+
<h3>Thanks<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h3>
|
1039
|
+
<ul class="simple">
|
1040
|
+
<li>Hideki ARAI</li>
|
1041
|
+
<li>Hiroyuki Mizuhara</li>
|
1042
|
+
<li>Gurunavi, Inc.</li>
|
1043
|
+
<li>yuya sako</li>
|
1044
|
+
</ul>
|
1045
|
+
</div>
|
1046
|
+
</div>
|
1047
|
+
<div class="section" id="release-5-0-2-2015-03-31">
|
1048
|
+
<span id="release-5-0-2"></span><h2>Release 5.0.2 - 2015-03-31<a class="headerlink" href="#release-5-0-2-2015-03-31" title="Permalink to this headline">¶</a></h2>
|
1049
|
+
<p>It's a bug fix release of 5.0.1.</p>
|
1050
|
+
<div class="section" id="id28">
|
1051
|
+
<h3>Improvements<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h3>
|
1052
|
+
<ul class="simple">
|
1053
|
+
<li>Supported MessagePack 1.0.1. [Reported by Hiroshi Hatake]</li>
|
1054
|
+
<li>[logical_range_filter] Disabled range index by default. It's enabled
|
1055
|
+
when you set the enviromnent variable <code class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_ENABLED</span></code>
|
1056
|
+
to <code class="docutils literal"><span class="pre">yes</span></code>.</li>
|
1057
|
+
</ul>
|
1058
|
+
</div>
|
1059
|
+
<div class="section" id="id29">
|
1060
|
+
<h3>Fixes<a class="headerlink" href="#id29" title="Permalink to this headline">¶</a></h3>
|
1061
|
+
<ul class="simple">
|
1062
|
+
<li>Fixed a regression bug that JSONP doesn't work. It was introduced
|
1063
|
+
in Groonga 4.1.1.</li>
|
1064
|
+
<li>[windows] Fixed a bug that crash on x86 for Groonga 5.0.1.
|
1065
|
+
[groonga-dev,03131] [Reported by Atsushi Shinoda]</li>
|
1066
|
+
<li>Fixed a crash bug that libedit is not properly initialized. The
|
1067
|
+
problem is fixed in the environment such as CentOS 7.</li>
|
1068
|
+
</ul>
|
1069
|
+
</div>
|
1070
|
+
<div class="section" id="id30">
|
1071
|
+
<h3>Thanks<a class="headerlink" href="#id30" title="Permalink to this headline">¶</a></h3>
|
1072
|
+
<ul class="simple">
|
1073
|
+
<li>Atsushi Shinoda</li>
|
1074
|
+
<li>Hiroshi Hatake</li>
|
1075
|
+
</ul>
|
1076
|
+
</div>
|
1077
|
+
</div>
|
1078
|
+
<div class="section" id="release-5-0-1-2015-03-29">
|
1079
|
+
<span id="release-5-0-1"></span><h2>Release 5.0.1 - 2015-03-29<a class="headerlink" href="#release-5-0-1-2015-03-29" title="Permalink to this headline">¶</a></h2>
|
1080
|
+
<div class="section" id="id31">
|
1081
|
+
<h3>Improvements<a class="headerlink" href="#id31" title="Permalink to this headline">¶</a></h3>
|
1082
|
+
<ul>
|
1083
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported filter
|
1084
|
+
and sort.</p>
|
1085
|
+
</li>
|
1086
|
+
<li><p class="first">Supported range search by multiple column index.</p>
|
1087
|
+
</li>
|
1088
|
+
<li><p class="first">Added API <a class="reference internal" href="../reference/api/overview.html"><span class="doc">Overview</span></a> document for users who want
|
1089
|
+
to use Groonga as library.</p>
|
1090
|
+
</li>
|
1091
|
+
<li><p class="first">[incompatible] Changed internal type of <code class="docutils literal"><span class="pre">_score</span></code> to floating point
|
1092
|
+
number from 32bit integer number. This is incompatible change for DB
|
1093
|
+
API users. This <em>isn't</em> incompatible change for query API users. It
|
1094
|
+
means that users who just use <a class="reference internal" href="../reference/commands/select.html"><span class="doc">select</span></a>
|
1095
|
+
aren't affected. Use the following code that works with both older
|
1096
|
+
and newer Groonga:</p>
|
1097
|
+
<div class="highlight-c"><div class="highlight"><pre><span></span><span class="n">grn_obj</span> <span class="o">*</span><span class="n">score</span><span class="p">;</span>
|
1098
|
+
<span class="kt">double</span> <span class="n">score_value</span><span class="p">;</span>
|
1099
|
+
|
1100
|
+
<span class="k">if</span> <span class="p">(</span><span class="n">score</span><span class="o">-></span><span class="n">header</span><span class="p">.</span><span class="n">domain</span> <span class="o">==</span> <span class="n">GRN_DB_FLOAT</span><span class="p">)</span> <span class="p">{</span>
|
1101
|
+
<span class="n">score_value</span> <span class="o">=</span> <span class="n">GRN_FLOAT_VALUE</span><span class="p">(</span><span class="n">score</span><span class="p">);</span>
|
1102
|
+
<span class="p">}</span> <span class="k">else</span> <span class="p">{</span>
|
1103
|
+
<span class="n">score_value</span> <span class="o">=</span> <span class="p">(</span><span class="kt">double</span><span class="p">)</span><span class="n">GRN_INT32_VALUE_FLOAT_VALUE</span><span class="p">(</span><span class="n">score</span><span class="p">);</span>
|
1104
|
+
<span class="p">}</span>
|
1105
|
+
</pre></div>
|
1106
|
+
</div>
|
1107
|
+
</li>
|
1108
|
+
<li><p class="first">[<a class="reference internal" href="../reference/commands/select.html"><span class="doc">select</span></a>] Added more strict check for
|
1109
|
+
invalid drilldown parameter.</p>
|
1110
|
+
</li>
|
1111
|
+
<li><p class="first">Added <a class="reference internal" href="../reference/api/grn_ctx.html#c.grn_ctx_get_all_tables" title="grn_ctx_get_all_tables"><code class="xref c c-func docutils literal"><span class="pre">grn_ctx_get_all_tables()</span></code></a>. [Suggested by Masatoshi
|
1112
|
+
Teruya]</p>
|
1113
|
+
</li>
|
1114
|
+
<li><p class="first">Supported to customize score function. See <a class="reference internal" href="../reference/scorer.html"><span class="doc">Scorer</span></a>
|
1115
|
+
for details.</p>
|
1116
|
+
</li>
|
1117
|
+
<li><p class="first">[incompatible] Custom score function feature introduced API and ABI
|
1118
|
+
incompatibilities in DB API layer. If you're using
|
1119
|
+
<a class="reference internal" href="../reference/api/grn_search.html#c.grn_search_optarg" title="grn_search_optarg"><code class="xref c c-type docutils literal"><span class="pre">grn_search_optarg</span></code></a>, please check that your code initializes
|
1120
|
+
your <a class="reference internal" href="../reference/api/grn_search.html#c.grn_search_optarg" title="grn_search_optarg"><code class="xref c c-type docutils literal"><span class="pre">grn_search_optarg</span></code></a> by <code class="docutils literal"><span class="pre">0</span></code> like the following:</p>
|
1121
|
+
<div class="highlight-c"><div class="highlight"><pre><span></span><span class="n">grn_search_optarg</span> <span class="n">options</span><span class="p">;</span>
|
1122
|
+
<span class="n">memset</span><span class="p">(</span><span class="o">&</span><span class="n">options</span><span class="p">,</span> <span class="mi">0</span><span class="p">,</span> <span class="k">sizeof</span><span class="p">(</span><span class="n">grn_search_optarg</span><span class="p">));</span>
|
1123
|
+
</pre></div>
|
1124
|
+
</div>
|
1125
|
+
<p>If your code do the above thing, your code is API compatible and ABI
|
1126
|
+
incompatible. You just need to rebuild your code without
|
1127
|
+
modification.</p>
|
1128
|
+
<p>If your code doesn't the above thing, you need to added the above
|
1129
|
+
thing to your code.</p>
|
1130
|
+
</li>
|
1131
|
+
<li><p class="first">Added the following predicates that check <a class="reference internal" href="../reference/api/grn_obj.html#c.grn_obj" title="grn_obj"><code class="xref c c-type docutils literal"><span class="pre">grn_obj</span></code></a> type to
|
1132
|
+
DB API:</p>
|
1133
|
+
<ul class="simple">
|
1134
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_table()</span></code></li>
|
1135
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_proc_proc()</span></code></li>
|
1136
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_function_proc()</span></code></li>
|
1137
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_selector_proc()</span></code></li>
|
1138
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_scorer_proc()</span></code></li>
|
1139
|
+
</ul>
|
1140
|
+
</li>
|
1141
|
+
<li><p class="first">[experimental] Supported skipping posting list when searching
|
1142
|
+
popular term and rare term at the same time. It will improve
|
1143
|
+
performance. Set <code class="docutils literal"><span class="pre">GRN_II_CURSOR_SET_MIN_ENABLE</span></code> environment
|
1144
|
+
variable to <code class="docutils literal"><span class="pre">1</span></code> to enable the feature. The feature is disabled by
|
1145
|
+
default.</p>
|
1146
|
+
</li>
|
1147
|
+
<li><p class="first">[doc] Added <a class="reference internal" href="../reference/functions/in_values.html"><span class="doc">in_values</span></a> document.</p>
|
1148
|
+
</li>
|
1149
|
+
<li><p class="first">[doc] Added <a class="reference internal" href="../reference/commands/logical_count.html"><span class="doc">logical_count</span></a> document.</p>
|
1150
|
+
</li>
|
1151
|
+
<li><p class="first">[mruby] Implemented custom <code class="docutils literal"><span class="pre">#inspect</span></code> method. Is is useful for
|
1152
|
+
debugging.</p>
|
1153
|
+
</li>
|
1154
|
+
<li><p class="first">Added <a class="reference internal" href="../reference/scorers/scorer_tf_at_most.html"><span class="doc">scorer_tf_at_most</span></a> scorer. It
|
1155
|
+
limits not to exceed specified score regardless of term frequency.</p>
|
1156
|
+
</li>
|
1157
|
+
<li><p class="first">[mruby] Supported estimating matched records for selecting index
|
1158
|
+
search or sequential search.</p>
|
1159
|
+
</li>
|
1160
|
+
<li><p class="first">Added the following functions to estimate size by index:</p>
|
1161
|
+
<ul class="simple">
|
1162
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_expr_estimate_size()</span></code></li>
|
1163
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_ii_estimate_size_for_query()</span></code></li>
|
1164
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_ii_estimate_size_for_lexicon_cursor()</span></code></li>
|
1165
|
+
</ul>
|
1166
|
+
</li>
|
1167
|
+
<li><p class="first">Added missing <a class="reference internal" href="../reference/normalizers.html#normalizer-auto"><span class="std std-ref">NormalizerAuto</span></a> availability check. [GitHub#283]
|
1168
|
+
[Reported by Tasuku SUENAGA]</p>
|
1169
|
+
</li>
|
1170
|
+
<li><p class="first">Dropped Visual Studio 2010 support.</p>
|
1171
|
+
</li>
|
1172
|
+
<li><p class="first">[experimental][mecab] Supported chunked tokenization. This feature
|
1173
|
+
is a workaround for MeCab's "too long sentense" error. Specify
|
1174
|
+
<code class="docutils literal"><span class="pre">yes</span></code> to <code class="docutils literal"><span class="pre">GRN_MECAB_CHUNKED_TOKENIZE_ENABLED</span></code> environment
|
1175
|
+
variable to enable it. By this configuration, Groonga splits a long
|
1176
|
+
text (8192 bytes over text by default) into small chunks and passes
|
1177
|
+
each chunk to MeCab. By this process, the above error isn't
|
1178
|
+
occurred. Additionally, you can customize chunk threshold bytes by
|
1179
|
+
<code class="docutils literal"><span class="pre">GRN_MECAB_CHUNK_SIZE_THRESHOLD</span></code> environment variable. Note that
|
1180
|
+
<code class="docutils literal"><span class="pre">,</span></code>, <code class="docutils literal"><span class="pre">.</span></code>, <code class="docutils literal"><span class="pre">!</span></code>, <code class="docutils literal"><span class="pre">?</span></code>, <code class="docutils literal"><span class="pre">U+3001</span> <span class="pre">IDEOGRAPHIC</span> <span class="pre">COMMA</span></code>, <code class="docutils literal"><span class="pre">U+3002</span>
|
1181
|
+
<span class="pre">IDEOGRAPHIC</span> <span class="pre">FULL</span> <span class="pre">STOP</span></code>, <code class="docutils literal"><span class="pre">U+FF01</span> <span class="pre">FULLWIDTH</span> <span class="pre">EXCLAMATION</span> <span class="pre">MARK</span></code> and
|
1182
|
+
<code class="docutils literal"><span class="pre">U+FF1F</span> <span class="pre">FULLWIDTH</span> <span class="pre">QUESTION</span> <span class="pre">MARK</span></code> are treated as chunk delimiter
|
1183
|
+
characters.</p>
|
1184
|
+
</li>
|
1185
|
+
<li><p class="first">Supported <code class="docutils literal"><span class="pre">--pid-file</span></code> in server mode of
|
1186
|
+
<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>.</p>
|
1187
|
+
</li>
|
1188
|
+
<li><p class="first">[groonga-httpd] Supported graceful stop to clean Groonga. It doesn't
|
1189
|
+
terminate the open connections immediately.</p>
|
1190
|
+
</li>
|
1191
|
+
<li><p class="first">[experimental] Supported regular expression. See
|
1192
|
+
<a class="reference internal" href="../reference/regular_expression.html"><span class="doc">Regular expression</span></a> to know about how to use regular
|
1193
|
+
expression.</p>
|
1194
|
+
</li>
|
1195
|
+
<li><p class="first">[experimental] Added <a class="reference internal" href="../reference/commands/plugin_unregister.html"><span class="doc">plugin_unregister</span></a>
|
1196
|
+
command.</p>
|
1197
|
+
</li>
|
1198
|
+
<li><p class="first">[http][<a class="reference internal" href="../reference/commands/load.html"><span class="doc">load</span></a>] Added "," as chunk separator
|
1199
|
+
in POST data. It decreases internal buffer size and improves load
|
1200
|
+
time when POST data don't include any new line.</p>
|
1201
|
+
</li>
|
1202
|
+
<li><p class="first">[doc] Added <a class="reference internal" href="../reference/tokenizers.html"><span class="doc">Tokenizers</span></a> document.</p>
|
1203
|
+
</li>
|
1204
|
+
<li><p class="first">Improved POSIX.2 compatibility by using <code class="docutils literal"><span class="pre">.</span></code> as bash's "source"
|
1205
|
+
command replacement. [GitHub#317] [Patch by Jun Kuriyama]</p>
|
1206
|
+
</li>
|
1207
|
+
<li><p class="first">[windows] Changed to the default IO version 1. It reduces disk usage
|
1208
|
+
on Windows. [groonga-dev,03118] [Tested by ongaeshi]</p>
|
1209
|
+
</li>
|
1210
|
+
<li><p class="first">[httpd] Updated bundled nginx version to the latest mainline
|
1211
|
+
(1.7.11).</p>
|
1212
|
+
</li>
|
1213
|
+
<li><p class="first">Changed mime-type for TSV output to <code class="docutils literal"><span class="pre">text/tab-separated-values</span></code>
|
1214
|
+
from <code class="docutils literal"><span class="pre">text/plain</span></code>.</p>
|
1215
|
+
</li>
|
1216
|
+
<li><p class="first">[<a class="reference internal" href="../reference/token_filters.html#token-filter-stop-word"><span class="std std-ref">TokenFilterStopWord</span></a>] Supported
|
1217
|
+
<a class="reference internal" href="../reference/indexing.html#offline-index-construction"><span class="std std-ref">Offline index construction</span></a>. [GitHub#296] [Patch by Naoya
|
1218
|
+
Murakami]</p>
|
1219
|
+
</li>
|
1220
|
+
</ul>
|
1221
|
+
</div>
|
1222
|
+
<div class="section" id="id32">
|
1223
|
+
<h3>Fixes<a class="headerlink" href="#id32" title="Permalink to this headline">¶</a></h3>
|
1224
|
+
<ul class="simple">
|
1225
|
+
<li>Fixed not to use obsolete <code class="docutils literal"><span class="pre">--address</span></code> parameter in the default
|
1226
|
+
groonga.conf. <code class="docutils literal"><span class="pre">--bind-address</span></code> is used instead. [Groonga-talk]
|
1227
|
+
[Reported by Dewangga]</li>
|
1228
|
+
<li>[<a class="reference internal" href="../reference/commands/truncate.html"><span class="doc">truncate</span></a>] Fixed a bug that
|
1229
|
+
<a class="reference internal" href="../reference/tables.html#table-no-key"><span class="std std-ref">TABLE_NO_KEY</span></a> table can't be truncated.</li>
|
1230
|
+
<li>[mecab] Reduced needless logs for "empty token" and "ignore empty
|
1231
|
+
token".</li>
|
1232
|
+
<li>Fixed a bug that wrong section in index is used. It means that wrong
|
1233
|
+
search result is returned. If you satisfy all of the following
|
1234
|
+
conditions, this bug is occurred:<ul>
|
1235
|
+
<li>Multiple indexes are available.</li>
|
1236
|
+
<li>The first defined index or the last defined index are
|
1237
|
+
multi-column indexes.</li>
|
1238
|
+
<li>When both of the first defined index and the last defined index are
|
1239
|
+
multi-column indexes, source column orders are different in them.</li>
|
1240
|
+
</ul>
|
1241
|
+
</li>
|
1242
|
+
<li>Fixed a bug that passing Groonga command line to
|
1243
|
+
<a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a> from shell command line style
|
1244
|
+
usage always returns <code class="docutils literal"><span class="pre">0</span></code> as exit code. For example, <code class="docutils literal"><span class="pre">groonga</span>
|
1245
|
+
<span class="pre">DB_PATH</span> <span class="pre">nonexistent_command</span></code> always returned <code class="docutils literal"><span class="pre">0</span></code> as exist code.</li>
|
1246
|
+
<li>Fixed a bug that plugin path may be broken when two or more plugins
|
1247
|
+
registered. [Reported by Naoya Murakami]</li>
|
1248
|
+
<li>Fixed a bug that <code class="docutils literal"><span class="pre">Lexicon.index.source_column_name</span></code> style in
|
1249
|
+
<a class="reference internal" href="../reference/commands/select.html#select-match-columns"><span class="std std-ref">match_columns</span></a> doesn't work when source
|
1250
|
+
column specified by <code class="docutils literal"><span class="pre">source_column_name</span></code> has two or more
|
1251
|
+
indexes. [Reported by Naoya Murakami]</li>
|
1252
|
+
</ul>
|
1253
|
+
</div>
|
1254
|
+
<div class="section" id="id33">
|
1255
|
+
<h3>Thanks<a class="headerlink" href="#id33" title="Permalink to this headline">¶</a></h3>
|
1256
|
+
<ul class="simple">
|
1257
|
+
<li>Masatoshi Teruya</li>
|
1258
|
+
<li>Tasuku SUENAGA</li>
|
1259
|
+
<li>Dewangga</li>
|
1260
|
+
<li>Jun Kuriyama</li>
|
1261
|
+
<li>ongaeshi</li>
|
1262
|
+
<li>Naoya Murakami</li>
|
1263
|
+
</ul>
|
1264
|
+
</div>
|
1265
|
+
</div>
|
1266
|
+
<div class="section" id="release-5-0-0-2015-02-09">
|
1267
|
+
<span id="release-5-0-0"></span><h2>Release 5.0.0 - 2015-02-09<a class="headerlink" href="#release-5-0-0-2015-02-09" title="Permalink to this headline">¶</a></h2>
|
1268
|
+
<ul class="simple">
|
1269
|
+
<li>Bump version to 5.0.0!</li>
|
1270
|
+
</ul>
|
1271
|
+
<div class="section" id="id34">
|
1272
|
+
<h3>Improvements<a class="headerlink" href="#id34" title="Permalink to this headline">¶</a></h3>
|
1273
|
+
<ul class="simple">
|
1274
|
+
<li>[doc] Added <a class="reference internal" href="../reference/grn_expr/script_syntax.html#script-syntax-security"><span class="std std-ref">Security</span></a> about <a class="reference internal" href="../reference/grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a>.</li>
|
1275
|
+
<li>[experimental] Added sharding plugin. Execute <cite>register sharding</cite> to
|
1276
|
+
enable this feature in advance, then use <a class="reference internal" href="../reference/commands/logical_count.html"><span class="doc">logical_count</span></a> to get the number of records.</li>
|
1277
|
+
<li>[cmake] Supported embedded Groonga with Clang. It fixed compilation failure
|
1278
|
+
on FreeBSD 10.1. <a class="reference external" href="https://mariadb.atlassian.net/browse/MDEV-7293">[MDEV-7293]</a>
|
1279
|
+
[Reported by Bernard Spil]</li>
|
1280
|
+
<li>Supported to customize plugins directory. Set <cite>GRN_PLUGINS_DIR</cite> environment variable.</li>
|
1281
|
+
</ul>
|
1282
|
+
</div>
|
1283
|
+
<div class="section" id="id35">
|
1284
|
+
<h3>Fixes<a class="headerlink" href="#id35" title="Permalink to this headline">¶</a></h3>
|
1285
|
+
<ul class="simple">
|
1286
|
+
<li>Fixed build failure when system has an incompatible version of onigmo/oniguruma
|
1287
|
+
headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
1288
|
+
<li>Fixed time related build failure on MSVC [GitHub#237]</li>
|
1289
|
+
</ul>
|
1290
|
+
</div>
|
1291
|
+
<div class="section" id="id36">
|
1292
|
+
<h3>Thanks<a class="headerlink" href="#id36" title="Permalink to this headline">¶</a></h3>
|
1293
|
+
<ul class="simple">
|
1294
|
+
<li>Akinori MUSHA</li>
|
1295
|
+
<li>Bernard Spil</li>
|
1296
|
+
</ul>
|
1297
|
+
</div>
|
1298
|
+
</div>
|
1299
|
+
</div>
|
1300
|
+
|
1301
|
+
|
1302
|
+
</div>
|
1303
|
+
</div>
|
1304
|
+
</div>
|
1305
|
+
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
|
1306
|
+
<div class="sphinxsidebarwrapper">
|
1307
|
+
<h3><a href="../index.html">Table Of Contents</a></h3>
|
1308
|
+
<ul>
|
1309
|
+
<li><a class="reference internal" href="#">News - 5.x</a><ul>
|
1310
|
+
<li><a class="reference internal" href="#release-5-1-2-2016-01-29">Release 5.1.2 - 2016-01-29</a><ul>
|
1311
|
+
<li><a class="reference internal" href="#improvements">Improvements</a></li>
|
1312
|
+
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
1313
|
+
<li><a class="reference internal" href="#thanks">Thanks</a></li>
|
1314
|
+
</ul>
|
1315
|
+
</li>
|
1316
|
+
<li><a class="reference internal" href="#release-5-1-1-2015-12-29">Release 5.1.1 - 2015-12-29</a><ul>
|
1317
|
+
<li><a class="reference internal" href="#id1">Improvements</a></li>
|
1318
|
+
<li><a class="reference internal" href="#id2">Fixes</a></li>
|
1319
|
+
<li><a class="reference internal" href="#id3">Thanks</a></li>
|
1320
|
+
</ul>
|
1321
|
+
</li>
|
1322
|
+
<li><a class="reference internal" href="#release-5-1-0-2015-11-29">Release 5.1.0 - 2015-11-29</a><ul>
|
1323
|
+
<li><a class="reference internal" href="#id4">Improvements</a></li>
|
1324
|
+
<li><a class="reference internal" href="#id5">Fixes</a></li>
|
1325
|
+
<li><a class="reference internal" href="#id6">Thanks</a></li>
|
1326
|
+
</ul>
|
1327
|
+
</li>
|
1328
|
+
<li><a class="reference internal" href="#release-5-0-9-2015-10-29">Release 5.0.9 - 2015-10-29</a><ul>
|
1329
|
+
<li><a class="reference internal" href="#id7">Improvements</a></li>
|
1330
|
+
<li><a class="reference internal" href="#id8">Fixes</a></li>
|
1331
|
+
<li><a class="reference internal" href="#id9">Thanks</a></li>
|
1332
|
+
</ul>
|
1333
|
+
</li>
|
1334
|
+
<li><a class="reference internal" href="#release-5-0-8-2015-09-29">Release 5.0.8 - 2015-09-29</a><ul>
|
1335
|
+
<li><a class="reference internal" href="#id10">Improvements</a></li>
|
1336
|
+
<li><a class="reference internal" href="#id11">Fixes</a></li>
|
1337
|
+
<li><a class="reference internal" href="#id12">Thanks</a></li>
|
1338
|
+
</ul>
|
1339
|
+
</li>
|
1340
|
+
<li><a class="reference internal" href="#release-5-0-7-2015-08-31">Release 5.0.7 - 2015-08-31</a><ul>
|
1341
|
+
<li><a class="reference internal" href="#id13">Improvements</a></li>
|
1342
|
+
<li><a class="reference internal" href="#id14">Fixes</a></li>
|
1343
|
+
<li><a class="reference internal" href="#id15">Thanks</a></li>
|
1344
|
+
</ul>
|
1345
|
+
</li>
|
1346
|
+
<li><a class="reference internal" href="#release-5-0-6-2015-07-29">Release 5.0.6 - 2015-07-29</a><ul>
|
1347
|
+
<li><a class="reference internal" href="#id16">Improvements</a></li>
|
1348
|
+
<li><a class="reference internal" href="#id17">Fixes</a></li>
|
1349
|
+
<li><a class="reference internal" href="#id18">Thanks</a></li>
|
1350
|
+
</ul>
|
1351
|
+
</li>
|
1352
|
+
<li><a class="reference internal" href="#release-5-0-5-2015-06-29">Release 5.0.5 - 2015-06-29</a><ul>
|
1353
|
+
<li><a class="reference internal" href="#id19">Improvements</a></li>
|
1354
|
+
<li><a class="reference internal" href="#id20">Fixes</a></li>
|
1355
|
+
<li><a class="reference internal" href="#id21">Thanks</a></li>
|
1356
|
+
</ul>
|
1357
|
+
</li>
|
1358
|
+
<li><a class="reference internal" href="#release-5-0-4-2015-05-29">Release 5.0.4 - 2015-05-29</a><ul>
|
1359
|
+
<li><a class="reference internal" href="#id22">Improvements</a></li>
|
1360
|
+
<li><a class="reference internal" href="#id23">Fixes</a></li>
|
1361
|
+
<li><a class="reference internal" href="#id24">Thanks</a></li>
|
1362
|
+
</ul>
|
1363
|
+
</li>
|
1364
|
+
<li><a class="reference internal" href="#release-5-0-3-2015-04-29">Release 5.0.3 - 2015-04-29</a><ul>
|
1365
|
+
<li><a class="reference internal" href="#id25">Improvements</a></li>
|
1366
|
+
<li><a class="reference internal" href="#id26">Fixes</a></li>
|
1367
|
+
<li><a class="reference internal" href="#id27">Thanks</a></li>
|
1368
|
+
</ul>
|
1369
|
+
</li>
|
1370
|
+
<li><a class="reference internal" href="#release-5-0-2-2015-03-31">Release 5.0.2 - 2015-03-31</a><ul>
|
1371
|
+
<li><a class="reference internal" href="#id28">Improvements</a></li>
|
1372
|
+
<li><a class="reference internal" href="#id29">Fixes</a></li>
|
1373
|
+
<li><a class="reference internal" href="#id30">Thanks</a></li>
|
1374
|
+
</ul>
|
1375
|
+
</li>
|
1376
|
+
<li><a class="reference internal" href="#release-5-0-1-2015-03-29">Release 5.0.1 - 2015-03-29</a><ul>
|
1377
|
+
<li><a class="reference internal" href="#id31">Improvements</a></li>
|
1378
|
+
<li><a class="reference internal" href="#id32">Fixes</a></li>
|
1379
|
+
<li><a class="reference internal" href="#id33">Thanks</a></li>
|
1380
|
+
</ul>
|
1381
|
+
</li>
|
1382
|
+
<li><a class="reference internal" href="#release-5-0-0-2015-02-09">Release 5.0.0 - 2015-02-09</a><ul>
|
1383
|
+
<li><a class="reference internal" href="#id34">Improvements</a></li>
|
1384
|
+
<li><a class="reference internal" href="#id35">Fixes</a></li>
|
1385
|
+
<li><a class="reference internal" href="#id36">Thanks</a></li>
|
1386
|
+
</ul>
|
1387
|
+
</li>
|
1388
|
+
</ul>
|
1389
|
+
</li>
|
1390
|
+
</ul>
|
1391
|
+
|
1392
|
+
<div role="note" aria-label="source link">
|
1393
|
+
<h3>This Page</h3>
|
1394
|
+
<ul class="this-page-menu">
|
1395
|
+
<li><a href="../_sources/news/5.x.txt"
|
1396
|
+
rel="nofollow">Show Source</a></li>
|
1397
|
+
</ul>
|
1398
|
+
</div>
|
1399
|
+
<div id="searchbox" style="display: none" role="search">
|
1400
|
+
<h3>Quick search</h3>
|
1401
|
+
<form class="search" action="../search.html" method="get">
|
1402
|
+
<div><input type="text" name="q" /></div>
|
1403
|
+
<div><input type="submit" value="Go" /></div>
|
1404
|
+
<input type="hidden" name="check_keywords" value="yes" />
|
1405
|
+
<input type="hidden" name="area" value="default" />
|
1406
|
+
</form>
|
1407
|
+
</div>
|
1408
|
+
<script type="text/javascript">$('#searchbox').show(0);</script>
|
1409
|
+
</div>
|
1410
|
+
</div>
|
1411
|
+
<div class="clearer"></div>
|
1412
|
+
</div>
|
1413
|
+
<div class="related" role="navigation" aria-label="related navigation">
|
1414
|
+
<h3>Navigation</h3>
|
1415
|
+
<ul>
|
1416
|
+
<li class="right" style="margin-right: 10px">
|
1417
|
+
<a href="../genindex.html" title="General Index"
|
1418
|
+
>index</a></li>
|
1419
|
+
<li class="nav-item nav-item-0"><a href="../index.html">Groonga v6.0.7 documentation</a> »</li>
|
1420
|
+
</ul>
|
1421
|
+
</div>
|
1422
|
+
<div class="footer" role="contentinfo">
|
1423
|
+
© Copyright 2009-2016, Brazil, Inc.
|
1424
|
+
</div>
|
1425
|
+
</body>
|
1426
|
+
</html>
|