Luca Garulli

Results 285 comments of Luca Garulli

Hi @thadguidry very interesting. Not sure if we can use it, I see the Vector API more for math computation. We could use something faster than Unsafe to work at...

I didn't know about intrinsic! Yes, we could totally use it for comparing with indexes and in general for string compare.

Hi guys, OrientDB is not supported anymore. We are working on ArcadeDB, a fork of OrientDB with an active community and a new engine that is much lighter and faster...

Hi @jonbullock yes it does. It's 100% pure Java, there is no JNI, JNA, or other esoteric configuration like OrientDB ;-)

I've replaced OrientDB with ArcadeDB in the PR https://github.com/jbake-org/jbake/pull/745. It was easy and quick, the SQL is the same, just a little change in the API.

@mhberger I see one difference is that some tests used "memory:" storage type of OrientDB, but in Arcade that's not available: only persistent databases with ArcadeDB. Could it be the...

Not bad as the first implementation. We can do much better. By the way, I've set this in the constructor, so no need to set anything anymore: ``` // USE...

Hi guys, any plans to replace OrientDB with ArcadeDB?

@lprimak what test is failing? I've got a MacBook Pro 16 Intel and everything passes: ``` BUILD SUCCESSFUL in 1m 1s 18 actionable tasks: 3 executed, 15 up-to-date ```

I see, the failing test is: ```java @Test public void shouldBakeWithRelativeCustomPaths() throws Exception { sourceFolder = TestUtils.getTestResourcesAsSourceFolder("/fixture-custom-relative"); configuration = (DefaultJBakeConfiguration) new ConfigUtil().loadConfig(sourceFolder); File assetFolder = new File(configuration.getDestinationFolder(), "css"); File aboutFile...