inkho
inkho
async_write in RedisClientImpl::asyncWrite causes a crash under the load. Should be wrapped by strand as well: ``` boost::asio::async_write(socket, buffers, strand.wrap(std::bind(&RedisClientImpl::asyncWrite, shared_from_this(), std::placeholders::_1, std::placeholders::_2))); ``` This solves the issue.
The code below is leaking even with amqp_maybe_release_buffers ( ``` while (true) { amqp_channel_close(m_conn, m_currentChannel, AMQP_REPLY_SUCCESS); amqp_maybe_release_buffers(m_conn); amqp_channel_open(m_conn, ++m_currentChannel); } ``` Please help