Project

General

Profile

Download (750 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2012 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.cdm.server;
10

    
11
/**
12
 * @author a.kohlbecker
13
 * @date May 10, 2013
14
 *
15
 */
16
public class AssumedMemoryRequirements {
17

    
18
    // memory requirements
19
	public static final int KB = 1024;
20
	public static final long MB = 1024 * KB;
21
    public static final long PERM_GEN_SPACE_PER_INSTANCE = 55 * MB;
22
    public static final long HEAP_PER_INSTANCE = 130 * MB;
23
    public static final long PERM_GEN_SPACE_CDMSERVER = 19 * MB;
24
    public static final long HEAP_CDMSERVER = 15 * MB;
25

    
26
}
(1-1/5)