Seth Bunce

Results 9 comments of Seth Bunce

Did some digging tonight. I got a test program running in my k8s cluster which is watching a configmap that I can change. Added a bunch of print statements everywhere....

Sounds like there's consensus on avoiding the extra dependency. Reminds me of that go proverb, "a little copying is better than a little dependency". I copied the contents of https://github.com/beorn7/floats...

You're welcome. I appreciate your feedback. - Removed the float32 variants. I bet you're right that this will never be used. - Moved the function to a new "almost_equal.go" file....

Here is the performance before/after with the benchmark I added. We went from 280ns -> 255ns on my intel 3ghz CPU. We got a little faster by switching from RWMutex...

Our IT guys upgraded my CPU and I didn't even know it. I have 10 cores 20 threads at 3.3Ghz now. (the previous benchmarks were also on this CPU) Intel(R)...

PR to fix the data race and simplify the locking in the memmetrics package. https://github.com/vulcand/oxy/pull/209

I've been experimenting with this today because we have a use-case that's Readdir heavy (python scripts for ML things). One run goes from 94k Readdir calls down to 6.75k with...

garyburd's suggestion is more consistent with the way things are normally done. When expiration is not specified on a cookie it is deleted whenever the browser restarts.

Hey Steven, You're welcome. The API is well designed. I had several "ah hah" moments during implementation when I realized why the API was designed in a specific way. The...