Results 21 comments of Mads Hansen

Sounds good @bbandlamudi. Another TODO item for us should probably be to document and highlight some of the newer options that enable features which are currently not default, but would...

It's a good idea. Other workarounds, such as adding docs to a CORB job specific collection add extra overhead. It would be nice to have a client-only mechanism and an...

We need to keep in mind, the ml-gradle corb task currently [inspects the Options class to collect all of the option field names](https://github.com/rjrudin/ml-gradle/blob/master/src/main/groovy/com/marklogic/gradle/task/CorbTask.groovy#L37), in order to avoid having to hard-code...

Revisiting this topic. If we wanted to be able to add some sort of delay between thread executions, it would be good to be able to set a static value,...

This would be easiest to implement with libraries, such as Jackson or GSON. Might want to look into providing streaming JSON parser, in order to be able to parse extremely...

If using dependencies, need to make sure it is user choice to bring implementation(like Jasypyt) or publish as a separate “plugin” jar.

I was thinking along the lines of setting any of those dependencies as provided or compileOnly. That way, we could build and bundle the classes, but it wouldn’t be included...

Thank you for reporting the issue. Sorry to hear about the trouble it caused. It seems that you are right, InputStreamReader would be a better choice than Load - as...

Looks like this is where that response object is generated for `boolean`: https://github.com/marklogic/node-client-api/blob/master/lib/server-exec.js#L75 and Boolean(data.content)would produce the correct boolean value if content is false let data = {"content": false}; Boolean(data.content);...

This test to verify boolean only verifies `true`, which is why it was not discovered. It would be helpful to have tests for both `true` and `false` https://github.com/marklogic/node-client-api/blob/master/test-basic/server-exec.js#L78