Todd Lipcon
Todd Lipcon
My application uses futex to implement a spinlock. This is fairly common in high performance server code (eg gperftools uses futex for spinlocks, as do libraries like facebook's folly). For...
The description of this query is: > The last 5 aggregate readings (across time) before a randomly chosen endpoint but the query produced for influx looks like: ```SELECT max(usage_user) from...
The influxdb implementation generates this query: ``` SELECT "name", "driver", "fuel_state" FROM "diagnostics" WHERE "fuel_state"
This change sped up indexing on my ~150kloc project from "couldn't wait for it to finish" down to "a few minutes". It also sped up searches from 5+ seconds to...
In my use case, given a workflow ID, I'd like to get the result if the workflow is complete, and otherwise immediately return a "PENDING" result. I'm able to achieve...
This has come up a few times in the past, but figured I'd re-raise it after the transition from google code to github: I'm seeing a case in my application...
This switches from trying to remember the length of the previous output, and instead uses an ANSI sequence to clear to the end of the line. This fixes issue #728
When using Jetty with Spring MVC's DeferredResult async support, graceful shutdown doesn't work properly, even after the fix for #2717. What appears to be happening is that, when the DeferredResult.setResult()...
The samples for mocking with Mockito don't work properly on newer versions due to https://github.com/mockito/mockito/issues/1206 -- the Mockito-generated class inherits the @ActivityMethod annotation and then cadence complains with an error...
Often times it's convenient to have a set of flags stored as a single variable (particularly when modeling legacy code). It would be great to support bitwise ops like &,...