Avner

Results 41 issues of Avner

I want to deserialize the same field twice into 2 separate named fields I've tried using "alias" as well as "rename" attributes but not successful: ``` use serde::Deserialize; use serde::Serialize;...

I have tried various ways to measure memory usage (different code snippets from around the web) and each has a different result (Including the method you supply) Do you have...

I have a general question regarding architecture (not necessarily the implementation provided), particularly the order of which state change occurs, and which state is passed to the subscribers. Hopefully somebody...

I have a object which needs to be used by all handlers. I'm not sure how to "share" this reference without recreating / singltoning it. Toy example here: ``` struct...

feature

I saw a similar question about truncating log, but I want to create a new log file once reaches 20MB or some other metric (keeping the previous). is there a...

enhancement

Hi, I'm a bit confused as to how this is supposed to be used. My example is as follows: I have many entries (sentences/paragraphs etc.) given an arbitrary prefix, I...

trivial implementation to get the current file position by calling the parser with `parser.current_offset()`

I'm looking for a callback hook to know how much progress (i.e. bytes out of total) the parser has completed. Is this possible ?

In redis my keys look like this: ``` a:b:c:c:\xcd\xe9\xba ``` where `\xcd\xe9\xba` is a msg pack portion when I run `rdb` command like so I am getting bad output: `rdb...

Is it possible to use something like the redis-memory-for-key for the rdb file on a key with * qualifier?