Increased buffer size to 50

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2017-05-31 15:48:19 +02:00
parent 0e87b2918b
commit b007ed2d4f

View File

@ -198,7 +198,7 @@ public class PersistenceManager {
* Checks for full buffer and persists data of committed transactions to storage if buffer is full. * Checks for full buffer and persists data of committed transactions to storage if buffer is full.
*/ */
private synchronized void persist() { private synchronized void persist() {
if (_pageBuffer.size() <= 5) { if (_pageBuffer.size() <= 50) {
return; return;
} }