hoyhoy

Results 34 comments of hoyhoy

https://packages.redis.io/redis-stack/redis-stack-server-7.2.0-v9.catalina.x86_64.zip Steps to reproduce. Load and unload the `redisearch.dylib` (mistakenly named as `redisearch.so` which is what linux names shared libraries). It leaked 400 bytes without even doing a search.

@jcar87 so no ongoing bugfixes? What if you don't build with the new dependencies, and something breaks and then you have a CVE, but then you haven't updated for six...

We need this for testing our app. Our unit tests rely on flushed database and without a MKGROUP, this causes them all to fail. As it is now, we have...

How do I build from source? The repo seems to be missing cmake files. It refers to `str_from_env` and `include(deps/readies/cmake/main)` neither of which exist. `sbin/setup` fails as well. ``` $...

It looks like the Makefile should do it, but it didn't. After that didn't work, I ran the submodule import manually, and then the build after that corrupted my local...

I ended up mostly using elaborate profiles. The old profile language had a ton of bugs though. Now there's a new profile Jinja2 language, but it's INSANELY hard to use....

My profile is meant for compiling a lot of legacy packages and even then it doesn't work reliably. I just hit a case with libcurl where conan is setting `--with-ssl=$CONAN_HOME/p/b/opens7b45e8b4b84d5/p`...

I'm obviously running it with the clang thread-sanitizer enabled, so it's a `-glldb` binary. I was testing it with more ab threads than hardware-concurrency since our SSL app is crashing...

It's more than that though, the ssl errors aren't handled correctly in the example. There's really no canonical documentation or examples for recovering from ssl errors like truncated reads and...

> Is your i/o context multithreaded and are you using strands? Yes, but I'm sure we're doing it wrong. It was originally implemented based on [http/server3](https://www.boost.org/doc/libs/1_84_0/doc/html/boost_asio/example/cpp11/http/server3/server.cpp) to replace mongoose. The...