os/persistentdata/persistentstorage/dbms/bmake/EDbms_Template.mmh
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// EDBMS.MMH
sl@0
    15
// edbms.mmh Database management - DBMS server, page and cluster cache sizes
sl@0
    16
// This file is an example file that may be copied, modified and 
sl@0
    17
// installed as \epoc32\include\edbms.mmh file to customise cache handling
sl@0
    18
// in the DBMS component. Also, SYMBIAN_CUSTOM_DBMS_CACHE_SIZES macro must be 
sl@0
    19
// defined in the related \epoc32\include\variant\Symbian_OS_v<N>.hrh file,
sl@0
    20
// where <N> is the OS version number, like 9.1.
sl@0
    21
// This example file is not expected to be directly modified.
sl@0
    22
// NOTE: Changing the value of these macros will affect RAM usage in 
sl@0
    23
// database processing system wide and should not be undertaken lightly.
sl@0
    24
// Index cache size in pages - size of page pool.
sl@0
    25
// The page cache is used to cache index information in a database.
sl@0
    26
// It can't be less than 8 pages.
sl@0
    27
// 
sl@0
    28
//
sl@0
    29
sl@0
    30
/**
sl@0
    31
 @file
sl@0
    32
 @publishedPartner
sl@0
    33
*/
sl@0
    34
MACRO PAGE_CACHE_SIZE=16
sl@0
    35
sl@0
    36
/**
sl@0
    37
Max cluster cache size - max number of clusters.
sl@0
    38
The cluster cache is used to cache row data for tables in a database.
sl@0
    39
It can't be less than 4 clusters.
sl@0
    40
@publishedPartner
sl@0
    41
*/
sl@0
    42
MACRO MAX_CLUSTER_CACHE_SIZE=8
sl@0
    43