Nathan Levin-Greenhaw
Nathan Levin-Greenhaw
Can you get me the perl versions from each box? I have more or less stopped working on this project since RethinkDB announced they were abandoning the project, but I'll...
Weird. I'm not having this problem. Can you try running this script and give me the output? ```perl #!/usr/bin/env perl use strict; use warnings; use Data::Dumper; use Rethinkdb; my $x...
I think @dwburke is correct. Looks like there is some issue with older versions of perl & JSON. https://rt.cpan.org/Public/Bug/Display.html?id=111634 Tho, the issue appears to be opposite of what @rob0101 is...
@thelinuxlich Awesome! Yeah, I'll do some research and see what I need to do to bring this up-to-date.
Here is the documentation for between: http://njlg.info/perl-rethinkdb/rethinkdb/query/table/#between I'm not sure there is a way to just use a cursor to page through the results. The driver will usually fetch all...
I'll have to look into this. I'm not even sure how to best support this because checking for `undef` is not quite correct. You might look into using `has_fields` as...
Good work! Yeah, I would totally include an async IO class. I like your idea: create a superclass that defaults to Async, but let's you override it with the Sync...
Cool. I'll look into that. I need to figure out a good way to test that part of the code.
I am not sure what your first two comments mean. You don't have to use the `repl` syntax to "store" the connection, but if you do we have to cache...
Ah! I see what you are saying. I'll try to make a fix for this. Is there any bug with the driver doing this? I should probably add a test...