Christian Rorvik

Results 17 comments of Christian Rorvik

I'm seeing the same issue, auto-scales horizontally, but not vertically. Does anyone have any idea where it breaks? Platform Windows 10 Atom 1.40.1, with ``` Ink 0.11.5 julia-client 0.11.2 uber-juno...

Do you have any ideas where might be a good place to start looking?

Thanks. I tried fiddling with this code after I hit the problem, but wasn't able to change the behavior. Thought the issue may be elsewhere.

That does fix it, thanks! I didn't even think of that 🤦‍♂

Considered changing handle tables to `Int32`, which if we're comfortable limiting the collection to 2 billion entries could save a lot of space (node map, node map free list, and...

Hi, any chance for a review and merge of this, please? Thanks

I found you can configure this in the connection string with the `tlsCAFile` option, e.g., ```Julia Mongoc.Client("?tlsCAFile=/etc/ssl/certs/ca-certificates.crt") ``` `SSL_CERT_FILE` environment variable also works, but I'm not sure if that interferes...

From NEWS > Threads started outside the Julia runtime (e.g. from C or Java) can now become able to call into Julia code by calling jl_adopt_thread. This is done automatically...

Interesting, didn't know there was already a dead check and branch in every `cfunction`, thanks for clarifying. Separate topic I guess, but that and other reasons would make it compelling...

Hi, I had look at your package and as far as I can tell it's adding methods to functions defined in [Mongoc.jl](https://github.com/felipenoris/Mongoc.jl) for types it doesn't own, i.e., [type piracy](https://docs.julialang.org/en/v1/manual/style-guide/#Avoid-type-piracy)....