source: tags/ms_r18q1/ARBDB/gb_tune.h

Last change on this file was 9838, checked in by westram, 11 years ago
  • reintegrated branch 'db'
    • GBDATA now is a base class of GBENTRY (new) and GBCONTAINER
      • moved code into classes GBENTRY, GBCONTAINER and GB_MAIN_TYPE
      • several functions now exist 2 (or 3) times (for GBENTRY and GBCONTAINER, and some for GBDATA as well)
      • several functions changed their interface (caller has to explicitely pass GBENTRY or GBCONTAINER)
    • dropped support for ARB DB-version 0
  • adds:
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1// =============================================================== //
2//                                                                 //
3//   File      : gb_tune.h                                         //
4//   Purpose   :                                                   //
5//                                                                 //
6//   Institute of Microbiology (Technical University Munich)       //
7//   http://www.arb-home.de/                                       //
8//                                                                 //
9// =============================================================== //
10
11#ifndef GB_TUNE_H
12#define GB_TUNE_H
13
14#define GB_RUNLENGTH_SIZE 6
15
16extern const int GBCM_BUFFER;                       // The communication buffer size
17extern const int GB_REMOTE_HASH_SIZE;               // The initial hash size in any client to find the database entry in the server
18extern const int GBM_MAX_UNINDEXED_ENTRIES;         // The maximum number fields with the same key which are not put together in one memory segment
19
20extern const int GB_TOTAL_CACHE_SIZE;               // Initial cache size in bytes
21extern const int GB_MAX_CACHED_ENTRIES;             // maximum number of cached items (Maximum 32000)
22
23extern const int GB_MAX_QUICK_SAVE_INDEX;           // Maximum extension-index of quick saves (Maximum 99)
24extern const int GB_MAX_QUICK_SAVES;                // maximum number of quick saves
25
26extern const int GB_MAX_LOCAL_SEARCH;               // Maximum number of children before doing a search in the database server
27
28extern const int      GBTUM_SHORT_STRING_SIZE;      // the maximum strlen which is stored in short string format
29extern const unsigned GB_HUFFMAN_MIN_SIZE;          // min length, before huffmann code is used
30extern const unsigned GB_RUNLENGTH_MIN_SIZE;        // min length, before runlength code is used
31
32extern const int GB_MAX_REDO_CNT;                   // maximum number of redos
33extern const int GB_MAX_UNDO_CNT;                   // maximum number of undos
34extern const int GB_MAX_UNDO_SIZE;                  // total bytes used for undo
35
36
37#else
38#error gb_tune.h included twice
39#endif // GB_TUNE_H
Note: See TracBrowser for help on using the repository browser.