Koo

Results 15 issues of Koo

Currently, `GlueSQL` lacks of some column_constraints like `PRIMARY KEY`. It would be nice if we support that. ```SQL CREATE TABLE SingleItem (id INTEGER PRIMARY KEY) ```

enhancement

I think ```ruby before_execute :some_callback ``` is much more nice API than below. ```ruby set_callback :execute, :before, :some_callback ``` So, I add helper method to provide similar interface in `ActiveRecord`...

**Is your feature request related to a problem? Please describe.** When I tried to trace rake task, I should put all names of rake task. But my application has tons...

feature-request
community

I'm considering turning off certain metrics that I think negligible because our metrics have too high cardinality. Is there any way to do that? If not, I'd love to make...

### Motivation / Background Similar to #51631, `ActiveSupport::XmlMini` could not handle `duration` type in XML, which is one of primitive data type. ( https://www.w3.org/TR/xmlschema-2/#duration ) ### Detail This Pull Request...

activesupport
ready

### Motivation / Background There are more performant algorithms than `zlib`, like `zstd` or `snappy`. So I made it possible to configure the compressor to take advantage of these more...

activerecord
docs

### Motivation / Background This Pull Request has been created to remove `FIXME` comment of `ActiveStorage::Service::MirrorService`. ### Detail This Pull Request use thread pool to parallelize `delete` and `delete_prefixed` in...

activestorage

Extending the approach taken by https://github.com/rails/kredis/pull/142, now users can set `expires_in` for `List`, `Set`, `UniqueList`, `OrderedSet`

As discussed in https://github.com/rails/kredis/pull/148#issuecomment-1990874665, docs are sufficient here since it's a new capability. I'll fix tests on lower versions using `INFO` command which is implemented in https://github.com/rails/kredis/pull/149.

There are many commands supported on only high versions of redis. For example `LPOS` or `NX` option in `EXPIRE`. So, if we can get version of current redis, we can...