Rob Bygrave

Results 45 issues of Rob Bygrave

I could be wrong or low on caffeine but it looks to me like there is effective buffer recycling with `readBuffer` but not with `writeBuffer` at the moment? Am I...

Change the getter methods to use accessor style

refactor

In case people are unaware Java 9 introduced **`System.Logger`**. Ebean and all its dependencies (ebean-datasource, avaje-config, avaje classpath-scanner etc) have been using **`slf4j-api`** and that has been the good and...

Normally `@Entity` beans can not extend another `@Entity` bean without using the inheritance annotations and discriminator column. What this is about is allowing an `@Entity` bean to extend another `@Entity`....

I believe longer term we will move away from using Jackson for JSON parsing and generation for the reasons of - weight, speed and security. - Weight - Jackson-databind weights...

Joda types have been superseded by the types in `java.time`. That means, people should be migrating off from using Joda types to using `java.time` types. As such, we should look...

## Proposal Remove the support for JSON formatting Date as millis and DateTime as millis or nanos. This means that all Dates and DateTime types would be formatted in JSON...

Also remove h2sqldb in favour of always using H2 This feature is expected to only be used by older Ebean users with DB2 and Oracle with sequences as `increment by...

Improve the documentation at: https://ebean.io/docs/monitoring/ - metrics collection including dumpMetricsOnShutdown - labels - profile location - query plan collection - metrics reporting - CollectD, Avaje metrics

documentation

Update the documentation in: https://ebean.io/docs/persist/ ... document the differences and uses for `update` vs `stateless update` vs `merge`

documentation