Jens Alfke
Jens Alfke
I think I see what's going on here: 1. You call `FLEncoder_WriteDouble(307.79998779296875)`. 2. The implementation checks whether that number has an exact representation as a float; it does. 3. The...
This was a really interesting bug! I'm glad I circled back to this issue and thought about it some more, else I wouldn't have realized it was a bug and...
I've fallen in love with Nim, so I might do this, if I give in to the temptation to rewrite my current C++ project in Nim.
I've definitely run across real-world servers that do this, especially simple CGI-type scripts that generate the response dynamically and don't bother to buffer it first or insert the chunked metadata.
@adamcfraser In this PR the document bodies are still unmarshaled when passed to JS (Otto). That will change with the V8 PR, at least when V8 is enabled; there we...
Created a perf testing task [CBPS-1176](https://issues.couchbase.com/browse/CBPS-1176) for this.
In Go you have to check if the result value from V8 is a promise; if it is, you check its state. As long as it's still in the unresolved...
The case for relative URLs is that the code generating the feed may not know the details of the exact hostname/port the site is being served from, especially if the...
I'm working around this by substituting an empty NSString (`@""`). This results in a zero-length string value in the column, which when I fetch it with `-dataForColumn:` results in an...
Thanks for the quick reply! Hm. A cleaner workaround might be to insert a blob with zero length but a (arbitrary) non-NULL pointer. I'll give that a try and report...