Increase the size of the sql command bufferr
This commit is contained in:
parent
bbb810949e
commit
f20b9199e1
|
@ -186,7 +186,7 @@ void DbClientImpl::execSql(std::string &&sql,
|
|||
bool busy = false;
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(_bufferMutex);
|
||||
if (_sqlCmdBuffer.size() > 10000)
|
||||
if (_sqlCmdBuffer.size() > 200000)
|
||||
{
|
||||
//too many queries in buffer;
|
||||
busy = true;
|
||||
|
|
Loading…
Reference in New Issue