Revert "Fix posdb3 cache entry limit calculation"

This reverts commit 54c06a6b57.
This commit is contained in:
Ivan Skytte Jørgensen
2016-05-06 11:07:26 +02:00
parent 35621243d0
commit f054b460db

@ -61,7 +61,7 @@ class RdbCache *getDiskPageCache ( char rdbId ) {
rpc = &g_rdbCaches[0];
maxSizePtr = &g_conf.m_posdbFileCacheSize;
maxMem = *maxSizePtr;
maxRecs = maxMem / 9; //best guess
maxRecs = maxMem / 5000;
dbname = "posdbcache";
}
if ( rdbId == RDB_TAGDB ) {