Results 28 comments of royal

IMHO encoding enum as some internal variant value is inherently wrong. MsgPack is a serialization format and as such, it should not give away the internal implementation of the enum...

with `#![feature(specialization)]` it would be easy for rmp-serde to make VisitorExt trait in this way (maybe via features): ```rust pub trait VisitorExt { fn visit_ext(self, meta: ExtMeta, _v: &[u8]) ->...

I think there is more to it than just changing a repository. Please see #25.

I have the same exact problem with --target=aarch64-unknown-linux-gnu ``` TARGET = Some("aarch64-unknown-linux-gnu") HOST = Some("x86_64-unknown-linux-musl") cargo:rerun-if-env-changed=CC_aarch64-unknown-linux-gnu CC_aarch64-unknown-linux-gnu = None cargo:rerun-if-env-changed=CC_aarch64_unknown_linux_gnu CC_aarch64_unknown_linux_gnu = None cargo:rerun-if-env-changed=TARGET_CC TARGET_CC = Some("aarch64-oe-linux-gcc -mcpu=cortex-a53 -march=armv8-a+crc+crypto --sysroot=/opt/oecore-x86_64-kirkstone/sysroots/cortexa53-crypto-oe-linux")...

do you consider accepting pull requests? didn't find anything about contribution

AFAIK the callback is guaranteed and mandatory in node's stream api: https://nodejs.org/dist/latest-v8.x/docs/api/stream.html#stream_transform_transform_chunk_encoding_callback IDK why it was like that.

I've found another bug concerning pause/resume. Socket.pause() only pauses AFTER flushing messages queued in the binding. User however might call pause() within 'message' handler but it won't stop flushing messages...

From the API point of view it could become a :read_preference option settable on redis client instance. When the list of available redis nodes with latency information is obtained from...