Results 130 comments of Daniel Mewes

I believe the CK sends a get_info command using the old protocol to the Prime at the beginning of the session. The response presumably contains the firmware version of the...

@bchavez While this is not officially part of the protocol specification, the current code guarantees that the `"t"` field always comes first in the response object. https://github.com/rethinkdb/rethinkdb/blob/next/src/client_protocol/json.cc#L101 This isn't likely...

Cool, thanks for the pull request @Geekimo . I'll see to get this into the next version. A bit of background: So far I've restrained from introducing variadic functions into...

Ubuntu 12.04 still ships with PHP 5.3, which is supported until 2017. That's the main reason for why we're still supporting it.

I haven't looked too much at PHP 7 yet. I'm hoping we can support both with the same codebase. Are there currently any issues with using PHP-RQL on PHP 7...

I don't quite understand where the contradiction is yet. You mention PHP7 enhancements that we could use in the driver. Which are those? Are they important for the driver API...

Actually one feature that would be extremely useful are generators with `yield` (supported since PHP 5.5 I think?). We could use these to support an asynchronous driver API. In any...

@opengeek I have very little time to take care of PHP-RQL at the moment. If someone is willing to take over maintenance I will consider passing it on. Or someone...

@RoySegall if the full data set fits into memory, there are already two options for getting the result as an array rather than a cursor: 1. Calling the `->toArray()` method...

Thanks for the PR @lexx27 . Sorry I haven't gotten around to looking at it yet. I'll try to do so before the next PHP-RQL release.