Andrew Barba

Results 16 comments of Andrew Barba

@jimdigriz I've been searching for a list like this for a while and it's already providing immediate value for me (getting hit with a lot of spam from micfo). Any...

I am seeing similar results on io.js 1.2.0 and Node 0.12

This should be fixed in version 2.1

To be perfectly honestly with you, I don't know if my explanation is the real reason it is fixed but I tried removing it because the whole point of a...

We've hit this too, at a much higher capacity limit - around 64 ACUs. And our graphed cloud watch connections weren't anywhere near the 2k+ limit. I don't understand why...

For 1. I can't stress enough how important it is to check the magical "Force scaling the capacity" button: We run our largest application db on Aurora Serverless, so we...

@nitesmeh Am I right to assume that the data-api should pool requests more efficiently than traditional connections? If not - is there any reason to use the data api if...

Instead of sorting does it make sense to do something like: ```swift var results = Array(repeating: nil, count: self.count) ... for try await result in group { results[result.offset] = result.value...

It could be interesting to move these types of things to a `Layout` protocol, and provide 2-3 layouts with the sdk Aside from that, I think at a minimum there...

I'm stunned... this works perfectly. Can even await the promise off the global scope. Here's where I ended up: ```swift @_cdecl("fetch") func fetch() -> Int { let globalKey = Int.random(in:...