Steve Kuznetsov
Steve Kuznetsov
We might want to decide whether or not new features are enabled by default - what's the current situation with flags? Perhaps the config could list disabled checks and those...
Looks like ( on Linux, anyway ) the errors will be those from [`epoll_wait`](http://man7.org/linux/man-pages/man2/epoll_wait.2.html), so the following could be possible: ``` EBADF epfd is not a valid file descriptor. EFAULT...
Is there any possibility to improve the ergonomics past `logger.Error(nil, "message")`? Most other logging implementations allow e.g. `logger.WithError(err).Info("message")` or `logger.Error("message")` separately. I'm currently in a migration to contextual + structured...
Up to you. The developer ergonomics today are not ideal - even with `nil` someone that's not perfectly attuned to this interface and expectations immediately has some questions on review...
@lavalamp are we more focused on solving the **intra**object ordering problem (for two snapshots in time of an object, which of $a_0$ and $a$ occurred first) or the **inter**object ordering...
@lavalamp unless I'm missing something, option 2 does not address **inter**object comparisons, does it?
@lavalamp I'm sorry, I think I'm missing something here - if you have an independent logical clock per object, what mechanism is there to sync the timelines in order to...
Today, if I have two `Secret`s I have no mechanism to tell which of them is "newer" than the other. The proposal in Option 2 is: > Alternatively, we could...
Gotcha. In my understanding at least, since you could not use the new field from Option 2 to take a list of `Secret`s and order them by recency, the option...
I see. To my eyes, Option 2 gives a cache author a simple way to provide either behavior (consistent or inconsistent collections), generalizes the `generation` concept clearly, and does not...