Harry Chan

Results 23 issues of Harry Chan

Hi, please see https://openjdk.java.net/jeps/310. It reduces startup times and memory usage. Great for docker!

Many builds with natives have support for maven classifiers (used to provide separate jars depending on OS). This reduces download size etc. Would be good to add this as more...

enhancement

Vertx has [reactive SQL clients](https://github.com/eclipse-vertx/vertx-sql-client) for MySQL, DB2 and PostgreSQL. Would be good if Flyway can support this has [Hibernate Reactive](https://hibernate.org/reactive/) for example is currently using this as the database...

t: feature
s: pull request welcome

Hi, most other libraries have moved onto Micrometer (from Dropwizard metrics) -- Spring, Quarkus, Micronaut, etc... Would be great if Jooby added support for Micrometer as a metrics option. Thanks...

When using Eclipse with buildship (integrated Gradle) the JoobyRun task doesn't trigger hot reload. Gradle sets up Eclipse to build in 'bin' where as gradle stores its output in 'build'...

Hi, [compiled](https://compiledcssinjs.com) is a CSS in JS solution similar to emotion / styled-components except that it compiles to real css under the hood. There's even a [migration guide](https://compiledcssinjs.com/docs/migrating). Following that...

enhancement

Hi, currently the caches available hardcodes the configuration object. Is it possible to customize this during initialization? This is required for stats / metrics into jcache for example. Thanks!

enhancement

replace toArray(new T[size]) with toArray(new T[0]) for better performance

Hi, noticed many occurrences of toArray that could be made faster with a find and replace. Performance: replace toArray(new T[size]) with toArray(new T[0]) https://shipilev.net/blog/2016/arrays-wisdom-ancients/#_conclusion (also contains benchmarks). Could provide some...

enhancement

Hi, can the Scala dependency and code be made optional and/or as a separate jar? This greatly increases the download for non-Scala users. Thanks.