Aaron Klish

Results 90 comments of Aaron Klish

You have to register classes reflection. I'm not sure what would happen if you didn't. Maybe this only breaks native mode applications. I guess the bigger concern is running in...

Update: I was able to get a draft extension for Elide and also build an example native application (boots in 20-50ms on my mac). I've only tested very basic things...

One comment. To get the example project to work, the entire elide project needs to be built and installed locally (including the new elide-quarkus module). For native, you will also...

``` bash-3.2$ ./target/elide-quarkus-example-1.0.0-SNAPSHOT-runner produceElide Scanning classes produceDictionary Overriding data store __ ____ __ _____ ___ __ ____ ______ --/ __ \/ / / / _ | / _ \/ //_/...

To build locally, you will need to run: mvn clean install mvn clean install -f elide-quarkus

No worries. I'm taking a break from Quarkus to get GraphQL subscriptions out. What's really missing for Quarkus is a way to run native tests that work with CI/CD. Then...

The JPA DataStore in Elide use JPQL to query the database. While JPQL does let you query the individual fields of a table, it returns the individual field objects rather...

Hibernate is eager by default. There are a few different ways to query the database with Hibernate (JPQL - which is what Elide uses. We can't specify individual fields here....

When using JPQL to select scalar fields, the result is just that - scalar fields. Elide needs the ORM to hydrate a hibernate proxy that wraps the entity. The proxy...

> now that spring 6 is out with hibernate 6.1 I would say this should take some love. 👍 In Elide 7