Mark Paluch

Results 1230 comments of Mark Paluch

Thank you for your contribution. That's merged, polished, and backported now.

Thanks for the report. We should fix that issue in `HttpComponents.getHttpClientBuilder(…)`. Since you already had a look into the issue, care to submit a pull request?

`VaultTemplate` is bound to `RestOperations`. You can implement your own `ClientHttpRequestFactory` that applies different client settings/clients per request/endpoint. SSL settings are propagated into the HTTP client so there is no...

Occasional updates are fine. Either a proxied `ClientHttpRequestFactory` or a custom `ClientHttpRequestFactory` implementation that delegates to the currently active `ClientHttpRequestFactory` (holding the configured client) ist the best approach as `VaultTemplate`...

In many Linux arrangements it is common to use epoll because of its improved performance profile. uring isn’t that common and no one should add uring by accident. I consider...

[Release notes](https://github.com/redis/lettuce/releases/tag/6.1.0.M1) do call out uring support. Minor releases are feature releases, and adding something that wasn't there before that also [requires explicit opt-in by adding a dependency](https://redis.github.io/lettuce/advanced-usage/#native-transports) isn't a...

`Example` works on properties (and nested property paths). Embedding is merely a way to represent values in the table while the logical model should not care about embedding. I consider...

Not sure I follow. `RelationalEntityMetadata` is part of the Spring Data Relational module (not JPA) and thus it doesn't use the Jakarta Persistence API annotations. Care to elaborate the actual...

Feel free. We should actually deprecate `StringToPropertiesConverter` and use only the one from `Converters.toProperties(…)`.

Pool config defaults to local validation (i.e. whether the connection is connected to a server). Remote validation (`ConnectionPoolConfiguration.Builder#validationDepth(REMOTE)`) enables `SELECT 1` validation queries. Not quite sure what you're asking for....