Arseny Vakhrushev

Results 29 comments of Arseny Vakhrushev

It looks like the grammar refers to a `#documentation` section which does not exist. Removing the reference helped to get rid of the mentioned log messages. So, I guess either...

I should have probably opened a separate issue, but my question is quite similar in essence. I've noticed that the SWD (SWIM disable) bit of the CFG_GCR is called "SWO"...

That's great news! Yes, I will definitely report back if I find some more inconsistencies. Thank you for your great effort to bing this all together!🙏

I can see the same problem with GCC 11.2: ```C COMP_CSR1 = COMP_CSR_EN | COMP_CSR_OUTSEL_TIM2_IC4; ``` ``` => 0x08001400 : 3e 4b ldr r3, [pc, #248] ; (0x80014fc ) (gdb)...

First, you don't need to wait for RXNE yourself: ``` if (!((USART_SR(USART2) & USART_SR_RXNE) == 0)) ``` since `usart_recv_blocking()` does the job for you. Second, it's hard to tell what...

Thanks for your feature request! I guess it's worth thinking about. The only issue would be that it's not possible to call `mongoc_cleanup()` reliably from Lua. It's indeed possible to...

I assume you're talking about OpenResty. First of all, there's not much sense in using Mongo C Driver (and lua-mongo as a result) in Nginx for one simple reason -...

It's possible. Have you read the docs before opening the issue? https://github.com/neoxic/lua-mongo/blob/master/doc/main.md#mongobsonvalue

It's a very powerful requirement that helps avoid ambiguity. Let's suppose you have a table `{[1] = 1, [3] = 3, [5] = 5}` that maps one group of IDs...

First, I'll answer your questions directly: 1) No, there's no direct support for client sessions in **lua-mongo**; 2) No, there are no plans to implement this API along with other...