sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // EDBMS.MMH sl@0: // edbms.mmh Database management - DBMS server, page and cluster cache sizes sl@0: // This file is an example file that may be copied, modified and sl@0: // installed as \epoc32\include\edbms.mmh file to customise cache handling sl@0: // in the DBMS component. Also, SYMBIAN_CUSTOM_DBMS_CACHE_SIZES macro must be sl@0: // defined in the related \epoc32\include\variant\Symbian_OS_v.hrh file, sl@0: // where is the OS version number, like 9.1. sl@0: // This example file is not expected to be directly modified. sl@0: // NOTE: Changing the value of these macros will affect RAM usage in sl@0: // database processing system wide and should not be undertaken lightly. sl@0: // Index cache size in pages - size of page pool. sl@0: // The page cache is used to cache index information in a database. sl@0: // It can't be less than 8 pages. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: */ sl@0: MACRO PAGE_CACHE_SIZE=16 sl@0: sl@0: /** sl@0: Max cluster cache size - max number of clusters. sl@0: The cluster cache is used to cache row data for tables in a database. sl@0: It can't be less than 4 clusters. sl@0: @publishedPartner sl@0: */ sl@0: MACRO MAX_CLUSTER_CACHE_SIZE=8 sl@0: