CufeHaco
CufeHaco
Just give me a bit.more time on the JEP-380 socket PR. I can talk to Cruby, C, or any other language using jruby as the layer via Linux Sockets. Separation...
https://github.com/CufeHaco/solid-queue-jruby https://github.com/CufeHaco/solid-queue-jruby/blob/main/BENCHMARKS.md     
JRuby Unix Socket JEP-380 Prototype - Test Results I've been working on a prototype to explore migrating JRuby's Unix socket implementation to use JDK's native JEP-380 API instead of JNR....
Here's the prototype test. https://github.com/CufeHaco/jrubytest-jruby-jep380-prototype/tree/main I also tagged you on X with video benchmarks. https://x.com/Cufe_Haco/status/1982662971944747449?s=19
@enebo those initial results are from the new socket. I was able to start the server in my Ruby CLI shell im building, and was able to start another terminal...
The goal is to use this to have bi directional communication between MRI and Jruby using Unix sockets. # In MRI or JRuby — identical behavior socket = UNIXSocket.new("/tmp/my.sock") socket.puts...
Update: "dynamic ffi" Im think about adding this as well. Ill have to test it this evening. But here's the general idea. Im revising my original concept. Use Sockets as...
Hey guys, sorry for the wait. Im having to learn Java as i go as well as I left the web side of things years ago, so im a bit...
@hoprocker this i can definitely help with. I converted my rubytk patch logic for a quick fix for you. Let me know if it works or any errors you may...
@headius would the same solution i purposed for the Array speed up work here? I deal with arrays more than hashes, but essentially they're the same concept right?