calvin2021y
calvin2021y
alpine and musl do support backtrace and unwind, but some header is diff from glibc.
Thanks for the solution. alpine is fixed for x86 and aarch64. macOS show this error: ```sh jungle/src/backtrace.h:330:24: error: use of undeclared identifier 'abi' char *cc = abi::__cxa_demangle(func_mangled.c_str(), 0, 0, &status);...
Thanks for the update. some how I can not apply https://github.com/eBay/Jungle/pull/145.patch check from the code it should be fixed. I will update and test late after you merge.
one question about `Log store mode`: it only can append data into store with a bigger SN. (can be discontinuous) it can not delete by SN number, but can truncation...
thanks for the explain. May I ask how much QPS for a nvme device ?
I also can not connect. with docker logs: ```sh 2022-10-08 10:53:23,779 INFO spawned: 'chrome' with pid 245 2022-10-08 10:53:23,914 INFO exited: chrome (exit status 21; not expected) 2022-10-08 10:53:23,914 INFO...
If there is away to replace setjmp with a slow speed solution for wasm, please give some tips. disable error handing for wasm also acceptable. with UPB tiny size, it...
get a lot same warning from linux: ```sh Indirect leak of 16 byte(s) in 1 object(s) allocated from #2 0x5b85b8 in std::__1::__libcpp_allocate(unsigned long, unsigned long) /usr/lib/llvm-12/bin/../include/c++/v1/new:261:10 #3 0x5def71 in std::__1::allocator::allocate(unsigned...
wrapper it with struct like https://github.com/datastax/cpp-driver future will be a option.
Is is possible to wrapper rust future with C struct and pass into libuv envet loop (or uv_async_t)?