Results 11 issues of royal

Have you thought about solution like em-resolve-replace using em-udns? Or perhaps it is already done, but I couldn't find it.

There is no way (or it would be very hacky) to read the Ext meta data from the inner `rd` reader (the `get_ref` method only exposes the internal implementation of...

The name `http_real_ip_module` https://github.com/ANXS/nginx/blob/master/defaults/main.yml#L82 does not match with `http_realip_module` in tasks/modules.yml https://github.com/ANXS/nginx/blob/master/tasks/modules.yml#L31 solution: in the file `default/main.yml` replace ``` http_real_ip_module: "--with-http_realip_module" ``` with ``` http_realip_module: "--with-http_realip_module" ```

Currently there is no easy way to make use of those atomic updates to underlying documents. Perhaps it would be easy to enhance Document.prototype.loadOneAndUpdate in such a way: `MyDoc.loadOneAndUpdate(query, {somePropToIncrement:...

enhancement

Currently none of the fp rounding methods are implemented: `.round()` `.trunc()` `.floor()` `.ceil()`, `.fract()` nor `signum()`. Is it possible to add them?

Enhancement

Hello there! This is just a quick fix for #75. Nodejs stream api is callback based and doesn't handle errors thrown inside api methods. I've just wrapped in try/catch block...

The use case might be to only determine boudaries of the msgpack or count sequenced msgpacked items. e.g. ``` js var data1 = encode("some data"); // var data2 = encode(123);...

EM versions of be get_copy_data and put_copy_data are missing.

enhancement

The pattern from [the official SETNX doc](http://redis.io/commands/setnx) used in @kenn's implementation is flawed. The implementation itself however is really nice and I like it. Nevertheless my bad habit of testing...

Hi @Robbepop! This is my take on issue #70. This pull request is __NOT READY__ to merge. I haven't added any tests nor did I check whether new code breaks...