Rohit Kumar

Results 10 issues of Rohit Kumar

In the [Async I/O section](http://alexcrichton.com/bufstream/bufstream/index.html#async-io) there's a reference to version 0.2 which doesn't seem to be released yet. `bufstream = { version = "0.2", features = ["tokio"] }` Changing it...

We can add two ways to search methods: 1. Matching by method name, params and return type in the `Method` structure. 2. Matching by using the `dalvik.annotation.Signature` annotation. This will...

Goal: To be able to pin-point a location where the malformed input is/error occurs. Currently the `Error` type doesn't contain information on _where_ an error happened. I think it'd be...

Whenever I place a call or get a call on Signal, dns66 is automatically disabled with a message saying "Reconnecting error" and I have to manually restart it. I see...

`DataFromReader` has buffering on the HTTP response, so it is not suitable to stream data to a client. `DataFromStream` disables buffering and flushes data as soon as it is sent...

After #97 lands, it'll be nice to have connection pools to prevent threads from connection starvation. Client should support connection pooling behind a feature flag. Right now, we have [r2d2-memcache](https://github.com/megumish/r2d2-memcache/)...

enhancement

TODO: - Add docs - Add missing methods - Add tests Fix #107

We call `num.to_string().as_bytes()` to serialize and deserialize numbers when setting them in memcache server. Instead, we could use `byteorder` crate's `read_u16`, `read_u64` etc. and write out the bytes to the...

enhancement
good-first-issue

After #104 lands, we should expose more options to configure the connection pool. I intentionally left this out to keep the PR small for review. In addition to the pool...

This will be useful for letmutx/ghetto-lock-rs#10