Kevin Wooten

Results 226 comments of Kevin Wooten
trafficstars

Sounds like that might be a +1 for Netty. It's SSL uses Java's SSL handler (or a native OpenSSL/BoringSSL if available & chosen) but is layered in the Netty message...

I've opened issue in netty/netty#9627 to explore any solutions/help the Netty team might be able to offer.

@crinklywrappr I've updated the Netty issue, there is no answer as to why blocking sockets are inherently slower than non-blocking Netty.

@davecramer You are correct. My testing showed that this issue nearly disappears once operating over any remote link (i.e. not a localhost connection). My hypothesis is that this is a...

FYI, this issue is still open mostly because I want to explore removing Netty once loom is ready.

Yes. Without looking I'm assuming we'll need a TextEncoder and BinaryEncoder for the geometry type as well. The way I did this for the rest of the types is to...

OK. So I looked into this a bit more. After the realization that we are discussing the postgis code (which is a separate project) I identified the methods we need...

If the maven artifact (I found org.postgis:postgis-stubs) is up to date I don't see why we wouldn't just add it. If it's not... maybe just copy/paste the most recent java...

I hadn't thought about this. Yes, we must shade or copy them in manually to avoid this.

Procs.PROVIDERS was originally loaded using ServiceLoader. I had an issue when I loaded the driver in a container (e.g. Tomcat). The services file is actually still in the META-INF folder....