Reduced the default number _targetMaximumNumberOfPageLOD to 300 to keep the memory consumption on large databases a bit lower.

This commit is contained in:
Robert Osfield
2008-12-15 16:41:34 +00:00
parent 993ec64657
commit ca3fe5d352

View File

@@ -914,7 +914,7 @@ DatabasePager::DatabasePager()
}
_targetMaximumNumberOfPageLOD = 500;
_targetMaximumNumberOfPageLOD = 300;
if( (ptr = getenv("OSG_MAX_PAGEDLOD")) != 0)
{
_targetMaximumNumberOfPageLOD = atoi(ptr);