Michel

Results 249 comments of Michel

I don't see a `2.4.x` release for RethinkDB - Does it work with the official driver?

Hum, `rethinkdb` doesn't build on my workstation (`next` or `v2.4.x`). That being said, it's probably an issue with `rethinkdb` though. I don't see any change in the official driver for...

@BhaskaranR - you are running the stable version, you probably have a different problem. Please open a new bug instead

Thanks @marshall007, I've been quite busy these past weeks and didn't have much time to work on reqlite, so I really appreciate your help :) What you probably want to...

@marshall007 -- arrays are represented with the MAKE_ARRAY from the proto-def.js file: ``` [2, [x1, x2, ...]] ``` If you want it as `[x1, x2, ...]`, you can call `util.toDatum()`

Sure, first sorry for the lack of comments/doc. I'll try to improve that. Then basically `Query.prototype.evaluate` evaluates a term. Baring primitives, terms are what the JSON object that the drivers...

Added a few comments in your commits, hopefully it make things more clear. Let me know if you have more questions.

Oh also `self.evaluate(args[0], internalOptions)` means that we are going to evaluate the first argument of a given method. `self.evalute(options, internalOptions)` means that we are going to evaluate the options of...

Hum, I'm not sure you are fixing the appropriate thing. Thinky is still using bluebird 2.x, so it doesn't warn about this. There's also no promise created where you added...

I'm not super familiar with this syntax. Is there a benefit beside the different syntax? I'm a bit wary of adding it as I'm not super familiar with this syntax...