Rob Galanakis

Results 52 comments of Rob Galanakis

For reference, we added this to our base entity class: ```rb def self.expose(*args, &block) # See https://github.com/ruby-grape/grape-entity/issues/354 # If we pass in a lambda, we pass Grape a proc that...

Yeah I will try to get to it soon (unfortunately we finished upgrading all of our Ruby 2.7 projects but I should still get a chance).

Note the `SingleLinksFacet` does not have this problem.

I would fully expect concurrent access to a single repository to be safe. I have been using go-git for a couple years and *just* found out it isn't, because we...

@jaredallard and others, thank you for the workarounds!

I have thought a bit about a threading backend and haven't implemented it yet for a few reasons: 1. threading performance is very different from cooperative coroutine performance. A thousand...

So it turns out this is really difficult. Without any ability to control the interpreter's thread scheduler, there's not much we can do. The best we could do would be...

But I still don't see what the upside is for Python code? You can't achieve parallelism anyway due to the GIL, so the "juggle goroutines across OS threads" model doesn't...

@rcarmo I am a bit confused by some claims. I am going to quote each thing I have questions about: > In my testing, the GIL is not really an...