Sutou Kouhei
Sutou Kouhei
We need to use ruby/setup-ruby instead of actions/setup-ruby. actions/setup-ruby is deprecated. It doesn't support newer Rubies. See: https://github.com/actions/setup-ruby/commit/e932e7af67fc4a8fc77bd86b744acd4e42fe3543 We can use bundler-cache to run Bundler and cache the result with...
All Rubies that don't support Readline.line_buffer are EOL.
`hash_salt_path` parameter is for security. Here is a use cases. Use case: Don't version control hash salt. If we version control fluentd.conf, hash salt is also version controlled because we...
It seems that Apache Thrift wants to drop Boost dependency eventually. See also: https://github.com/apache/thrift/blob/4646a3557b822c3893dc6773882a689118b77611/lib/cpp/CMakeLists.txt#L20-L21 # Remove the following once lib/cpp no longer depends on boost headers: include(BoostMacros) This is a...
We can reproduce this by running `tools/verify-nidex-size-for-large-vector-delete.rb`: ```console $ tools/verify-index-size-for-large-vector-delete.rb 2022 2029 2037 ... 3253 3256 ``` The outputted `n_buffer_segments` values should not be increased unlimitedly.
Old Groonga uses `int` for score data type. Recent Groonga uses `double` for score data type. Now, we can use floating point number for score. How about using TF-IDF like...
If "dependent=no" (not default), column_remove reports error for a column that has one or more indexes. This change also changes grn_obj_remove(ctx, column) behavior. It reports error for a column that...
`groonga --protocol http` is useful because `groonga --protocol http` supports Apache Arrow but `groonga-httpd` doesn't support Apache Arrow yet.
We need to enumerate all threads. POSIX threads don't provide the API. So we need to manage created threads. (We have thin wrapper layer for creating a thread: `THREAD_CREATE`.) We...
```text table_create Sales TABLE_NO_KEY column_create Sales branch_name COLUMN_SCALAR ShortText column_create Sales price_per_month COLUMN_SCALAR UInt32 column_create Sales month COLUMN_SCALAR Time load --table Sales [ {"branch_name": "Sayama" , "price_per_month": "256125" , "month":...