laoshanxi
laoshanxi
Thanks so much, I would use`std::tolower(str, loc)` with `#if __cplusplus > 201103L` to handle the build issue in [laoshanxi/app-mesh](https://github.com/laoshanxi/app-mesh) which should good enough for now to support build compatibility.
anyway, gcc4.8.5 is not so important.
> > Seem like every new year we break support for this compiler #118 laughing > > Maybe we should consider adding a "laoshanxi Test" to the CI ? ;)...
other startup control: 1. After run finished some time, run again 2. app run chain a1->a2->a3
I met the same issue before, because handle_rest() occupy one thread and http_request::extract_json().get() will request another thread to recieve message, if there is no more thread in pool, it will...
Just use bellow code can call it at the beginning. ``` #include crossplat::threadpool::initialize_with_threads(4) ```
"crossplat::threadpool::initialize_with_threads(4)" is used for Linux platform. on Windows, I think you do not need to setup a threadpool, by my understanding, the thread is created dynamiclly when there have new...
I did not found the way to request docker socket, so finally, I moved to a workaround solution use command line. https://github.com/laoshanxi/app-mesh/blob/main/src/daemon/process/DockerProcess.cpp One possible way is use Go to build...
It will be good we can make this as a new open source, I believe this is a common requirement.
> > > I am very grateful for your response. > > I will use Go and rewrite the C++ part... One solution to export docker.sock via Nginx without coding...