Geert-Johan Riemer
Geert-Johan Riemer
I've detected that this will only work with basic types, not yet with a `oneof` where one of the fields is a message. That will probably increase the complexity quite...
Yes, since I updated to the latest version of gogoprotobuf mine does too.. Maybe something changed upstream causing it to fail?
@awalterschulze I want to add zebra colors (odd/even) to oneof's belonging together. That should make it clear when there are multiple oneof groups. I think showing multiple fields is a...
I've merged the MR to update the ubuntu version.
So you're proposing that: ``` go type Foo struct { FooA int FooB Bar `aerospike:",inline"` FooC string `aerospike:"ccc"` } type Bar struct { A int B string } ``` Results...
Or could also become the bins: - `FooA` - `A` - `B` - `ccc` But I like that less. It will cause a conflict when a field named `A` is...
Any update on this?
I like the idea here; the `Handler` at the end of the chain (`LogglyHandler`, `BufferedFileHandler`, etc.) knows best how to buffer the messages, and when to flush (Loggly 5MB limit,...
But that doesn't allow you to set the max buffer size, and I still think it's a bit strange to have a signal on the handler tree. It also can...
If new Record-based reasons to flush a log arrise those can be added to Buffer and (when applicable) exposed through the Handlers using the Buffer. Another approach is to custom-build...